From fac5f6cdacadf552e51743b145a5d4de40eb15be Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 11 Jun 2024 10:28:48 -0700 Subject: [PATCH 01/86] register the push token after request has been approved on android (#4481) * register the push token after request has been approved on android * use a `0` string for badge count * Revert "use a `0` string for badge count" This reverts commit efac39861817f4237c58211f68ef266d919b4d40. * temporary fix --- src/lib/notifications/notifications.ts | 16 +++++++++++++++- src/screens/Messages/List/ChatListItem.tsx | 4 +++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/lib/notifications/notifications.ts b/src/lib/notifications/notifications.ts index fba1fe32f3..fafc66143a 100644 --- a/src/lib/notifications/notifications.ts +++ b/src/lib/notifications/notifications.ts @@ -88,6 +88,7 @@ export function useNotificationsRegistration() { export function useRequestNotificationsPermission() { const gate = useGate() const {currentAccount} = useSession() + const agent = useAgent() return async ( context: 'StartOnboarding' | 'AfterOnboarding' | 'Login' | 'Home', @@ -125,7 +126,20 @@ export function useRequestNotificationsPermission() { if (res.granted) { // This will fire a pushTokenEvent, which will handle registration of the token - getPushToken(true) + const token = await getPushToken(true) + + // Same hack as above. We cannot rely on the `addPushTokenListener` to fire on Android due to an Expo bug, so we + // will manually register it here. Note that this will occur only: + // 1. right after the user signs in, leading to no `currentAccount` account being available - this will be instead + // picked up from the useEffect above on `currentAccount` change + // 2. right after onboarding. In this case, we _need_ this registration, since `currentAccount` will not change + // and we need to ensure the token is registered right after permission is granted. `currentAccount` will already + // be available in this case, so the registration will succeed. + // We should remove this once expo-notifications (and possibly FCMv1) is fixed and the `addPushTokenListener` is + // working again. See https://github.com/expo/expo/issues/28656 + if (isAndroid && currentAccount && token) { + registerPushToken(agent, currentAccount, token) + } } } } diff --git a/src/screens/Messages/List/ChatListItem.tsx b/src/screens/Messages/List/ChatListItem.tsx index 7c61170825..8ebf8b00b5 100644 --- a/src/screens/Messages/List/ChatListItem.tsx +++ b/src/screens/Messages/List/ChatListItem.tsx @@ -20,6 +20,7 @@ import {useProfileShadow} from '#/state/cache/profile-shadow' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useSession} from '#/state/session' import {useHaptics} from 'lib/haptics' +import {decrementBadgeCount} from 'lib/notifications/notifications' import {logEvent} from 'lib/statsig/statsig' import {sanitizeDisplayName} from 'lib/strings/display-names' import {TimeElapsed} from '#/view/com/util/TimeElapsed' @@ -177,6 +178,7 @@ function ChatListItemReady({ const onPress = useCallback( (e: GestureResponderEvent) => { + decrementBadgeCount(convo.unreadCount) if (isDeletedAccount) { e.preventDefault() menuControl.open() @@ -185,7 +187,7 @@ function ChatListItemReady({ logEvent('chat:open', {logContext: 'ChatsList'}) } }, - [isDeletedAccount, menuControl], + [convo.unreadCount, isDeletedAccount, menuControl], ) const onLongPress = useCallback(() => { From 3573f7ea40d41b8c416194da31fbbad092062679 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 11 Jun 2024 18:51:03 +0100 Subject: [PATCH 02/86] rip out native translate (#4482) --- .../expo-module.config.json | 6 --- modules/expo-bluesky-translate/index.ts | 6 --- .../Common/UIHostingControllerCompat.swift | 20 -------- .../ios/ExpoBlueskyTranslate.podspec | 21 -------- .../ios/ExpoBlueskyTranslateModule.swift | 18 ------- .../ios/ExpoBlueskyTranslateView.swift | 22 -------- .../ios/TranslateView.swift | 31 ----------- .../src/ExpoBlueskyTranslate.types.ts | 3 -- .../src/ExpoBlueskyTranslateView.ios.tsx | 51 ------------------- .../src/ExpoBlueskyTranslateView.tsx | 13 ----- src/view/com/post-thread/PostThreadItem.tsx | 21 +------- src/view/com/util/forms/PostDropdownBtn.tsx | 17 +------ src/view/shell/index.tsx | 2 - 13 files changed, 4 insertions(+), 227 deletions(-) delete mode 100644 modules/expo-bluesky-translate/expo-module.config.json delete mode 100644 modules/expo-bluesky-translate/index.ts delete mode 100644 modules/expo-bluesky-translate/ios/Common/UIHostingControllerCompat.swift delete mode 100644 modules/expo-bluesky-translate/ios/ExpoBlueskyTranslate.podspec delete mode 100644 modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateModule.swift delete mode 100644 modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateView.swift delete mode 100644 modules/expo-bluesky-translate/ios/TranslateView.swift delete mode 100644 modules/expo-bluesky-translate/src/ExpoBlueskyTranslate.types.ts delete mode 100644 modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.ios.tsx delete mode 100644 modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.tsx diff --git a/modules/expo-bluesky-translate/expo-module.config.json b/modules/expo-bluesky-translate/expo-module.config.json deleted file mode 100644 index 28c5dd878d..0000000000 --- a/modules/expo-bluesky-translate/expo-module.config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "platforms": ["ios"], - "ios": { - "modules": ["ExpoBlueskyTranslateModule"] - } -} diff --git a/modules/expo-bluesky-translate/index.ts b/modules/expo-bluesky-translate/index.ts deleted file mode 100644 index f3e1d3b113..0000000000 --- a/modules/expo-bluesky-translate/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export { - isAvailable, - isLanguageSupported, - NativeTranslationModule, - NativeTranslationView, -} from './src/ExpoBlueskyTranslateView' diff --git a/modules/expo-bluesky-translate/ios/Common/UIHostingControllerCompat.swift b/modules/expo-bluesky-translate/ios/Common/UIHostingControllerCompat.swift deleted file mode 100644 index c8ca3e0273..0000000000 --- a/modules/expo-bluesky-translate/ios/Common/UIHostingControllerCompat.swift +++ /dev/null @@ -1,20 +0,0 @@ -import ExpoModulesCore -import SwiftUI - -// Thanks to Andrew Levy for this code snippet -// https://github.com/andrew-levy/swiftui-react-native/blob/d3fbb2abf07601ff0d4b83055e7717bb980910d6/ios/Common/ExpoView%2BUIHostingController.swift - -extension ExpoView { - func setupHostingController(_ hostingController: UIHostingController) { - hostingController.view.translatesAutoresizingMaskIntoConstraints = false - hostingController.view.backgroundColor = .clear - - addSubview(hostingController.view) - NSLayoutConstraint.activate([ - hostingController.view.topAnchor.constraint(equalTo: self.topAnchor), - hostingController.view.bottomAnchor.constraint(equalTo: self.bottomAnchor), - hostingController.view.leftAnchor.constraint(equalTo: self.leftAnchor), - hostingController.view.rightAnchor.constraint(equalTo: self.rightAnchor), - ]) - } -} diff --git a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslate.podspec b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslate.podspec deleted file mode 100644 index 45f86a6056..0000000000 --- a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslate.podspec +++ /dev/null @@ -1,21 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'ExpoBlueskyTranslate' - s.version = '1.0.0' - s.summary = 'Uses SwiftUI translation to translate text.' - s.description = 'Uses SwiftUI translation to translate text.' - s.author = '' - s.homepage = 'https://docs.expo.dev/modules/' - s.platforms = { :ios => '13.4' } - s.source = { git: '' } - s.static_framework = true - - s.dependency 'ExpoModulesCore' - - # Swift/Objective-C compatibility - s.pod_target_xcconfig = { - 'DEFINES_MODULE' => 'YES', - 'SWIFT_COMPILATION_MODE' => 'wholemodule' - } - - s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}" -end diff --git a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateModule.swift b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateModule.swift deleted file mode 100644 index afa8137229..0000000000 --- a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateModule.swift +++ /dev/null @@ -1,18 +0,0 @@ -import ExpoModulesCore -import Foundation -import SwiftUI - -public class ExpoBlueskyTranslateModule: Module { - public func definition() -> ModuleDefinition { - Name("ExpoBlueskyTranslate") - - AsyncFunction("presentAsync") { (text: String) in - DispatchQueue.main.async { [weak state = TranslateViewState.shared] in - state?.isPresented = true - state?.text = text - } - } - - View(ExpoBlueskyTranslateView.self) {} - } -} diff --git a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateView.swift b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateView.swift deleted file mode 100644 index ca6e3be69c..0000000000 --- a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateView.swift +++ /dev/null @@ -1,22 +0,0 @@ -import ExpoModulesCore -import Foundation -import SwiftUI - -class TranslateViewState: ObservableObject { - static var shared = TranslateViewState() - - @Published var isPresented = false - @Published var text = "" -} - -class ExpoBlueskyTranslateView: ExpoView { - required init(appContext: AppContext? = nil) { - if #available(iOS 14.0, *) { - let hostingController = UIHostingController(rootView: TranslateView()) - super.init(appContext: appContext) - setupHostingController(hostingController) - } else { - super.init(appContext: appContext) - } - } -} diff --git a/modules/expo-bluesky-translate/ios/TranslateView.swift b/modules/expo-bluesky-translate/ios/TranslateView.swift deleted file mode 100644 index e2886dc844..0000000000 --- a/modules/expo-bluesky-translate/ios/TranslateView.swift +++ /dev/null @@ -1,31 +0,0 @@ -import SwiftUI -// conditionally import the Translation module -#if canImport(Translation) -import Translation -#endif - -struct TranslateView: View { - @ObservedObject var state = TranslateViewState.shared - - var body: some View { - if #available(iOS 17.4, *) { - VStack { - UIViewRepresentableWrapper(view: UIView(frame: .zero)) - } - .translationPresentation( - isPresented: $state.isPresented, - text: state.text - ) - } - } -} - -struct UIViewRepresentableWrapper: UIViewRepresentable { - let view: UIView - - func makeUIView(context: Context) -> UIView { - return view - } - - func updateUIView(_ uiView: UIView, context: Context) {} -} diff --git a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslate.types.ts b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslate.types.ts deleted file mode 100644 index a01d4d479d..0000000000 --- a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslate.types.ts +++ /dev/null @@ -1,3 +0,0 @@ -export type ExpoBlueskyTranslateModule = { - presentAsync: (text: string) => Promise -} diff --git a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.ios.tsx b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.ios.tsx deleted file mode 100644 index 290fabd30d..0000000000 --- a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.ios.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import React from 'react' -import {Platform} from 'react-native' -import {requireNativeModule, requireNativeViewManager} from 'expo-modules-core' - -import {ExpoBlueskyTranslateModule} from './ExpoBlueskyTranslate.types' - -export const NativeTranslationModule = - requireNativeModule('ExpoBlueskyTranslate') - -const NativeView: React.ComponentType = requireNativeViewManager( - 'ExpoBlueskyTranslate', -) - -export function NativeTranslationView() { - return -} - -// can be something like "17.5.1", so just take the first two parts -const version = String(Platform.Version).split('.').slice(0, 2).join('.') - -export const isAvailable = Number(version) >= 17.4 - -// https://en.wikipedia.org/wiki/Translate_(Apple)#Languages -const SUPPORTED_LANGUAGES = [ - 'ar', - 'zh', - 'zh', - 'nl', - 'en', - 'en', - 'fr', - 'de', - 'id', - 'it', - 'ja', - 'ko', - 'pl', - 'pt', - 'ru', - 'es', - 'th', - 'tr', - 'uk', - 'vi', -] - -export function isLanguageSupported(lang?: string) { - // If the language is not provided, we assume it is supported - if (!lang) return true - return SUPPORTED_LANGUAGES.includes(lang) -} diff --git a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.tsx b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.tsx deleted file mode 100644 index 16ff9d6004..0000000000 --- a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.tsx +++ /dev/null @@ -1,13 +0,0 @@ -export const NativeTranslationModule = { - presentAsync: async (_: string) => {}, -} - -export function NativeTranslationView() { - return null -} - -export const isAvailable = false - -export function isLanguageSupported(_lang?: string) { - return false -} diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 4827aef512..5ee60e4eab 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -30,11 +30,6 @@ import {useSession} from 'state/session' import {PostThreadFollowBtn} from 'view/com/post-thread/PostThreadFollowBtn' import {atoms as a} from '#/alf' import {RichText} from '#/components/RichText' -import { - isAvailable as isNativeTranslationAvailable, - isLanguageSupported, - NativeTranslationModule, -} from '../../../../modules/expo-bluesky-translate' import {ContentHider} from '../../../components/moderation/ContentHider' import {LabelsOnMyPost} from '../../../components/moderation/LabelsOnMe' import {PostAlerts} from '../../../components/moderation/PostAlerts' @@ -344,7 +339,6 @@ let PostThreadItemLoaded = ({ @@ -653,12 +647,10 @@ function PostOuterWrapper({ function ExpandedPostDetails({ post, - record, needsTranslation, translatorUrl, }: { post: AppBskyFeedDefs.PostView - record?: AppBskyFeedPost.Record needsTranslation: boolean translatorUrl: string }) { @@ -666,18 +658,9 @@ function ExpandedPostDetails({ const {_} = useLingui() const openLink = useOpenLink() - const text = record?.text || '' - const onTranslatePress = React.useCallback(() => { - if ( - isNativeTranslationAvailable && - isLanguageSupported(record?.langs?.at(0)) - ) { - NativeTranslationModule.presentAsync(text) - } else { - openLink(translatorUrl) - } - }, [openLink, text, translatorUrl, record]) + openLink(translatorUrl) + }, [openLink, translatorUrl]) return ( diff --git a/src/view/com/util/forms/PostDropdownBtn.tsx b/src/view/com/util/forms/PostDropdownBtn.tsx index 945cf5e596..b6873ff8ad 100644 --- a/src/view/com/util/forms/PostDropdownBtn.tsx +++ b/src/view/com/util/forms/PostDropdownBtn.tsx @@ -57,11 +57,6 @@ import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/War import * as Menu from '#/components/Menu' import * as Prompt from '#/components/Prompt' import {ReportDialog, useReportDialogControl} from '#/components/ReportDialog' -import { - isAvailable as isNativeTranslationAvailable, - isLanguageSupported, - NativeTranslationModule, -} from '../../../../../modules/expo-bluesky-translate' import {EventStopper} from '../EventStopper' import * as Toast from '../Toast' @@ -188,16 +183,8 @@ let PostDropdownBtn = ({ }, [_, richText]) const onPressTranslate = React.useCallback(() => { - if ( - isNativeTranslationAvailable && - isLanguageSupported(record?.langs?.at(0)) - ) { - const text = richTextToString(richText, true) - NativeTranslationModule.presentAsync(text) - } else { - openLink(translatorUrl) - } - }, [openLink, record?.langs, richText, translatorUrl]) + openLink(translatorUrl) + }, [openLink, translatorUrl]) const onHidePost = React.useCallback(() => { hidePost({uri: postUri}) diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx index 317ac0bde4..7d080e57b1 100644 --- a/src/view/shell/index.tsx +++ b/src/view/shell/index.tsx @@ -33,7 +33,6 @@ import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {MutedWordsDialog} from '#/components/dialogs/MutedWords' import {SigninDialog} from '#/components/dialogs/Signin' import {Outlet as PortalOutlet} from '#/components/Portal' -import {NativeTranslationView} from '../../../modules/expo-bluesky-translate' import {RoutesContainer, TabsNavigator} from '../../Navigation' import {Composer} from './Composer' import {DrawerContent} from './Drawer' @@ -94,7 +93,6 @@ function ShellInner() { - From 4b6609d48b41cdc5be6fb957ea396e8aba18b1b6 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 11 Jun 2024 13:08:06 -0500 Subject: [PATCH 03/86] Move feeds screen into common navigator, handle usages (#4365) * Move feeds screen into common navigator, handle usages * Add link to Feeds from home screen (#4366) * Add link to feeds to home screen header * Center logo * Replace icons * Tweak spacing * Tweak spacing * Swap icon, sizing * Buttonize, size * Make menu same alignment on all screens * Remove FeedsTab support, enable drawer swipe on MessagesTab * Add note * Vertically align header * Swap in Pin * Use hashtag icon * Remove png * Fix reference * Ensure alignment with home and other screens --- .../listPlus_stroke2_corner0_rounded.svg | 1 + assets/icons/menu_stroke2_corner0_rounded.svg | 1 + assets/icons/pin_stroke2_corner0_rounded.svg | 1 + .../icons/shapes_stroke2_corner0_rounded.svg | 1 + assets/icons/star_filled_corner0_rounded.svg | 1 + assets/icons/star_stroke2_corner0_rounded.svg | 1 + src/Navigation.tsx | 27 +------ src/components/icons/ListPlus.tsx | 9 +++ src/components/icons/Menu.tsx | 5 ++ src/components/icons/Pin.tsx | 5 ++ src/components/icons/Shapes.tsx | 5 ++ src/components/icons/Star.tsx | 9 +++ src/lib/hooks/useNavigationTabState.ts | 1 + src/lib/routes/helpers.ts | 2 +- src/lib/routes/types.ts | 7 +- src/screens/Home/NoFeedsPinned.tsx | 14 ---- src/view/com/home/HomeHeader.tsx | 8 +- src/view/com/home/HomeHeaderLayout.web.tsx | 73 +++++++++++-------- src/view/com/home/HomeHeaderLayoutMobile.tsx | 46 ++++++------ src/view/com/posts/FollowingEmptyState.tsx | 18 ++--- src/view/com/posts/FollowingEndOfFeed.tsx | 20 ++--- src/view/com/profile/ProfileSubpageHeader.tsx | 9 +-- src/view/com/testing/TestCtrls.e2e.tsx | 2 +- src/view/com/util/SimpleViewHeader.tsx | 19 +++-- src/view/com/util/ViewHeader.tsx | 10 +-- src/view/screens/Feeds.tsx | 5 +- src/view/screens/Notifications.tsx | 2 +- src/view/screens/Search/Search.tsx | 11 +-- src/view/shell/Drawer.tsx | 9 ++- 29 files changed, 155 insertions(+), 167 deletions(-) create mode 100644 assets/icons/listPlus_stroke2_corner0_rounded.svg create mode 100644 assets/icons/menu_stroke2_corner0_rounded.svg create mode 100644 assets/icons/pin_stroke2_corner0_rounded.svg create mode 100644 assets/icons/shapes_stroke2_corner0_rounded.svg create mode 100644 assets/icons/star_filled_corner0_rounded.svg create mode 100644 assets/icons/star_stroke2_corner0_rounded.svg create mode 100644 src/components/icons/ListPlus.tsx create mode 100644 src/components/icons/Menu.tsx create mode 100644 src/components/icons/Pin.tsx create mode 100644 src/components/icons/Shapes.tsx create mode 100644 src/components/icons/Star.tsx diff --git a/assets/icons/listPlus_stroke2_corner0_rounded.svg b/assets/icons/listPlus_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..c1f38e43b9 --- /dev/null +++ b/assets/icons/listPlus_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/menu_stroke2_corner0_rounded.svg b/assets/icons/menu_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..4a5ad3bdf8 --- /dev/null +++ b/assets/icons/menu_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/pin_stroke2_corner0_rounded.svg b/assets/icons/pin_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..8942f9dec9 --- /dev/null +++ b/assets/icons/pin_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/shapes_stroke2_corner0_rounded.svg b/assets/icons/shapes_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..6d6baee6d4 --- /dev/null +++ b/assets/icons/shapes_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/star_filled_corner0_rounded.svg b/assets/icons/star_filled_corner0_rounded.svg new file mode 100644 index 0000000000..d7d99cafc0 --- /dev/null +++ b/assets/icons/star_filled_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/star_stroke2_corner0_rounded.svg b/assets/icons/star_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..694b73487c --- /dev/null +++ b/assets/icons/star_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 18801bf645..8f8855d67f 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -22,7 +22,6 @@ import {buildStateObject} from 'lib/routes/helpers' import { AllNavigatorParams, BottomTabNavigatorParams, - FeedsTabNavigatorParams, FlatNavigatorParams, HomeTabNavigatorParams, MessagesTabNavigatorParams, @@ -91,7 +90,6 @@ const navigationRef = createNavigationContainerRef() const HomeTab = createNativeStackNavigatorWithAuth() const SearchTab = createNativeStackNavigatorWithAuth() -const FeedsTab = createNativeStackNavigatorWithAuth() const NotificationsTab = createNativeStackNavigatorWithAuth() const MyProfileTab = @@ -306,6 +304,7 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { getComponent={() => MessagesSettingsScreen} options={{title: title(msg`Chat settings`), requireAuth: true}} /> + FeedsScreen} /> ) } @@ -330,7 +329,6 @@ function TabsNavigator() { tabBar={tabBar}> HomeTabNavigator} /> SearchTabNavigator} /> - FeedsTabNavigator} /> NotificationsTabNavigator} @@ -384,24 +382,6 @@ function SearchTabNavigator() { ) } -function FeedsTabNavigator() { - const pal = usePalette('default') - return ( - - FeedsScreen} /> - {commonScreens(FeedsTab as typeof HomeTab)} - - ) -} - function NotificationsTabNavigator() { const pal = usePalette('default') return ( @@ -505,11 +485,6 @@ const FlatNavigator = () => { getComponent={() => SearchScreen} options={{title: title(msg`Search`)}} /> - FeedsScreen} - options={{title: title(msg`Feeds`)}} - /> NotificationsScreen} diff --git a/src/components/icons/ListPlus.tsx b/src/components/icons/ListPlus.tsx new file mode 100644 index 0000000000..fd14ac9c79 --- /dev/null +++ b/src/components/icons/ListPlus.tsx @@ -0,0 +1,9 @@ +import {createSinglePathSVG} from './TEMPLATE' + +/* + * This icon is off-menu, not part of the icon set + */ + +export const ListPlus_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M4 5a1 1 0 0 0 0 2h16a1 1 0 1 0 0-2H4Zm0 12a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H4Zm-1-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm14-3c.552 0 1 .41 1 .917V13.5h3.583c.507 0 .917.448.917 1s-.41 1-.917 1H18v3.583c0 .507-.448.917-1 .917s-1-.41-1-.917V15.5h-3.583c-.507 0-.917-.448-.917-1s.41-1 .917-1H16V9.917C16 9.41 16.448 9 17 9Z', +}) diff --git a/src/components/icons/Menu.tsx b/src/components/icons/Menu.tsx new file mode 100644 index 0000000000..fb183c2224 --- /dev/null +++ b/src/components/icons/Menu.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Menu_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M2 6a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm0 6a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm0 6a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Z', +}) diff --git a/src/components/icons/Pin.tsx b/src/components/icons/Pin.tsx new file mode 100644 index 0000000000..03dbbac90e --- /dev/null +++ b/src/components/icons/Pin.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Pin_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M6.5 3a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v3.997a6.25 6.25 0 0 0 1.83 4.42l.377.376A1 1 0 0 1 20 12.5V15a1 1 0 0 1-1 1h-6v5a1 1 0 1 1-2 0v-5H5a1 1 0 0 1-1-1v-2.5a1 1 0 0 1 .293-.707l.376-.377A6.25 6.25 0 0 0 6.5 6.996V3.001Zm2 1v2.997a8.25 8.25 0 0 1-2.416 5.834L6 12.914V14h12v-1.086l-.084-.083A8.25 8.25 0 0 1 15.5 6.997V4h-7Z', +}) diff --git a/src/components/icons/Shapes.tsx b/src/components/icons/Shapes.tsx new file mode 100644 index 0000000000..79f90018ab --- /dev/null +++ b/src/components/icons/Shapes.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Shapes_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M7 3a1 1 0 0 1 1 1v2h2a1 1 0 1 1 0 2H8v2a1 1 0 1 1-2 0V8H4a1 1 0 0 1 0-2h2V4a1 1 0 0 1 1-1Zm6 4a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3 14a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6Zm2 1v4h4v-4H5Zm9.171-.829a1 1 0 0 1 1.415 0L17 15.585l1.414-1.414a1 1 0 1 1 1.414 1.414L18.414 17l1.414 1.414a1 1 0 0 1-1.414 1.414L17 18.414l-1.415 1.414a1 1 0 0 1-1.414-1.414l1.415-1.415-1.415-1.414a1 1 0 0 1 0-1.414Z', +}) diff --git a/src/components/icons/Star.tsx b/src/components/icons/Star.tsx new file mode 100644 index 0000000000..e6ac8011f9 --- /dev/null +++ b/src/components/icons/Star.tsx @@ -0,0 +1,9 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Star_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M12 1a1 1 0 0 1 .902.568l2.643 5.517 6.085.799a1 1 0 0 1 .557 1.718l-4.45 4.207 1.118 6.008a1 1 0 0 1-1.46 1.063L12 17.962 6.604 20.88a1 1 0 0 1-1.459-1.063l1.117-6.008-4.45-4.207a1 1 0 0 1 .558-1.718l6.085-.8 2.643-5.516A1 1 0 0 1 12 1Zm0 3.315-1.975 4.123a1 1 0 0 1-.772.56l-4.538.595 3.317 3.137a1 1 0 0 1 .296.91l-.834 4.485 4.03-2.179a1 1 0 0 1 .952 0l4.03 2.179-.834-4.485a1 1 0 0 1 .296-.91l3.317-3.137-4.538-.596a1 1 0 0 1-.772-.56L12 4.316Z', +}) + +export const Star_Filled_Corner0_Rounded = createSinglePathSVG({ + path: 'M12.902 1.568a1 1 0 0 0-1.804 0L8.455 7.085l-6.085.799a1 1 0 0 0-.557 1.718l4.45 4.207-1.117 6.008a1 1 0 0 0 1.458 1.063L12 17.962l5.396 2.918a1 1 0 0 0 1.459-1.063l-1.117-6.008 4.45-4.207a1 1 0 0 0-.558-1.718l-6.085-.8-2.643-5.516Z', +}) diff --git a/src/lib/hooks/useNavigationTabState.ts b/src/lib/hooks/useNavigationTabState.ts index c70653e3a7..e1fa950089 100644 --- a/src/lib/hooks/useNavigationTabState.ts +++ b/src/lib/hooks/useNavigationTabState.ts @@ -7,6 +7,7 @@ export function useNavigationTabState() { const res = { isAtHome: getTabState(state, 'Home') !== TabState.Outside, isAtSearch: getTabState(state, 'Search') !== TabState.Outside, + // FeedsTab no longer exists, but this check works for `Feeds` screen as well isAtFeeds: getTabState(state, 'Feeds') !== TabState.Outside, isAtNotifications: getTabState(state, 'Notifications') !== TabState.Outside, diff --git a/src/lib/routes/helpers.ts b/src/lib/routes/helpers.ts index 603b6f71b6..1297df8d2a 100644 --- a/src/lib/routes/helpers.ts +++ b/src/lib/routes/helpers.ts @@ -35,7 +35,7 @@ export function isStateAtTabRoot(state: State | undefined) { return ( isTab(currentRoute.name, 'Home') || isTab(currentRoute.name, 'Search') || - isTab(currentRoute.name, 'Feeds') || + isTab(currentRoute.name, 'Messages') || isTab(currentRoute.name, 'Notifications') || isTab(currentRoute.name, 'MyProfile') ) diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 7504cd83a0..caa861b6e5 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -40,12 +40,12 @@ export type CommonNavigatorParams = { Hashtag: {tag: string; author?: string} MessagesConversation: {conversation: string; embed?: string} MessagesSettings: undefined + Feeds: undefined } export type BottomTabNavigatorParams = CommonNavigatorParams & { HomeTab: undefined SearchTab: undefined - FeedsTab: undefined NotificationsTab: undefined MyProfileTab: undefined MessagesTab: undefined @@ -59,10 +59,6 @@ export type SearchTabNavigatorParams = CommonNavigatorParams & { Search: {q?: string} } -export type FeedsTabNavigatorParams = CommonNavigatorParams & { - Feeds: undefined -} - export type NotificationsTabNavigatorParams = CommonNavigatorParams & { Notifications: undefined } @@ -89,7 +85,6 @@ export type AllNavigatorParams = CommonNavigatorParams & { Home: undefined SearchTab: undefined Search: {q?: string} - FeedsTab: undefined Feeds: undefined NotificationsTab: undefined Notifications: undefined diff --git a/src/screens/Home/NoFeedsPinned.tsx b/src/screens/Home/NoFeedsPinned.tsx index e804e3e09f..3a98b87341 100644 --- a/src/screens/Home/NoFeedsPinned.tsx +++ b/src/screens/Home/NoFeedsPinned.tsx @@ -3,13 +3,10 @@ import {View} from 'react-native' import {TID} from '@atproto/common-web' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useNavigation} from '@react-navigation/native' import {DISCOVER_SAVED_FEED, TIMELINE_SAVED_FEED} from '#/lib/constants' -import {isNative} from '#/platform/detection' import {useOverwriteSavedFeedsMutation} from '#/state/queries/preferences' import {UsePreferencesQueryResponse} from '#/state/queries/preferences' -import {NavigationProp} from 'lib/routes/types' import {CenteredView} from '#/view/com/util/Views' import {atoms as a} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' @@ -26,7 +23,6 @@ export function NoFeedsPinned({ }) { const {_} = useLingui() const headerOffset = useHeaderOffset() - const navigation = useNavigation() const {isPending, mutateAsync: overwriteSavedFeeds} = useOverwriteSavedFeedsMutation() @@ -66,15 +62,6 @@ export function NoFeedsPinned({ await overwriteSavedFeeds(toSave) }, [overwriteSavedFeeds, preferences.savedFeeds]) - const onPressFeedsLink = React.useCallback(() => { - if (isNative) { - // Hack that's necessary due to how our navigators are set up. - navigation.navigate('FeedsTab') - navigation.popToTop() - return false - } - }, [navigation]) - return ( diff --git a/src/view/com/home/HomeHeader.tsx b/src/view/com/home/HomeHeader.tsx index b068484e8a..b225efaa3c 100644 --- a/src/view/com/home/HomeHeader.tsx +++ b/src/view/com/home/HomeHeader.tsx @@ -5,7 +5,6 @@ import {usePalette} from '#/lib/hooks/usePalette' import {FeedSourceInfo} from '#/state/queries/feed' import {useSession} from '#/state/session' import {NavigationProp} from 'lib/routes/types' -import {isWeb} from 'platform/detection' import {RenderTabBarFnProps} from 'view/com/pager/Pager' import {TabBar} from '../pager/TabBar' import {HomeHeaderLayout} from './HomeHeaderLayout' @@ -39,12 +38,7 @@ export function HomeHeader( }, [hasPinnedCustom, feeds]) const onPressFeedsLink = React.useCallback(() => { - if (isWeb) { - navigation.navigate('Feeds') - } else { - navigation.navigate('FeedsTab') - navigation.popToTop() - } + navigation.navigate('Feeds') }, [navigation]) const onSelect = React.useCallback( diff --git a/src/view/com/home/HomeHeaderLayout.web.tsx b/src/view/com/home/HomeHeaderLayout.web.tsx index 474fc392da..77bdba51fd 100644 --- a/src/view/com/home/HomeHeaderLayout.web.tsx +++ b/src/view/com/home/HomeHeaderLayout.web.tsx @@ -1,22 +1,18 @@ import React from 'react' import {StyleSheet, View} from 'react-native' import Animated from 'react-native-reanimated' -import { - FontAwesomeIcon, - FontAwesomeIconStyle, -} from '@fortawesome/react-native-fontawesome' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {CogIcon} from '#/lib/icons' import {useSession} from '#/state/session' import {useShellLayout} from '#/state/shell/shell-layout' import {useMinimalShellHeaderTransform} from 'lib/hooks/useMinimalShellTransform' -import {usePalette} from 'lib/hooks/usePalette' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {Logo} from '#/view/icons/Logo' +import {atoms as a, useTheme} from '#/alf' +import {Hashtag_Stroke2_Corner0_Rounded as FeedsIcon} from '#/components/icons/Hashtag' +import {Link} from '#/components/Link' import {useKawaiiMode} from '../../../state/preferences/kawaii' -import {Link} from '../util/Link' import {HomeHeaderLayoutMobile} from './HomeHeaderLayoutMobile' export function HomeHeaderLayout(props: { @@ -38,7 +34,7 @@ function HomeHeaderLayoutDesktopAndTablet({ children: React.ReactNode tabBarAnchor: JSX.Element | null | undefined }) { - const pal = usePalette('default') + const t = useTheme() const headerMinimalShellTransform = useMinimalShellHeaderTransform() const {headerHeight} = useShellLayout() const {hasSession} = useSession() @@ -51,31 +47,46 @@ function HomeHeaderLayoutDesktopAndTablet({ {hasSession && ( + + + + - - - - - + label={_(msg`View your feeds and explore more`)} + size="small" + variant="ghost" + color="secondary" + shape="square" + style={[ + a.justify_center, + { + marginTop: -4, + }, + ]}> + )} @@ -85,8 +96,8 @@ function HomeHeaderLayoutDesktopAndTablet({ headerHeight.value = e.nativeEvent.layout.height }} style={[ - pal.view, - pal.border, + t.atoms.bg, + t.atoms.border_contrast_low, styles.bar, styles.tabBar, headerMinimalShellTransform, diff --git a/src/view/com/home/HomeHeaderLayoutMobile.tsx b/src/view/com/home/HomeHeaderLayoutMobile.tsx index 5ce1d80a72..895baa9a4d 100644 --- a/src/view/com/home/HomeHeaderLayoutMobile.tsx +++ b/src/view/com/home/HomeHeaderLayoutMobile.tsx @@ -1,8 +1,6 @@ import React from 'react' import {StyleSheet, TouchableOpacity, View} from 'react-native' import Animated from 'react-native-reanimated' -import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {FontAwesomeIconStyle} from '@fortawesome/react-native-fontawesome' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -15,10 +13,13 @@ import {usePalette} from 'lib/hooks/usePalette' import {isWeb} from 'platform/detection' import {Logo} from '#/view/icons/Logo' import {atoms} from '#/alf' +import {useTheme} from '#/alf' +import {atoms as a} from '#/alf' import {ColorPalette_Stroke2_Corner0_Rounded as ColorPalette} from '#/components/icons/ColorPalette' -import {Link as Link2} from '#/components/Link' +import {Hashtag_Stroke2_Corner0_Rounded as FeedsIcon} from '#/components/icons/Hashtag' +import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu' +import {Link} from '#/components/Link' import {IS_DEV} from '#/env' -import {Link} from '../util/Link' export function HomeHeaderLayoutMobile({ children, @@ -26,6 +27,7 @@ export function HomeHeaderLayoutMobile({ children: React.ReactNode tabBarAnchor: JSX.Element | null | undefined }) { + const t = useTheme() const pal = usePalette('default') const {_} = useLingui() const setDrawerOpen = useSetDrawerOpen() @@ -54,11 +56,7 @@ export function HomeHeaderLayoutMobile({ msg`Access profile and other navigation links`, )} hitSlop={HITSLOP_10}> - + @@ -74,22 +72,28 @@ export function HomeHeaderLayoutMobile({ {width: 100}, ]}> {IS_DEV && ( - + - + )} {hasSession && ( - + label={_(msg`View your feeds and explore more`)} + size="small" + variant="ghost" + color="secondary" + shape="square" + style={[ + a.justify_center, + { + marginTop: 2, + marginRight: -6, + }, + ]}> + )} @@ -113,8 +117,8 @@ const styles = StyleSheet.create({ flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', - paddingHorizontal: 18, - paddingVertical: 8, + paddingHorizontal: 16, + paddingVertical: 5, width: '100%', }, title: { diff --git a/src/view/com/posts/FollowingEmptyState.tsx b/src/view/com/posts/FollowingEmptyState.tsx index ef02039afb..dd4915e181 100644 --- a/src/view/com/posts/FollowingEmptyState.tsx +++ b/src/view/com/posts/FollowingEmptyState.tsx @@ -1,18 +1,19 @@ import React from 'react' import {StyleSheet, View} from 'react-native' -import {useNavigation} from '@react-navigation/native' import { FontAwesomeIcon, FontAwesomeIconStyle, } from '@fortawesome/react-native-fontawesome' -import {Text} from '../util/text/Text' -import {Button} from '../util/forms/Button' +import {Trans} from '@lingui/macro' +import {useNavigation} from '@react-navigation/native' + +import {usePalette} from 'lib/hooks/usePalette' import {MagnifyingGlassIcon} from 'lib/icons' import {NavigationProp} from 'lib/routes/types' -import {usePalette} from 'lib/hooks/usePalette' import {s} from 'lib/styles' import {isWeb} from 'platform/detection' -import {Trans} from '@lingui/macro' +import {Button} from '../util/forms/Button' +import {Text} from '../util/text/Text' export function FollowingEmptyState() { const pal = usePalette('default') @@ -29,12 +30,7 @@ export function FollowingEmptyState() { }, [navigation]) const onPressDiscoverFeeds = React.useCallback(() => { - if (isWeb) { - navigation.navigate('Feeds') - } else { - navigation.navigate('FeedsTab') - navigation.popToTop() - } + navigation.navigate('Feeds') }, [navigation]) return ( diff --git a/src/view/com/posts/FollowingEndOfFeed.tsx b/src/view/com/posts/FollowingEndOfFeed.tsx index bea5bedeac..d3c616a20b 100644 --- a/src/view/com/posts/FollowingEndOfFeed.tsx +++ b/src/view/com/posts/FollowingEndOfFeed.tsx @@ -1,17 +1,18 @@ import React from 'react' -import {StyleSheet, View, Dimensions} from 'react-native' -import {useNavigation} from '@react-navigation/native' +import {Dimensions, StyleSheet, View} from 'react-native' import { FontAwesomeIcon, FontAwesomeIconStyle, } from '@fortawesome/react-native-fontawesome' -import {Text} from '../util/text/Text' -import {Button} from '../util/forms/Button' -import {NavigationProp} from 'lib/routes/types' +import {Trans} from '@lingui/macro' +import {useNavigation} from '@react-navigation/native' + import {usePalette} from 'lib/hooks/usePalette' +import {NavigationProp} from 'lib/routes/types' import {s} from 'lib/styles' import {isWeb} from 'platform/detection' -import {Trans} from '@lingui/macro' +import {Button} from '../util/forms/Button' +import {Text} from '../util/text/Text' export function FollowingEndOfFeed() { const pal = usePalette('default') @@ -28,12 +29,7 @@ export function FollowingEndOfFeed() { }, [navigation]) const onPressDiscoverFeeds = React.useCallback(() => { - if (isWeb) { - navigation.navigate('Feeds') - } else { - navigation.navigate('FeedsTab') - navigation.popToTop() - } + navigation.navigate('Feeds') }, [navigation]) return ( diff --git a/src/view/com/profile/ProfileSubpageHeader.tsx b/src/view/com/profile/ProfileSubpageHeader.tsx index 549fc5151a..edc6b75f9d 100644 --- a/src/view/com/profile/ProfileSubpageHeader.tsx +++ b/src/view/com/profile/ProfileSubpageHeader.tsx @@ -21,6 +21,7 @@ import {Text} from '../util/text/Text' import {UserAvatar, UserAvatarType} from '../util/UserAvatar' import {CenteredView} from '../util/Views' import hairlineWidth = StyleSheet.hairlineWidth +import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu' export function ProfileSubpageHeader({ isLoading, @@ -103,11 +104,7 @@ export function ProfileSubpageHeader({ style={[styles.backIcon, pal.text]} /> ) : ( - + )} @@ -194,7 +191,7 @@ const styles = StyleSheet.create({ backBtnWide: { width: 20, height: 30, - paddingHorizontal: 6, + marginRight: 4, }, backIcon: { marginTop: 6, diff --git a/src/view/com/testing/TestCtrls.e2e.tsx b/src/view/com/testing/TestCtrls.e2e.tsx index 1291165b3d..82750959d6 100644 --- a/src/view/com/testing/TestCtrls.e2e.tsx +++ b/src/view/com/testing/TestCtrls.e2e.tsx @@ -90,7 +90,7 @@ export function TestCtrls() { /> navigate('FeedsTab')} + onPress={() => navigate('Feeds')} accessibilityRole="button" style={BTN} /> diff --git a/src/view/com/util/SimpleViewHeader.tsx b/src/view/com/util/SimpleViewHeader.tsx index 814b2fb15d..dc14723d2f 100644 --- a/src/view/com/util/SimpleViewHeader.tsx +++ b/src/view/com/util/SimpleViewHeader.tsx @@ -8,13 +8,15 @@ import { } from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {useNavigation} from '@react-navigation/native' -import {CenteredView} from './Views' + +import {isWeb} from '#/platform/detection' +import {useSetDrawerOpen} from '#/state/shell' +import {useAnalytics} from 'lib/analytics/analytics' import {usePalette} from 'lib/hooks/usePalette' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {useAnalytics} from 'lib/analytics/analytics' import {NavigationProp} from 'lib/routes/types' -import {useSetDrawerOpen} from '#/state/shell' -import {isWeb} from '#/platform/detection' +import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu' +import {CenteredView} from './Views' const BACK_HITSLOP = {left: 20, top: 20, right: 50, bottom: 20} @@ -72,11 +74,7 @@ export function SimpleViewHeader({ style={[styles.backIcon, pal.text]} /> ) : ( - + )} ) : null} @@ -110,7 +108,8 @@ const styles = StyleSheet.create({ backBtnWide: { width: 30, height: 30, - paddingHorizontal: 6, + paddingLeft: 4, + marginRight: 4, }, backIcon: { marginTop: 6, diff --git a/src/view/com/util/ViewHeader.tsx b/src/view/com/util/ViewHeader.tsx index 95b6e290c8..e659aed42b 100644 --- a/src/view/com/util/ViewHeader.tsx +++ b/src/view/com/util/ViewHeader.tsx @@ -16,6 +16,7 @@ import {useTheme} from '#/alf' import {Text} from './text/Text' import {CenteredView} from './Views' import hairlineWidth = StyleSheet.hairlineWidth +import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu' const BACK_HITSLOP = {left: 20, top: 20, right: 50, bottom: 20} @@ -98,11 +99,7 @@ export function ViewHeader({ style={[styles.backIcon, pal.text]} /> ) : !isTablet ? ( - + ) : null} ) : null} @@ -269,7 +266,8 @@ const styles = StyleSheet.create({ backBtnWide: { width: 30, height: 30, - paddingHorizontal: 6, + paddingLeft: 4, + marginRight: 4, }, backIcon: { marginTop: 6, diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 837e58195e..f3db5ef171 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -29,7 +29,7 @@ import {HITSLOP_10} from 'lib/constants' import {usePalette} from 'lib/hooks/usePalette' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {CogIcon, ComposeIcon2, MagnifyingGlassIcon2} from 'lib/icons' -import {FeedsTabNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' +import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' import {cleanError} from 'lib/strings/errors' import {s} from 'lib/styles' import {FeedSourceCard} from 'view/com/feeds/FeedSourceCard' @@ -54,7 +54,7 @@ import {ListMagnifyingGlass_Stroke2_Corner0_Rounded} from '#/components/icons/Li import {ListSparkle_Stroke2_Corner0_Rounded} from '#/components/icons/ListSparkle' import hairlineWidth = StyleSheet.hairlineWidth -type Props = NativeStackScreenProps +type Props = NativeStackScreenProps type FlatlistSlice = | { @@ -594,7 +594,6 @@ export function FeedsScreen(_props: Props) { {isMobile && ( diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index 765b783e8f..f1ae7945a7 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -163,7 +163,7 @@ export function NotificationsScreen({}: Props) { return ( - + )} { onPressTab('MyProfile') }, [onPressTab]) - const onPressMyFeeds = React.useCallback( - () => onPressTab('Feeds'), - [onPressTab], - ) + const onPressMyFeeds = React.useCallback(() => { + track('Menu:ItemClicked', {url: 'Feeds'}) + navigation.navigate('Feeds') + setDrawerOpen(false) + }, [navigation, setDrawerOpen, track]) const onPressLists = React.useCallback(() => { track('Menu:ItemClicked', {url: 'Lists'}) From 46e12c6d34897fab77e039b1acb13b88a4b97a80 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 11 Jun 2024 11:30:38 -0700 Subject: [PATCH 04/86] Improve thread loading (#4402) * Increase the number of posts loaded when a self-thread is present * Increase depth to 10, detect cutoffs on self-threads and show continue link * Stacky the avis --- src/state/queries/post-thread.ts | 53 ++++++++++++++++- src/view/com/post-thread/PostThread.tsx | 4 ++ .../com/post-thread/PostThreadLoadMore.tsx | 57 +++++++++++++++++++ 3 files changed, 112 insertions(+), 2 deletions(-) create mode 100644 src/view/com/post-thread/PostThreadLoadMore.tsx diff --git a/src/state/queries/post-thread.ts b/src/state/queries/post-thread.ts index f7d21a4270..727eff253b 100644 --- a/src/state/queries/post-thread.ts +++ b/src/state/queries/post-thread.ts @@ -41,6 +41,8 @@ export interface ThreadCtx { hasMore?: boolean isParentLoading?: boolean isChildLoading?: boolean + isSelfThread?: boolean + hasMoreSelfThread?: boolean } export type ThreadPost = { @@ -88,9 +90,12 @@ export function usePostThreadQuery(uri: string | undefined) { gcTime: 0, queryKey: RQKEY(uri || ''), async queryFn() { - const res = await agent.getPostThread({uri: uri!}) + const res = await agent.getPostThread({uri: uri!, depth: 10}) if (res.success) { - return responseToThreadNodes(res.data.thread) + const thread = responseToThreadNodes(res.data.thread) + annotateSelfThread(thread) + console.log(thread) + return thread } return {type: 'unknown', uri: uri!} }, @@ -234,6 +239,8 @@ function responseToThreadNodes( isHighlightedPost: depth === 0, hasMore: direction === 'down' && !node.replies?.length && !!node.replyCount, + isSelfThread: false, // populated `annotateSelfThread` + hasMoreSelfThread: false, // populated in `annotateSelfThread` }, } } else if (AppBskyFeedDefs.isBlockedPost(node)) { @@ -245,6 +252,48 @@ function responseToThreadNodes( } } +function annotateSelfThread(thread: ThreadNode) { + if (thread.type !== 'post') { + return + } + const selfThreadNodes: ThreadPost[] = [thread] + + let parent: ThreadNode | undefined = thread.parent + while (parent) { + if ( + parent.type !== 'post' || + parent.post.author.did !== thread.post.author.did + ) { + // not a self-thread + return + } + selfThreadNodes.push(parent) + parent = parent.parent + } + + let node = thread + for (let i = 0; i < 10; i++) { + const reply = node.replies?.find( + r => r.type === 'post' && r.post.author.did === thread.post.author.did, + ) + if (reply?.type !== 'post') { + break + } + selfThreadNodes.push(reply) + node = reply + } + + if (selfThreadNodes.length > 1) { + for (const selfThreadNode of selfThreadNodes) { + selfThreadNode.ctx.isSelfThread = true + } + const last = selfThreadNodes.at(-1) + if (last && last.post.replyCount && !last.replies?.length) { + last.ctx.hasMoreSelfThread = true + } + } +} + function findPostInQueryData( queryClient: QueryClient, uri: string, diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index 35028334c6..8061eb11c9 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -34,6 +34,7 @@ import {ComposePrompt} from '../composer/Prompt' import {List, ListMethods} from '../util/List' import {ViewHeader} from '../util/ViewHeader' import {PostThreadItem} from './PostThreadItem' +import {PostThreadLoadMore} from './PostThreadLoadMore' import {PostThreadShowHiddenReplies} from './PostThreadShowHiddenReplies' // FlatList maintainVisibleContentPosition breaks if too many items @@ -364,6 +365,9 @@ export function PostThread({ ) } else if (isThreadPost(item)) { + if (!treeView && item.ctx.hasMoreSelfThread) { + return + } const prev = isThreadPost(posts[index - 1]) ? (posts[index - 1] as ThreadPost) : undefined diff --git a/src/view/com/post-thread/PostThreadLoadMore.tsx b/src/view/com/post-thread/PostThreadLoadMore.tsx new file mode 100644 index 0000000000..780ea77285 --- /dev/null +++ b/src/view/com/post-thread/PostThreadLoadMore.tsx @@ -0,0 +1,57 @@ +import * as React from 'react' +import {View} from 'react-native' +import {AppBskyFeedDefs, AtUri} from '@atproto/api' +import {Trans} from '@lingui/macro' + +import {makeProfileLink} from '#/lib/routes/links' +import {atoms as a, useTheme} from '#/alf' +import {Text} from '#/components/Typography' +import {Link} from '../util/Link' +import {UserAvatar} from '../util/UserAvatar' + +export function PostThreadLoadMore({post}: {post: AppBskyFeedDefs.PostView}) { + const t = useTheme() + + const postHref = React.useMemo(() => { + const urip = new AtUri(post.uri) + return makeProfileLink(post.author, 'post', urip.rkey) + }, [post.uri, post.author]) + + return ( + + + + + + + + + + + + Continue thread... + + + + ) +} From aca0fa23ec72d66c7de44c5079dae188221f0378 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 11 Jun 2024 12:34:03 -0700 Subject: [PATCH 05/86] Update feeds header to just have edit link (#4484) --- src/view/screens/Feeds.tsx | 63 +++++++++++--------------------------- 1 file changed, 18 insertions(+), 45 deletions(-) diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index f3db5ef171..88d4086ed7 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -1,11 +1,5 @@ import React from 'react' -import { - ActivityIndicator, - type FlatList, - Pressable, - StyleSheet, - View, -} from 'react-native' +import {ActivityIndicator, type FlatList, StyleSheet, View} from 'react-native' import {AppBskyActorDefs} from '@atproto/api' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {FontAwesomeIconStyle} from '@fortawesome/react-native-fontawesome' @@ -25,18 +19,17 @@ import {usePreferencesQuery} from '#/state/queries/preferences' import {useSession} from '#/state/session' import {useSetMinimalShellMode} from '#/state/shell' import {useComposerControls} from '#/state/shell/composer' -import {HITSLOP_10} from 'lib/constants' import {usePalette} from 'lib/hooks/usePalette' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {CogIcon, ComposeIcon2, MagnifyingGlassIcon2} from 'lib/icons' +import {ComposeIcon2} from 'lib/icons' import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' import {cleanError} from 'lib/strings/errors' import {s} from 'lib/styles' import {FeedSourceCard} from 'view/com/feeds/FeedSourceCard' import {ErrorMessage} from 'view/com/util/error/ErrorMessage' import {FAB} from 'view/com/util/fab/FAB' -import {SearchInput, SearchInputRef} from 'view/com/util/forms/SearchInput' -import {Link} from 'view/com/util/Link' +import {SearchInput} from 'view/com/util/forms/SearchInput' +import {Link, TextLink} from 'view/com/util/Link' import {List} from 'view/com/util/List' import { FeedFeedLoadingPlaceholder, @@ -159,7 +152,6 @@ export function FeedsScreen(_props: Props) { } = useSearchPopularFeedsMutation() const {hasSession} = useSession() const listRef = React.useRef(null) - const searchInputRef = React.useRef(null) /** * A search query is present. We may not have search results yet. @@ -399,24 +391,14 @@ export function FeedsScreen(_props: Props) { const renderHeaderBtn = React.useCallback(() => { return ( - - - - - - + accessibilityLabel={_(msg`Edit My Feeds`)} + accessibilityHint="" + text={_(msg`Edit`)} + style={[pal.link, a.pr_xs]} + /> ) }, [pal, _]) @@ -480,22 +462,14 @@ export function FeedsScreen(_props: Props) { Feeds - - - - - - + accessibilityHint="" + text={_(msg`Edit`)} + style={[pal.link]} + /> )} @@ -522,7 +496,6 @@ export function FeedsScreen(_props: Props) { Date: Tue, 11 Jun 2024 20:50:56 +0100 Subject: [PATCH 06/86] Only enable keyboard controller when necessary (#4483) * Only enable keyboard controller when necessary * make it screen only * rm keyboard padding * rm keyboardpadding file * revert using keyboard controller in composer * remove styles.outer (unnecessary for revert) * continue to use keyboard padding in the report dialog for dms --------- Co-authored-by: Hailey --- src/App.native.tsx | 2 +- ... => KeyboardControllerPadding.android.tsx} | 2 +- src/components/KeyboardControllerPadding.tsx | 7 + src/components/KeyboardPadding.tsx | 3 - src/components/ReportDialog/SubmitView.tsx | 2 - src/components/dialogs/MutedWords.tsx | 2 - src/components/dms/ReportDialog.tsx | 2 + .../moderation/LabelsOnMeDialog.tsx | 2 - src/screens/Messages/Conversation/index.tsx | 12 + src/view/com/composer/Composer.tsx | 357 +++++++++--------- src/view/com/composer/GifAltText.tsx | 2 - src/view/com/modals/AddAppPasswords.tsx | 2 - src/view/com/modals/Modal.tsx | 2 - 13 files changed, 191 insertions(+), 206 deletions(-) rename src/components/{KeyboardPadding.android.tsx => KeyboardControllerPadding.android.tsx} (88%) create mode 100644 src/components/KeyboardControllerPadding.tsx delete mode 100644 src/components/KeyboardPadding.tsx diff --git a/src/App.native.tsx b/src/App.native.tsx index b359ad911d..5b2071e102 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -143,7 +143,7 @@ function App() { * that is set up in the InnerApp component above. */ return ( - + diff --git a/src/components/KeyboardPadding.android.tsx b/src/components/KeyboardControllerPadding.android.tsx similarity index 88% rename from src/components/KeyboardPadding.android.tsx rename to src/components/KeyboardControllerPadding.android.tsx index 40dec30017..92ef1b0b05 100644 --- a/src/components/KeyboardPadding.android.tsx +++ b/src/components/KeyboardControllerPadding.android.tsx @@ -5,7 +5,7 @@ import Animated, { useSharedValue, } from 'react-native-reanimated' -export function KeyboardPadding({maxHeight}: {maxHeight?: number}) { +export function KeyboardControllerPadding({maxHeight}: {maxHeight?: number}) { const keyboardHeight = useSharedValue(0) useKeyboardHandler( diff --git a/src/components/KeyboardControllerPadding.tsx b/src/components/KeyboardControllerPadding.tsx new file mode 100644 index 0000000000..f3163d87cf --- /dev/null +++ b/src/components/KeyboardControllerPadding.tsx @@ -0,0 +1,7 @@ +export function KeyboardControllerPadding({ + maxHeight: _, +}: { + maxHeight?: number +}) { + return null +} diff --git a/src/components/KeyboardPadding.tsx b/src/components/KeyboardPadding.tsx deleted file mode 100644 index 797d42ba0a..0000000000 --- a/src/components/KeyboardPadding.tsx +++ /dev/null @@ -1,3 +0,0 @@ -export function KeyboardPadding({maxHeight: _}: {maxHeight?: number}) { - return null -} diff --git a/src/components/ReportDialog/SubmitView.tsx b/src/components/ReportDialog/SubmitView.tsx index 74ecf92e41..3731617fd3 100644 --- a/src/components/ReportDialog/SubmitView.tsx +++ b/src/components/ReportDialog/SubmitView.tsx @@ -15,7 +15,6 @@ import * as Dialog from '#/components/Dialog' import * as Toggle from '#/components/forms/Toggle' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {ChevronLeft_Stroke2_Corner0_Rounded as ChevronLeft} from '#/components/icons/Chevron' -import {KeyboardPadding} from '#/components/KeyboardPadding' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' import {ReportDialogProps} from './types' @@ -222,7 +221,6 @@ export function SubmitView({ {submitting && } - ) } diff --git a/src/components/dialogs/MutedWords.tsx b/src/components/dialogs/MutedWords.tsx index dea819412c..534263422d 100644 --- a/src/components/dialogs/MutedWords.tsx +++ b/src/components/dialogs/MutedWords.tsx @@ -28,7 +28,6 @@ import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Has import {PageText_Stroke2_Corner0_Rounded as PageText} from '#/components/icons/PageText' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' -import {KeyboardPadding} from '#/components/KeyboardPadding' import {Loader} from '#/components/Loader' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' @@ -257,7 +256,6 @@ function MutedWordsInner() { - ) } diff --git a/src/components/dms/ReportDialog.tsx b/src/components/dms/ReportDialog.tsx index 9c4ed2a0e9..5493a1c87f 100644 --- a/src/components/dms/ReportDialog.tsx +++ b/src/components/dms/ReportDialog.tsx @@ -16,6 +16,7 @@ import {CharProgress} from '#/view/com/composer/char-progress/CharProgress' import * as Toast from '#/view/com/util/Toast' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import * as Dialog from '#/components/Dialog' +import {KeyboardControllerPadding} from '#/components/KeyboardControllerPadding' import {Button, ButtonIcon, ButtonText} from '../Button' import {Divider} from '../Divider' import {ChevronLeft_Stroke2_Corner0_Rounded as Chevron} from '../icons/Chevron' @@ -47,6 +48,7 @@ let ReportDialog = ({ + ) diff --git a/src/components/moderation/LabelsOnMeDialog.tsx b/src/components/moderation/LabelsOnMeDialog.tsx index 7c76269ac9..d0f0d4ea0a 100644 --- a/src/components/moderation/LabelsOnMeDialog.tsx +++ b/src/components/moderation/LabelsOnMeDialog.tsx @@ -14,7 +14,6 @@ import * as Toast from '#/view/com/util/Toast' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' -import {KeyboardPadding} from '#/components/KeyboardPadding' import {InlineLinkText} from '#/components/Link' import {Text} from '#/components/Typography' import {Divider} from '../Divider' @@ -110,7 +109,6 @@ function LabelsOnMeDialogInner(props: LabelsOnMeDialogProps) { )} - ) } diff --git a/src/screens/Messages/Conversation/index.tsx b/src/screens/Messages/Conversation/index.tsx index d21887de35..a99ef8d4d9 100644 --- a/src/screens/Messages/Conversation/index.tsx +++ b/src/screens/Messages/Conversation/index.tsx @@ -1,5 +1,6 @@ import React, {useCallback} from 'react' import {View} from 'react-native' +import {useKeyboardController} from 'react-native-keyboard-controller' import {AppBskyActorDefs, moderateProfile, ModerationOpts} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -34,6 +35,17 @@ export function MessagesConversationScreen({route}: Props) { const convoId = route.params.conversation const {setCurrentConvoId} = useCurrentConvoId() + const {setEnabled} = useKeyboardController() + useFocusEffect( + useCallback(() => { + if (isWeb) return + setEnabled(true) + return () => { + setEnabled(false) + } + }, [setEnabled]), + ) + useFocusEffect( useCallback(() => { setCurrentConvoId(convoId) diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index e8ea5189f3..9bb704012e 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -10,16 +10,12 @@ import { ActivityIndicator, BackHandler, Keyboard, + KeyboardAvoidingView, LayoutChangeEvent, StyleSheet, TouchableOpacity, View, } from 'react-native' -import { - KeyboardAvoidingView, - KeyboardStickyView, - useKeyboardController, -} from 'react-native-keyboard-controller' import Animated, { interpolateColor, useAnimatedStyle, @@ -131,17 +127,6 @@ export const ComposePost = observer(function ComposePost({ const {closeAllModals} = useModalControls() const t = useTheme() - // Disable this in the composer to prevent any extra keyboard height being applied. - // See https://github.com/bluesky-social/social-app/pull/4399 - const {setEnabled} = useKeyboardController() - React.useEffect(() => { - if (!isAndroid) return - setEnabled(false) - return () => { - setEnabled(true) - } - }, [setEnabled]) - const [isKeyboardVisible] = useIsKeyboardVisible({iosUseWillEvents: true}) const [isProcessing, setIsProcessing] = useState(false) const [processingState, setProcessingState] = useState('') @@ -431,181 +416,175 @@ export const ComposePost = observer(function ComposePost({ } = useAnimatedBorders() return ( - <> - - - - - - - Cancel - - - - {isProcessing ? ( - <> - {processingState} - - - - - ) : ( - <> - - {canPost ? ( - - - - {replyTo ? ( - Reply - ) : ( - Post - )} - - - - ) : ( - - - Post + + + + + + + Cancel + + + + {isProcessing ? ( + <> + {processingState} + + + + + ) : ( + <> + + {canPost ? ( + + + + {replyTo ? ( + Reply + ) : ( + Post + )} - - )} - + + + ) : ( + + + Post + + + )} + + )} + + + {isAltTextRequiredAndMissing && ( + + + + + + One or more images is missing alt text. + + + )} + {error !== '' && ( + + + + + {error} + + )} + + + {replyTo ? : undefined} + + + + + + + + {gallery.isEmpty && extLink && ( + + { + setExtLink(undefined) + setExtGif(undefined) + }} + /> + + + )} + + {quote ? ( + + + + + {quote.uri !== initQuote?.uri && ( + setQuote(undefined)} /> )} + ) : undefined} + + - {isAltTextRequiredAndMissing && ( - - - - - - One or more images is missing alt text. - - - )} - {error !== '' && ( - - - - - {error} - - )} - - - {replyTo ? : undefined} - - - - - - - - {gallery.isEmpty && extLink && ( - - { - setExtLink(undefined) - setExtGif(undefined) - }} - /> - - - )} - {quote ? ( - - - - - {quote.uri !== initQuote?.uri && ( - setQuote(undefined)} /> - )} - - ) : undefined} - - - - - {replyTo ? null : ( - + - + ) }) diff --git a/src/view/com/composer/GifAltText.tsx b/src/view/com/composer/GifAltText.tsx index cdef13352f..b1f10bf2fc 100644 --- a/src/view/com/composer/GifAltText.tsx +++ b/src/view/com/composer/GifAltText.tsx @@ -20,7 +20,6 @@ import * as Dialog from '#/components/Dialog' import * as TextField from '#/components/forms/TextField' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {PlusSmall_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' -import {KeyboardPadding} from '#/components/KeyboardPadding' import {Text} from '#/components/Typography' import {GifEmbed} from '../util/post-embeds/GifEmbed' import {AltTextReminder} from './photos/Gallery' @@ -181,7 +180,6 @@ function AltTextInner({ - ) } diff --git a/src/view/com/modals/AddAppPasswords.tsx b/src/view/com/modals/AddAppPasswords.tsx index d6df12657e..92229e7b69 100644 --- a/src/view/com/modals/AddAppPasswords.tsx +++ b/src/view/com/modals/AddAppPasswords.tsx @@ -22,7 +22,6 @@ import {Text} from '#/view/com/util/text/Text' import * as Toast from '#/view/com/util/Toast' import {atoms as a} from '#/alf' import * as Toggle from '#/components/forms/Toggle' -import {KeyboardPadding} from '#/components/KeyboardPadding' export const snapPoints = ['90%'] @@ -246,7 +245,6 @@ export function Component({}: {}) { onPress={!appPassword ? createAppPassword : onDone} /> - ) } diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index eb9666405f..ecfe5806ef 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -6,7 +6,6 @@ import BottomSheet from '@discord/bottom-sheet/src' import {useModalControls, useModals} from '#/state/modals' import {usePalette} from 'lib/hooks/usePalette' import {FullWindowOverlay} from '#/components/FullWindowOverlay' -import {KeyboardPadding} from '#/components/KeyboardPadding' import {createCustomBackdrop} from '../util/BottomSheetCustomBackdrop' import * as AddAppPassword from './AddAppPasswords' import * as AltImageModal from './AltImage' @@ -147,7 +146,6 @@ export function ModalsContainer() { handleStyle={[styles.handle, pal.view]} onChange={onBottomSheetChange}> {element} - ) From a4ca4db35cbe611a73150eac808fe42c4a6fc8e2 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 11 Jun 2024 16:54:47 -0500 Subject: [PATCH 07/86] Stringify path error (#4379) --- src/state/persisted/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/persisted/store.ts b/src/state/persisted/store.ts index ca023a6363..f740126c45 100644 --- a/src/state/persisted/store.ts +++ b/src/state/persisted/store.ts @@ -28,7 +28,7 @@ export async function read(): Promise { code: e.code, // @ts-ignore exists on some types expected: e?.expected, - path: e.path, + path: e.path?.join('.'), })) || [] logger.error(`persisted store: data failed validation on read`, {errors}) return undefined From e1dcd2e4347d5b439dd7f8f94c9727dc4667bb55 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 11 Jun 2024 15:01:13 -0700 Subject: [PATCH 08/86] Fix to thread load-more bug (#4488) --- src/state/queries/post-thread.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/state/queries/post-thread.ts b/src/state/queries/post-thread.ts index 727eff253b..a8b1160fb4 100644 --- a/src/state/queries/post-thread.ts +++ b/src/state/queries/post-thread.ts @@ -94,7 +94,6 @@ export function usePostThreadQuery(uri: string | undefined) { if (res.success) { const thread = responseToThreadNodes(res.data.thread) annotateSelfThread(thread) - console.log(thread) return thread } return {type: 'unknown', uri: uri!} @@ -267,7 +266,7 @@ function annotateSelfThread(thread: ThreadNode) { // not a self-thread return } - selfThreadNodes.push(parent) + selfThreadNodes.unshift(parent) parent = parent.parent } @@ -287,7 +286,7 @@ function annotateSelfThread(thread: ThreadNode) { for (const selfThreadNode of selfThreadNodes) { selfThreadNode.ctx.isSelfThread = true } - const last = selfThreadNodes.at(-1) + const last = selfThreadNodes[selfThreadNodes.length - 1] if (last && last.post.replyCount && !last.replies?.length) { last.ctx.hasMoreSelfThread = true } From 0640364e0f91928d643f68a2a2666b0d0926b37e Mon Sep 17 00:00:00 2001 From: Kevin Scannell Date: Tue, 11 Jun 2024 17:26:08 -0500 Subject: [PATCH 09/86] Irish back to 100% (#4454) --- src/locale/locales/ga/messages.po | 2459 +++++++++++------------------ 1 file changed, 955 insertions(+), 1504 deletions(-) diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 7e3656d4e2..3a118de8fd 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -14,7 +14,7 @@ msgstr "" #: src/screens/Messages/List/ChatListItem.tsx:119 msgid "(contains embedded content)" -msgstr "" +msgstr "(tรก รกbhar leabaithe ann)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" @@ -22,29 +22,27 @@ msgstr "(gan rรญomhphost)" #: src/view/com/notifications/FeedItem.tsx:261 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" -msgstr "{0, plural, one {{formattedCount} cheann amhรกin eile} two {{formattedCount} cheann eile} few {{formattedCount} cinn eile} many {{formattedCount} gcinn eile} other {{formattedCount} ceann eile}}" +msgstr "{0, plural, one {duine amhรกin eile} two {beirt eile} few {{formattedCount} dhuine eile} many {{formattedCount} nduine eile} other {{formattedCount} duine eile}}" #: 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 "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an gcuntas seo} two {Cuireadh # lipรฉad ar an gcuntas seo} few {Cuireadh # lipรฉad ar an gcuntas seo} many {Cuireadh # lipรฉad ar an gcuntas seo} other {Cuireadh # lipรฉad ar an gcuntas seo}}" +msgstr "{0, plural, one {Cuireadh lipรฉad amhรกin ar an gcuntas seo} two {Cuireadh # lipรฉad ar an gcuntas seo} few {Cuireadh # lipรฉad ar an gcuntas seo} many {Cuireadh # lipรฉad ar an gcuntas seo} other {Cuireadh # lipรฉad ar an gcuntas seo}}" #: 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 "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an รกbhar seo} two {Cuireadh # lipรฉad ar an รกbhar seo} few {Cuireadh # lipรฉad ar an รกbhar seo} many {Cuireadh # lipรฉad ar an รกbhar seo} other {Cuireadh # lipรฉad ar an รกbhar seo}}" +msgstr "{0, plural, one {Cuireadh lipรฉad amhรกin ar an รกbhar seo} two {Cuireadh # lipรฉad ar an รกbhar seo} few {Cuireadh # lipรฉad ar an รกbhar seo} many {Cuireadh # lipรฉad ar an รกbhar seo} other {Cuireadh # lipรฉad ar an รกbhar seo}}" #: src/view/com/util/post-ctrls/RepostButton.tsx:64 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# athphostรกil} two {# athphostรกil} few {# athphostรกil} many {# n-athphostรกil} other {# athphostรกil}}" -#: src/components/ProfileHoverCard/index.web.tsx:376 -#: src/screens/Profile/Header/Metrics.tsx:23 +#: src/components/ProfileHoverCard/index.web.tsx:376 src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" -msgstr "{0, plural, one {# leantรณir} two {# leantรณir} few {# leantรณir} many {# leantรณir} other {# leantรณir}}" +msgstr "{0, plural, one {leantรณir} two {leantรณir} few {leantรณir} many {leantรณir} other {leantรณir}}" -#: src/components/ProfileHoverCard/index.web.tsx:380 -#: src/screens/Profile/Header/Metrics.tsx:27 +#: src/components/ProfileHoverCard/index.web.tsx:380 src/screens/Profile/Header/Metrics.tsx:27 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}}" +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:252 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" @@ -56,7 +54,7 @@ msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other #: src/view/com/feeds/FeedSourceCard.tsx:280 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "{0, plural, one {Molta ag # รบsรกideoir amhรกin} two {Molta ag # รบsรกideoir} few {Molta ag # รบsรกideoir} many {Molta ag # n-รบsรกideoir} other {Molta ag # รบsรกideoir}}" +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}}" #: src/screens/Profile/Header/Metrics.tsx:59 msgid "{0, plural, one {post} other {posts}}" @@ -76,11 +74,11 @@ msgstr "{0, plural, one {Dรญmhol (# mholadh)} two {Dรญmhol (# mholadh)} few {Dรญ #: src/view/com/util/UserAvatar.tsx:406 msgid "{0}'s avatar" -msgstr "" +msgstr "abhatรกr {0}" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "{count, plural, one {Molta ag # รบsรกideoir amhรกin} two {Molta ag # รบsรกideoir} few {Molta ag # รบsรกideoir} many {Molta ag # n-รบsรกideoir} other {Molta ag # รบsรกideoir}}" +msgstr "{count, 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/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -90,8 +88,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:457 -#: src/screens/Profile/Header/Metrics.tsx:50 +#: src/components/ProfileHoverCard/index.web.tsx:457 src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} รก leanรบint" @@ -99,11 +96,9 @@ msgstr "{following} รก leanรบint" msgid "{handle} can't be messaged" 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:585 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 src/view/screens/ProfileFeed.tsx:585 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "{likeCount, plural, one {Molta ag # รบsรกideoir amhรกin} two {Molta ag # รบsรกideoir} few {Molta ag # รบsรกideoir} many {Molta ag # n-รบsรกideoir} other {Molta ag # รบsรกideoir}}" +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:461 msgid "{numUnreadNotifications} unread" @@ -111,7 +106,7 @@ msgstr "{numUnreadNotifications} gan lรฉamh" #: 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 "{value, plural, =0 {Taispeรกin gach freagra} one {Taispeรกin freagraรญ a bhfuil ar a laghad # mholadh 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}}" +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:159 msgid "<0/> members" @@ -125,34 +120,10 @@ 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/view/shell/Drawer.tsx:96 -#~ msgid "<0>{0} following" -#~ msgstr "<0>{0} รก leanรบint" - -#: src/components/ProfileHoverCard/index.web.tsx:437 -#~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "<0>{following} <1>{pluralizedFollowers}" - -#: src/components/ProfileHoverCard/index.web.tsx:NaN -#~ msgid "<0>{following} <1>following" -#~ msgstr "<0>{following} <1>รก leanรบint" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 -#~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "<0>Roghnaigh do chuid<1>Fothaรญ<2>Molta" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 -#~ msgid "<0>Follow some<1>Recommended<2>Users" -#~ msgstr "<0>Lean cรบpla<1>รšsรกideoirรญ<2>Molta" - #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>Neamhbhainteach. Nรญl an rabhadh seo ar fรกil ach le haghaidh postรกlacha a bhfuil meรกin ceangailte leo." -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 -#~ msgid "<0>Welcome to<1>Bluesky" -#~ msgstr "<0>Fรกilte go<1>Bluesky" - #: src/screens/Profile/Header/Handle.tsx:43 msgid "โš Invalid Handle" msgstr "โš Leasainm Neamhbhailรญ" @@ -161,8 +132,7 @@ msgstr "โš Leasainm Neamhbhailรญ" msgid "2FA Confirmation" msgstr "Dearbhรบ 2FA" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:92 src/view/screens/Search/Search.tsx:714 msgid "Access navigation links and settings" msgstr "Oscail nascanna agus socruithe" @@ -170,8 +140,7 @@ msgstr "Oscail nascanna agus socruithe" 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/com/modals/EditImage.tsx:300 src/view/screens/Settings/index.tsx:518 msgid "Accessibility" msgstr "Inrochtaineacht" @@ -179,18 +148,11 @@ msgstr "Inrochtaineacht" msgid "Accessibility settings" msgstr "Socruithe inrochtaineachta" -#: src/Navigation.tsx:290 -#: src/view/screens/AccessibilitySettings.tsx:63 +#: src/Navigation.tsx:290 src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "account" -#~ msgstr "cuntas" - -#: src/screens/Login/LoginForm.tsx:167 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:167 src/view/screens/Settings/index.tsx:345 src/view/screens/Settings/index.tsx:752 msgid "Account" msgstr "Cuntas" @@ -206,8 +168,7 @@ msgstr "Cuntas leanaithe" msgid "Account muted" msgstr "Cuireadh an cuntas i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:93 -#: src/lib/moderation/useModerationCauseDescription.ts:93 +#: src/components/moderation/ModerationDetailsDialog.tsx:93 src/lib/moderation/useModerationCauseDescription.ts:93 msgid "Account Muted" msgstr "Cuireadh an cuntas i bhfolach" @@ -223,8 +184,7 @@ msgstr "Roghanna cuntais" msgid "Account removed from quick access" msgstr "Baineadh an cuntas รณn mearliosta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 -#: src/view/com/profile/ProfileMenu.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Cuntas dรญbhlocรกilte" @@ -236,10 +196,7 @@ msgstr "Cuntas dรญleanaithe" msgid "Account unmuted" msgstr "Nรญl an cuntas i bhfolach a thuilleadh" -#: src/components/dialogs/MutedWords.tsx:165 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 -#: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/screens/ProfileList.tsx:881 +#: src/components/dialogs/MutedWords.tsx:165 src/view/com/modals/ListAddRemoveUsers.tsx:268 src/view/com/modals/UserAddRemoveLists.tsx:230 src/view/screens/ProfileList.tsx:881 msgid "Add" msgstr "Cuir leis" @@ -251,36 +208,18 @@ msgstr "Cuir rabhadh faoin รกbhar leis" msgid "Add a user to this list" 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/components/dialogs/SwitchAccount.tsx:56 src/screens/Deactivated.tsx:199 src/view/screens/Settings/index.tsx:422 src/view/screens/Settings/index.tsx:431 msgid "Add account" msgstr "Cuir cuntas leis seo" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:70 src/view/com/composer/GifAltText.tsx:136 src/view/com/composer/GifAltText.tsx:176 src/view/com/composer/photos/Gallery.tsx:120 src/view/com/composer/photos/Gallery.tsx:187 src/view/com/modals/AltImage.tsx:118 msgid "Add alt text" msgstr "Cuir tรฉacs malartach leis seo" -#: src/view/screens/AppPasswords.tsx:106 -#: src/view/screens/AppPasswords.tsx:148 -#: src/view/screens/AppPasswords.tsx:161 +#: src/view/screens/AppPasswords.tsx:106 src/view/screens/AppPasswords.tsx:148 src/view/screens/AppPasswords.tsx:161 msgid "Add App Password" msgstr "Cuir pasfhocal aipe leis seo" -#: src/view/com/composer/Composer.tsx:467 -#~ msgid "Add link card" -#~ msgstr "Cuir cรกrta leanรบna leis seo" - -#: src/view/com/composer/Composer.tsx:472 -#~ msgid "Add link card:" -#~ msgstr "Cuir cรกrta leanรบna leis seo:" - #: src/components/dialogs/MutedWords.tsx:158 msgid "Add mute word for configured settings" msgstr "Cuir focal atรก le cur i bhfolach anseo le haghaidh socruithe a rinne tรบ" @@ -301,8 +240,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/view/com/profile/ProfileMenu.tsx:265 -#: src/view/com/profile/ProfileMenu.tsx:268 +#: src/view/com/profile/ProfileMenu.tsx:265 src/view/com/profile/ProfileMenu.tsx:268 msgid "Add to Lists" msgstr "Cuir le liostaรญ" @@ -310,12 +248,7 @@ msgstr "Cuir le liostaรญ" msgid "Add to my feeds" msgstr "Cuir le mo chuid fothaรญ" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 -#~ msgid "Added" -#~ msgstr "Curtha leis" - -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 -#: src/view/com/modals/UserAddRemoveLists.tsx:157 +#: src/view/com/modals/ListAddRemoveUsers.tsx:191 src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Curtha leis an liosta" @@ -327,8 +260,7 @@ msgstr "Curtha le mo chuid fothaรญ" 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." -#: src/lib/moderation/useGlobalLabelStrings.ts:34 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 src/view/com/modals/SelfLabel.tsx:76 msgid "Adult Content" msgstr "รbhar do dhaoine fรกsta" @@ -336,8 +268,7 @@ msgstr "รbhar do dhaoine fรกsta" msgid "Adult content is disabled." msgstr "Tรก รกbhar do dhaoine fรกsta curtha ar ceal." -#: src/screens/Moderation/index.tsx:375 -#: src/view/screens/Settings/index.tsx:686 +#: src/screens/Moderation/index.tsx:375 src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Ardleibhรฉal" @@ -345,18 +276,15 @@ msgstr "Ardleibhรฉal" 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: 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" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:62 src/screens/Messages/Settings.tsx:65 msgid "Allow new messages from" msgstr "Ceadaigh teachtaireachtaรญ nua รณ" -#: src/screens/Login/ForgotPasswordForm.tsx:178 -#: src/view/com/modals/ChangePassword.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:178 src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "An bhfuil cรณd agat cheana?" @@ -364,15 +292,11 @@ msgstr "An bhfuil cรณd agat cheana?" msgid "Already signed in as @{0}" msgstr "Logรกilte isteach cheana mar @{0}" -#: src/view/com/composer/GifAltText.tsx:94 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:173 +#: src/view/com/composer/GifAltText.tsx:94 src/view/com/composer/photos/Gallery.tsx:144 src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:77 +#: src/view/com/composer/GifAltText.tsx:145 src/view/com/modals/EditImage.tsx:316 src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" msgstr "Tรฉacs malartach" @@ -384,8 +308,7 @@ msgstr "Tรฉacs Malartach" msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Cuireann an tรฉacs malartach sรญos ar na hรญomhรกnna do dhaoine atรก dall nรณ a bhfuil lagรบ radhairc orthu agus cuireann sรฉ an comhthรฉacs ar fรกil do chuile dhuine." -#: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/com/modals/VerifyEmail.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:96 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Cuireadh teachtaireacht rรญomhphoist chuig {0}. Tรก cรณd dearbhaithe faoi iamh. Is fรฉidir leat an cรณd a chur isteach thรญos anseo." @@ -397,16 +320,15 @@ msgstr "Cuireadh teachtaireacht rรญomhphoist chuig do sheanseoladh. {0}. Tรก cรณ msgid "An error occured" msgstr "Tharla earrรกid" +#: src/components/dms/MessageMenu.tsx:134 +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/lib/moderation/useReportOptions.ts:27 msgid "An issue not included in these options" msgstr "Rud nach bhfuil ar fรกil sna roghanna seo" -#: src/components/hooks/useFollowMethods.ts:35 -#: src/components/hooks/useFollowMethods.ts:50 -#: src/view/com/profile/FollowButton.tsx:35 -#: src/view/com/profile/FollowButton.tsx:45 -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198 +#: src/components/hooks/useFollowMethods.ts:35 src/components/hooks/useFollowMethods.ts:50 src/view/com/profile/FollowButton.tsx:35 src/view/com/profile/FollowButton.tsx:45 src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198 msgid "An issue occurred, please try again." msgstr "Tharla fadhb. Dรฉan iarracht eile, le do thoil." @@ -414,8 +336,7 @@ msgstr "Tharla fadhb. Dรฉan iarracht eile, le do thoil." msgid "an unknown error occurred" msgstr "tharla earrรกid nach eol dรบinn" -#: src/view/com/notifications/FeedItem.tsx:258 -#: src/view/com/threadgate/WhoCanReply.tsx:180 +#: src/view/com/notifications/FeedItem.tsx:258 src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" msgstr "agus" @@ -451,14 +372,11 @@ msgstr "Caithfear 4 charachtar ar a laghad a bheith in ainmneacha phasfhocal na msgid "App password settings" msgstr "Socruithe phasfhocal na haipe" -#: src/Navigation.tsx:258 -#: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/Navigation.tsx:258 src/view/screens/AppPasswords.tsx:192 src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Pasfhocal na haipe" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:153 src/components/moderation/LabelsOnMeDialog.tsx:156 msgid "Appeal" msgstr "Achomharc" @@ -466,19 +384,11 @@ msgstr "Achomharc" msgid "Appeal \"{0}\" label" msgstr "Achomharc in aghaidh lipรฉid \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Achomharc dรฉanta" -#: src/components/moderation/LabelsOnMeDialog.tsx:193 -#~ msgid "Appeal submitted." -#~ msgstr "Achomharc dรฉanta" - -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 src/screens/Messages/Conversation/ChatDisabled.tsx:53 src/screens/Messages/Conversation/ChatDisabled.tsx:99 src/screens/Messages/Conversation/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Dรฉan achomharc i gcoinne an chinnidh seo" @@ -486,8 +396,7 @@ msgstr "Dรฉan achomharc i gcoinne an chinnidh seo" msgid "Appearance" msgstr "Cuma" -#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 src/screens/Home/NoFeedsPinned.tsx:106 msgid "Apply default recommended feeds" msgstr "Bain รบsรกid as fothaรญ rรฉamhshocraithe a moladh" @@ -531,29 +440,10 @@ msgstr "Lomnochtacht ealaรญonta nรณ gan a bheith gรกirsiรบil." msgid "At least 3 characters" msgstr "3 charachtar ar a laghad" -#: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 -#: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:275 -#: src/screens/Login/LoginForm.tsx:281 -#: 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:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/components/dms/MessagesListHeader.tsx:75 src/components/moderation/LabelsOnMeDialog.tsx:283 src/components/moderation/LabelsOnMeDialog.tsx:284 src/screens/Login/ChooseAccountForm.tsx:98 src/screens/Login/ChooseAccountForm.tsx:103 src/screens/Login/ForgotPasswordForm.tsx:129 src/screens/Login/ForgotPasswordForm.tsx:135 src/screens/Login/LoginForm.tsx:275 src/screens/Login/LoginForm.tsx:281 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:193 src/view/com/util/ViewHeader.tsx:90 msgid "Back" msgstr "Ar ais" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 -#~ msgid "Based on your interest in {interestsText}" -#~ msgstr "Toisc go bhfuil suim agat in {interestsText}" - #: src/view/screens/Settings/index.tsx:496 msgid "Basics" msgstr "Bunrudaรญ" @@ -566,18 +456,15 @@ msgstr "Breithlรก" msgid "Birthday:" msgstr "Breithlรก:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 -#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Blocรกil" -#: src/components/dms/ConvoMenu.tsx:188 -#: src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 msgid "Block account" msgstr "Blocรกil an cuntas seo" -#: src/view/com/profile/ProfileMenu.tsx:302 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:302 src/view/com/profile/ProfileMenu.tsx:309 msgid "Block Account" msgstr "Blocรกil an cuntas seo" @@ -597,8 +484,7 @@ msgstr "Liosta blocรกla" msgid "Block these accounts?" msgstr "An bhfuil fonn ort na cuntais seo a bhlocรกil?" -#: src/view/com/lists/ListCard.tsx:112 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75 +#: src/view/com/lists/ListCard.tsx:112 src/view/com/util/post-embeds/QuoteEmbed.tsx:75 msgid "Blocked" msgstr "Blocรกilte" @@ -606,8 +492,7 @@ msgstr "Blocรกilte" msgid "Blocked accounts" msgstr "Cuntais bhlocรกilte" -#: src/Navigation.tsx:141 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:141 src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Cuntais bhlocรกilte" @@ -639,8 +524,7 @@ msgstr "Nรญ chuirfidh blocรกil cosc ar lipรฉid a bheith curtha ar do chuntas, ac msgid "Blog" msgstr "Blag" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:89 src/view/com/auth/server-input/index.tsx:91 msgid "Bluesky" msgstr "Bluesky" @@ -648,18 +532,6 @@ 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/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN -#~ msgid "Bluesky is flexible." -#~ msgstr "Tรก Bluesky solรบbtha." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN -#~ msgid "Bluesky is open." -#~ msgstr "Tรก Bluesky oscailte." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN -#~ msgid "Bluesky is public." -#~ msgstr "Tรก Bluesky poiblรญ." - #: 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." 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." @@ -676,8 +548,7 @@ msgstr "Dรฉan รญomhรกnna doilรฉir agus scag รณ fhothaรญ iad" msgid "Books" msgstr "Leabhair" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:116 src/screens/Home/NoFeedsPinned.tsx:123 msgid "Browse other feeds" msgstr "Tabhair sรบil ar fhothaรญ eile" @@ -689,18 +560,10 @@ msgstr "Gnรณ" msgid "by โ€”" msgstr "le โ€”" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 -#~ msgid "by {0}" -#~ msgstr "le {0}" - #: src/components/LabelingServiceCard/index.tsx:56 msgid "By {0}" msgstr "Le {0}" -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 -#~ msgid "by @{0}" -#~ msgstr "ag @{0}" - #: src/view/com/profile/ProfileSubpageHeader.tsx:163 msgid "by <0/>" msgstr "le <0/>" @@ -721,43 +584,16 @@ msgstr "Ceamara" 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." -#: 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:417 -#: src/view/com/composer/Composer.tsx:423 -#: src/view/com/modals/ChangeEmail.tsx:213 -#: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 -#: src/view/com/modals/ChangePassword.tsx:268 -#: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 -#: src/view/com/modals/LinkWarning.tsx:105 -#: src/view/com/modals/LinkWarning.tsx:107 -#: src/view/com/modals/VerifyEmail.tsx:255 -#: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 -#: src/view/shell/desktop/Search.tsx:218 +#: 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:417 src/view/com/composer/Composer.tsx:423 src/view/com/modals/ChangeEmail.tsx:213 src/view/com/modals/ChangeEmail.tsx:215 src/view/com/modals/ChangeHandle.tsx:148 src/view/com/modals/ChangePassword.tsx:268 src/view/com/modals/ChangePassword.tsx:271 src/view/com/modals/CreateOrEditList.tsx:344 src/view/com/modals/crop-image/CropImage.web.tsx:162 src/view/com/modals/EditImage.tsx:324 src/view/com/modals/EditProfile.tsx:250 src/view/com/modals/InAppBrowserConsent.tsx:78 src/view/com/modals/InAppBrowserConsent.tsx:80 src/view/com/modals/LinkWarning.tsx:105 src/view/com/modals/LinkWarning.tsx:107 src/view/com/modals/VerifyEmail.tsx:255 src/view/com/modals/VerifyEmail.tsx:261 src/view/com/util/post-ctrls/RepostButton.tsx:136 src/view/screens/Search/Search.tsx:738 src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Cealaigh" -#: src/view/com/modals/CreateOrEditList.tsx:349 -#: src/view/com/modals/DeleteAccount.tsx:174 -#: src/view/com/modals/DeleteAccount.tsx:296 +#: src/view/com/modals/CreateOrEditList.tsx:349 src/view/com/modals/DeleteAccount.tsx:174 src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" msgid "Cancel" msgstr "Cealaigh" -#: src/view/com/modals/DeleteAccount.tsx:170 -#: src/view/com/modals/DeleteAccount.tsx:292 +#: src/view/com/modals/DeleteAccount.tsx:170 src/view/com/modals/DeleteAccount.tsx:292 msgid "Cancel account deletion" msgstr "Nรก scrios an chuntas" @@ -779,10 +615,9 @@ msgstr "Nรก dรฉan athlua na postรกla" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +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:87 src/view/shell/desktop/Search.tsx:214 msgid "Cancel search" msgstr "Cealaigh an cuardach" @@ -803,8 +638,7 @@ msgstr "Athraigh" msgid "Change handle" msgstr "Athraigh mo leasainm" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/com/modals/ChangeHandle.tsx:156 src/view/screens/Settings/index.tsx:729 msgid "Change Handle" msgstr "Athraigh mo leasainm" @@ -816,8 +650,7 @@ msgstr "Athraigh mo rรญomhphost" msgid "Change password" msgstr "Athraigh mo phasfhocal" -#: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/com/modals/ChangePassword.tsx:142 src/view/screens/Settings/index.tsx:774 msgid "Change Password" msgstr "Athraigh mo phasfhocal" @@ -829,9 +662,7 @@ msgstr "Athraigh an teanga phostรกla go {0}" msgid "Change Your Email" msgstr "Athraigh do rรญomhphost" -#: src/Navigation.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:295 +#: src/Navigation.tsx:302 src/view/shell/bottom-bar/BottomBar.tsx:201 src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" msgstr "Comhrรก" @@ -839,16 +670,11 @@ msgstr "Comhrรก" msgid "Chat muted" msgstr "Balbhaรญodh an comhrรก" -#: src/components/dms/ConvoMenu.tsx:112 -#: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/components/dms/ConvoMenu.tsx:112 src/components/dms/MessageMenu.tsx:81 src/Navigation.tsx:307 src/screens/Messages/List/index.tsx:88 src/view/screens/Settings/index.tsx:638 msgid "Chat settings" msgstr "Socruithe comhrรก" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/screens/Messages/Settings.tsx:59 src/view/screens/Settings/index.tsx:647 msgid "Chat Settings" msgstr "Socruithe Comhrรก" @@ -856,19 +682,14 @@ msgstr "Socruithe Comhrรก" msgid "Chat unmuted" msgstr "Dรญbhalbhaรญodh an comhrรก" -#: src/screens/SignupQueued.tsx:78 -#: src/screens/SignupQueued.tsx:82 +#: src/screens/Messages/Conversation/index.tsx:26 +msgid "Chat with {chatId}" +msgstr "Comhrรก le {chatId}" + +#: src/screens/SignupQueued.tsx:78 src/screens/SignupQueued.tsx:82 msgid "Check my status" msgstr "Seiceรกil mo stรกdas" -#: 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 "Cuir sรบil ar na fothaรญ seo. Brรบigh + len iad a chur le liosta na bhfothaรญ atรก greamaithe agat." - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 -#~ 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:268 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 รฉ." @@ -889,18 +710,10 @@ msgstr "Roghnaigh Seirbhรญs" msgid "Choose the algorithms that power your custom feeds." msgstr "Roghnaigh na halgartaim le haghaidh do chuid sainfhothaรญ." -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN -#~ msgid "Choose the algorithms that power your experience with custom feeds." -#~ msgstr "Roghnaigh na halgartaim a shainรญonn an dรณigh a n-oibrรญonn do chuid sainfhothaรญ." - #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" msgstr "Roghnaigh an dath seo mar abhatรกr duit" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 -#~ msgid "Choose your main feeds" -#~ msgstr "Roghnaigh do phrรญomhfhothaรญ" - #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" @@ -921,8 +734,7 @@ msgstr "Glan na sonraรญ ar fad atรก i dtaisce." msgid "Clear all storage data (restart after this)" msgstr "Glan na sonraรญ ar fad atรก i dtaisce. Ansin atosaigh." -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/com/util/forms/SearchInput.tsx:88 src/view/screens/Search/Search.tsx:864 msgid "Clear search query" msgstr "Glan an cuardach" @@ -940,20 +752,16 @@ msgstr "cliceรกil anseo" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "Cliceรกil anseo le tuilleadh a fhoghlaim faoi dhรญghnรญomhรบ do chuntais" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" +msgstr "Cliceรกil anseo do bhreis eolais." #: src/components/TagMenu/index.web.tsx:138 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/RichText.tsx:198 -#~ 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 msgid "Click to retry failed message" msgstr "Cliceรกil le triail eile a bhaint as teachtaireacht ar theip uirthi" @@ -966,17 +774,11 @@ msgstr "Aerรกid" msgid "Clip ๐Ÿด clop ๐Ÿด" 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/view/com/modals/ChangePassword.tsx:268 -#: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:185 +#: src/components/dialogs/GifSelect.ios.tsx:250 src/components/dialogs/GifSelect.tsx:268 src/components/dms/dialogs/SearchablePeopleList.tsx:261 src/view/com/modals/ChangePassword.tsx:268 src/view/com/modals/ChangePassword.tsx:271 src/view/com/util/post-embeds/GifEmbed.tsx:185 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:113 src/components/Dialog/index.web.tsx:251 msgid "Close active dialog" msgstr "Dรบn an dialรณg oscailte" @@ -988,8 +790,7 @@ msgstr "Dรบn an rabhadh" msgid "Close bottom drawer" msgstr "Dรบn an tarraiceรกn รญochtair" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:262 +#: src/components/dialogs/GifSelect.ios.tsx:244 src/components/dialogs/GifSelect.tsx:262 msgid "Close dialog" msgstr "Dรบn an dialรณg" @@ -1013,8 +814,7 @@ msgstr "Dรบn an fhuinneog" msgid "Close navigation footer" msgstr "Dรบn an buntรกsc" -#: src/components/Menu/index.tsx:209 -#: src/components/TagMenu/index.tsx:262 +#: src/components/Menu/index.tsx:209 src/components/TagMenu/index.tsx:262 msgid "Close this dialog" msgstr "Dรบn an dialรณg seo" @@ -1036,7 +836,7 @@ msgstr "Dรบnann sรฉ seo an t-amharcรณir le haghaidh รญomhรก an cheanntรกisc" #: src/view/com/notifications/FeedItem.tsx:205 msgid "Collapse list of users" -msgstr "" +msgstr "Laghdaigh an liosta รบsรกideoirรญ" #: src/view/com/notifications/FeedItem.tsx:341 msgid "Collapses list of users for a given notification" @@ -1050,8 +850,7 @@ msgstr "Greann" msgid "Comics" msgstr "Greannรกin" -#: src/Navigation.tsx:248 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:248 src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Treoirlรญnte an phobail" @@ -1071,10 +870,6 @@ msgstr "Scrรญobh postรกlacha chomh fada le {MAX_GRAPHEME_LENGTH} litir agus cara msgid "Compose reply" msgstr "Scrรญobh freagra" -#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 -#~ msgid "Configure content filtering setting for category: {0}" -#~ msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {0}" - #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {name}" @@ -1083,20 +878,11 @@ msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {name}" msgid "Configured in <0>moderation settings." msgstr "Le socrรบ i <0>socruithe na modhnรณireachta." -#: src/components/Prompt.tsx:159 -#: src/components/Prompt.tsx:162 -#: 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 +#: src/components/Prompt.tsx:159 src/components/Prompt.tsx:162 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" msgstr "Dearbhaigh" -#: src/view/com/modals/ChangeEmail.tsx:188 -#: src/view/com/modals/ChangeEmail.tsx:190 +#: src/view/com/modals/ChangeEmail.tsx:188 src/view/com/modals/ChangeEmail.tsx:190 msgid "Confirm Change" msgstr "Dearbhaigh an t-athrรบ" @@ -1116,13 +902,7 @@ msgstr "Dearbhaigh d'aois:" msgid "Confirm your birthdate" msgstr "Dearbhaigh do bhreithlรก" -#: src/screens/Login/LoginForm.tsx:250 -#: src/view/com/modals/ChangeEmail.tsx:152 -#: src/view/com/modals/DeleteAccount.tsx:238 -#: src/view/com/modals/DeleteAccount.tsx:244 -#: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/screens/Login/LoginForm.tsx:250 src/view/com/modals/ChangeEmail.tsx:152 src/view/com/modals/DeleteAccount.tsx:238 src/view/com/modals/DeleteAccount.tsx:244 src/view/com/modals/VerifyEmail.tsx:173 src/view/screens/Settings/DisableEmail2FADialog.tsx:143 src/view/screens/Settings/DisableEmail2FADialog.tsx:149 msgid "Confirmation code" msgstr "Cรณd dearbhaithe" @@ -1134,10 +914,6 @@ msgstr "Ag nascadhโ€ฆ" msgid "Contact support" msgstr "Teagmhรกil le Support" -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "content" -#~ msgstr "รกbhar" - #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" msgstr "รbhar Blocรกilte" @@ -1146,20 +922,15 @@ msgstr "รbhar Blocรกilte" msgid "Content filters" msgstr "Scagthaรญ รกbhair" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:280 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Teangacha รกbhair" -#: src/components/moderation/ModerationDetailsDialog.tsx:75 -#: src/lib/moderation/useModerationCauseDescription.ts:77 +#: src/components/moderation/ModerationDetailsDialog.tsx:75 src/lib/moderation/useModerationCauseDescription.ts:77 msgid "Content Not Available" msgstr "รbhar nach bhfuil ar fรกil" -#: src/components/moderation/ModerationDetailsDialog.tsx:46 -#: src/components/moderation/ScreenHider.tsx:99 -#: src/lib/moderation/useGlobalLabelStrings.ts:22 -#: src/lib/moderation/useModerationCauseDescription.ts:40 +#: src/components/moderation/ModerationDetailsDialog.tsx:46 src/components/moderation/ScreenHider.tsx:99 src/lib/moderation/useGlobalLabelStrings.ts:22 src/lib/moderation/useModerationCauseDescription.ts:40 msgid "Content Warning" msgstr "Rabhadh รกbhair" @@ -1171,8 +942,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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepInterests/index.tsx:253 src/screens/Onboarding/StepProfile/index.tsx:268 msgid "Continue" msgstr "Lean ar aghaidh" @@ -1180,20 +950,10 @@ msgstr "Lean ar aghaidh" msgid "Continue as {0} (currently signed in)" msgstr "Lean ort mar {0} (atรก logรกilte isteach faoi lรกthair)" -#: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 -#: src/screens/Signup/index.tsx:213 +#: src/screens/Onboarding/StepInterests/index.tsx:250 src/screens/Onboarding/StepProfile/index.tsx:265 src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 -#~ msgid "Continue to the next step" -#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 -#~ msgid "Continue to the next step without following any accounts" -#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile gan aon chuntas a leanรบint" - #: src/screens/Messages/List/ChatListItem.tsx:153 msgid "Conversation deleted" msgstr "Scriosadh an comhrรก" @@ -1202,8 +962,7 @@ msgstr "Scriosadh an comhrรก" msgid "Cooking" msgstr "Cรณcaireacht" -#: src/view/com/modals/AddAppPasswords.tsx:221 -#: src/view/com/modals/InviteCodes.tsx:183 +#: src/view/com/modals/AddAppPasswords.tsx:221 src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Cรณipeรกilte" @@ -1211,11 +970,7 @@ msgstr "Cรณipeรกilte" msgid "Copied build version to clipboard" msgstr "Leagan cรณipeรกilte sa ghearrthaisce" -#: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 -#: src/view/com/modals/ChangeHandle.tsx:320 -#: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/components/dms/MessageMenu.tsx:57 src/view/com/modals/AddAppPasswords.tsx:81 src/view/com/modals/ChangeHandle.tsx:320 src/view/com/modals/InviteCodes.tsx:153 src/view/com/util/forms/PostDropdownBtn.tsx:187 msgid "Copied to clipboard" msgstr "Cรณipeรกilte sa ghearrthaisce" @@ -1235,8 +990,7 @@ msgstr "Cรณipeรกil" msgid "Copy {0}" msgstr "Cรณipeรกil {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:120 src/components/dialogs/Embed.tsx:139 msgid "Copy code" msgstr "Cรณipeรกil an cรณd" @@ -1244,23 +998,19 @@ msgstr "Cรณipeรกil an cรณd" msgid "Copy link to list" msgstr "Cรณipeรกil an nasc leis an liosta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: 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" -#: src/components/dms/MessageMenu.tsx:110 -#: src/components/dms/MessageMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:110 src/components/dms/MessageMenu.tsx:112 msgid "Copy message text" msgstr "Cรณipeรกil tรฉacs na teachtaireachta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: 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/Navigation.tsx:253 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:253 src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "An polasaรญ maidir le cรณipcheart" @@ -1276,12 +1026,15 @@ msgstr "Nรญ fรฉidir an fotha a lรณdรกil" msgid "Could not load list" msgstr "Nรญ fรฉidir an liosta a lรณdรกil" +#: src/components/dms/NewChat.tsx:241 +msgid "Could not load profiles. Please try again later." +msgstr "Nรญorbh fhรฉidir prรณifรญlรญ a lรณdรกil. Bain triail eile as ar ball." + #: src/components/dms/ConvoMenu.tsx:88 msgid "Could not mute chat" msgstr "Nรญor รฉirรญodh ar an gcomhrรก a bhalbhรบ" -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:106 +#: src/view/com/auth/SplashScreen.tsx:57 src/view/com/auth/SplashScreen.web.tsx:106 msgid "Create a new account" msgstr "Cruthaigh cuntas nua" @@ -1293,8 +1046,7 @@ msgstr "Cruthaigh cuntas nua Bluesky" msgid "Create Account" msgstr "Cruthaigh cuntas" -#: src/components/dialogs/Signin.tsx:86 -#: src/components/dialogs/Signin.tsx:88 +#: src/components/dialogs/Signin.tsx:86 src/components/dialogs/Signin.tsx:88 msgid "Create an account" msgstr "Cruthaigh cuntas" @@ -1306,8 +1058,7 @@ msgstr "Cruthaigh abhatรกr nua ina ionad sin" msgid "Create App Password" msgstr "Cruthaigh pasfhocal aipe" -#: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.tsx:48 src/view/com/auth/SplashScreen.web.tsx:97 msgid "Create new account" msgstr "Cruthaigh cuntas nua" @@ -1319,16 +1070,11 @@ msgstr "Cruthaigh tuairisc do {0}" msgid "Created {0}" msgstr "Cruthaรญodh {0}" -#: src/view/com/composer/Composer.tsx:469 -#~ msgid "Creates a card with a thumbnail. The card links to {url}" -#~ msgstr "Cruthaรญonn sรฉ seo cรกrta le mionsamhail. Nascann an cรกrta le {url}." - #: src/screens/Onboarding/index.tsx:26 msgid "Culture" msgstr "Cultรบr" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:97 src/view/com/auth/server-input/index.tsx:99 msgid "Custom" msgstr "Saincheaptha" @@ -1344,8 +1090,7 @@ 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:458 src/view/screens/Settings/index.tsx:484 msgid "Dark" msgstr "Dorcha" @@ -1361,14 +1106,13 @@ msgstr "Tรฉama Dorcha" msgid "Date of birth" msgstr "Dรกta breithe" -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 src/view/screens/Settings/index.tsx:806 msgid "Deactivate account" -msgstr "" +msgstr "Dรญghnรญomhaigh mo chuntas" #: src/view/screens/Settings/index.tsx:818 msgid "Deactivate my account" -msgstr "" +msgstr "Dรญghnรญomhaigh mo chuntas" #: src/view/screens/Settings/index.tsx:873 msgid "Debug Moderation" @@ -1378,10 +1122,7 @@ msgstr "Dรญfhabhtaigh Modhnรณireacht" msgid "Debug panel" msgstr "Painรฉal dรญfhabhtaithe" -#: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 -#: src/view/screens/AppPasswords.tsx:285 -#: src/view/screens/ProfileList.tsx:667 +#: src/components/dms/MessageMenu.tsx:151 src/view/com/util/forms/PostDropdownBtn.tsx:436 src/view/screens/AppPasswords.tsx:285 src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Scrios" @@ -1389,10 +1130,6 @@ msgstr "Scrios" msgid "Delete account" msgstr "Scrios an cuntas" -#: src/view/com/modals/DeleteAccount.tsx:87 -#~ msgid "Delete Account" -#~ msgstr "Scrios an Cuntas" - #: src/view/com/modals/DeleteAccount.tsx:105 msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Scrios Cuntas <0>\"<1>{0}<2>\"" @@ -1405,8 +1142,7 @@ 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:890 src/view/screens/Settings/index.tsx:893 msgid "Delete chat declaration record" msgstr "Scrios taifead dearbhaithe comhrรก" @@ -1434,8 +1170,7 @@ msgstr "Scrios mo chuntas" msgid "Delete My Accountโ€ฆ" msgstr "Scrios mo chuntasโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Scrios an phostรกil" @@ -1459,10 +1194,7 @@ msgstr "Scriosadh an phostรกil." msgid "Deletes the chat declaration record" msgstr "Scriosann sรฉ seo an taifead dearbhaithe comhrรก" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/view/com/modals/CreateOrEditList.tsx:289 src/view/com/modals/CreateOrEditList.tsx:310 src/view/com/modals/EditProfile.tsx:199 src/view/com/modals/EditProfile.tsx:211 msgid "Description" msgstr "Cur sรญos" @@ -1494,20 +1226,7 @@ msgstr "Nรก hรบsรกid 2FA trรญ rรญomhphost" msgid "Disable haptic feedback" msgstr "Nรก hรบsรกid aiseolas haptach" -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable haptics" -#~ msgstr "Nรก hรบsรกid aiseolas haptach" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable vibrations" -#~ msgstr "Nรก hรบsรกid creathadh" - -#: src/lib/moderation/useLabelBehaviorDescription.ts:32 -#: src/lib/moderation/useLabelBehaviorDescription.ts:42 -#: 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/lib/moderation/useLabelBehaviorDescription.ts:32 src/lib/moderation/useLabelBehaviorDescription.ts:42 src/lib/moderation/useLabelBehaviorDescription.ts:68 src/screens/Messages/Settings.tsx:140 src/screens/Messages/Settings.tsx:143 src/screens/Moderation/index.tsx:341 msgid "Disabled" msgstr "Dรญchumasaithe" @@ -1519,13 +1238,11 @@ 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:518 src/screens/Moderation/index.tsx:522 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:74 src/view/com/posts/FollowingEndOfFeed.tsx:75 msgid "Discover new custom feeds" msgstr "Aimsigh sainfhothaรญ nua" @@ -1561,32 +1278,11 @@ msgstr "Luach an Fhearainn" msgid "Domain verified!" msgstr "Fearann dearbhaithe!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/forms/DateField/index.tsx:74 -#: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 -#: src/view/com/auth/server-input/index.tsx:169 -#: src/view/com/auth/server-input/index.tsx:170 -#: 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/components/dialogs/BirthDateSettings.tsx:119 src/components/dialogs/BirthDateSettings.tsx:125 src/components/forms/DateField/index.tsx:74 src/components/forms/DateField/index.tsx:80 src/screens/Onboarding/StepProfile/index.tsx:321 src/screens/Onboarding/StepProfile/index.tsx:324 src/view/com/auth/server-input/index.tsx:169 src/view/com/auth/server-input/index.tsx:170 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 msgid "Done" 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:130 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/UserAddRemoveLists.tsx:108 -#: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 +#: 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:130 src/view/com/modals/Threadgate.tsx:133 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" @@ -1595,8 +1291,7 @@ msgstr "Dรฉanta" msgid "Done{extraText}" msgstr "Dรฉanta{extraText}" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:77 src/view/screens/Settings/ExportCarDialog.tsx:81 msgid "Download CAR file" msgstr "รoslรณdรกil comhad CAR" @@ -1604,10 +1299,6 @@ msgstr "รoslรณdรกil comhad CAR" msgid "Drop to add images" msgstr "Scaoil anseo chun รญomhรกnna a chur leis" -#: 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 "De bharr pholasaรญ Apple, nรญ fรฉidir รกbhar do dhaoine fรกsta ar an nGrรฉasรกn a fhรกil roimh an logรกil isteach a chrรญochnรบ." - #: src/view/com/modals/ChangeHandle.tsx:252 msgid "e.g. alice" msgstr "m.sh. cรกit" @@ -1653,13 +1344,11 @@ msgctxt "action" msgid "Edit" msgstr "Eagar" -#: src/view/com/util/UserAvatar.tsx:312 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:312 src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Cuir an t-abhatรกr in eagar" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/Gallery.tsx:151 src/view/com/modals/EditImage.tsx:208 msgid "Edit image" msgstr "Cuir an รญomhรก seo in eagar" @@ -1671,9 +1360,7 @@ msgstr "Athraigh mionsonraรญ an liosta" msgid "Edit Moderation List" msgstr "Athraigh liosta na modhnรณireachta" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 -#: src/view/screens/SavedFeeds.tsx:93 +#: src/Navigation.tsx:263 src/view/screens/Feeds.tsx:495 src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaรญ" @@ -1681,18 +1368,15 @@ msgstr "Athraigh mo chuid fothaรญ" msgid "Edit my profile" msgstr "Athraigh mo phrรณifรญl" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 msgid "Edit profile" msgstr "Athraigh an phrรณifรญl" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 msgid "Edit Profile" msgstr "Athraigh an Phrรณifรญl" -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 -#: src/view/screens/Feeds.tsx:416 +#: src/view/com/home/HomeHeaderLayout.web.tsx:76 src/view/screens/Feeds.tsx:416 msgid "Edit Saved Feeds" msgstr "Athraigh na fothaรญ sรกbhรกilte" @@ -1712,8 +1396,7 @@ msgstr "Athraigh an cur sรญos ort sa phrรณifรญl" msgid "Education" msgstr "Oideachas" -#: src/screens/Signup/StepInfo/index.tsx:80 -#: src/view/com/modals/ChangeEmail.tsx:136 +#: src/screens/Signup/StepInfo/index.tsx:80 src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Rรญomhphost" @@ -1725,8 +1408,7 @@ msgstr "Nรญl 2FA trรญ rรญomhphost ar fรกil a thuilleadh" msgid "Email address" msgstr "Seoladh rรญomhphoist" -#: src/view/com/modals/ChangeEmail.tsx:54 -#: src/view/com/modals/ChangeEmail.tsx:83 +#: src/view/com/modals/ChangeEmail.tsx:54 src/view/com/modals/ChangeEmail.tsx:83 msgid "Email updated" msgstr "Seoladh rรญomhphoist uasdรกtaithe" @@ -1746,9 +1428,7 @@ msgstr "Rรญomhphost:" msgid "Embed HTML code" msgstr "Leabaigh an cรณd HTML" -#: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/components/dialogs/Embed.tsx:97 src/view/com/util/forms/PostDropdownBtn.tsx:327 src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Leabaigh an phostรกil" @@ -1764,16 +1444,7 @@ msgstr "Cuir {0} amhรกin ar fรกil" msgid "Enable adult content" msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil" -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 -#~ msgid "Enable Adult Content" -#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:NaN -#~ msgid "Enable adult content in your feeds" -#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil i do chuid fothaรญ" - -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:82 src/components/dialogs/EmbedConsent.tsx:89 msgid "Enable external media" msgstr "Cuir meรกin sheachtracha ar fรกil" @@ -1789,9 +1460,7 @@ msgstr "Cuir an socrรบ seo ar siรบl le gan ach freagraรญ i measc na ndaoine a le msgid "Enable this source only" 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/Messages/Settings.tsx:131 src/screens/Messages/Settings.tsx:134 src/screens/Moderation/index.tsx:339 msgid "Enabled" msgstr "Cumasaithe" @@ -1807,8 +1476,7 @@ msgstr "Cuir isteach ainm don phasfhocal aipe seo" msgid "Enter a password" msgstr "Cuir pasfhocal isteach" -#: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 +#: src/components/dialogs/MutedWords.tsx:100 src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Cuir focal na clib isteach" @@ -1832,8 +1500,7 @@ msgstr "Cuir isteach an seoladh rรญomhphoist a dโ€™รบsรกid tรบ le do chuntas a c 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/Login/ForgotPasswordForm.tsx:105 src/screens/Signup/StepInfo/index.tsx:92 msgid "Enter your email address" msgstr "Cuir isteach do sheoladh rรญomhphoist" @@ -1857,8 +1524,7 @@ 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/view/screens/Search/Search.tsx:115 +#: src/screens/Onboarding/StepInterests/index.tsx:192 src/view/screens/Search/Search.tsx:115 msgid "Error:" msgstr "Earrรกid:" @@ -1870,10 +1536,7 @@ msgstr "Chuile dhuine" msgid "Everybody can reply" msgstr "Tig le chuile dhuine freagra a thabhairt" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: 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 "Chuile dhuine" @@ -1901,8 +1564,7 @@ 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:88 src/view/shell/desktop/Search.tsx:215 msgid "Exits inputting search query" msgstr "Fรกgann sรฉ seo an cuardach" @@ -1912,10 +1574,9 @@ msgstr "Taispeรกin an tรฉacs malartach ina iomlรกine" #: src/view/com/notifications/FeedItem.tsx:206 msgid "Expand list of users" -msgstr "" +msgstr "Leathnaigh an liosta รบsรกideoirรญ" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:82 src/view/com/composer/ComposerReplyTo.tsx:85 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" @@ -1931,24 +1592,19 @@ msgstr "รomhรกnna gnรฉasacha." 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/ExportCarDialog.tsx:62 src/view/screens/Settings/index.tsx:797 msgid "Export My Data" msgstr "Easpรณrtรกil mo chuid sonraรญ" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:55 src/components/dialogs/EmbedConsent.tsx:59 msgid "External Media" msgstr "Meรกin sheachtracha" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/components/dialogs/EmbedConsent.tsx:71 src/view/screens/PreferencesExternalEmbeds.tsx:67 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:282 -#: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/Navigation.tsx:282 src/view/screens/PreferencesExternalEmbeds.tsx:53 src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" msgstr "Roghanna maidir le meรกin sheachtracha" @@ -1956,8 +1612,7 @@ msgstr "Roghanna maidir le meรกin sheachtracha" msgid "External media settings" msgstr "Socruithe maidir le meรกin sheachtracha" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:120 src/view/com/modals/AddAppPasswords.tsx:124 msgid "Failed to create app password." msgstr "Teip ar phasfhocal aipe a chruthรบ." @@ -1973,8 +1628,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/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.ios.tsx:196 src/components/dialogs/GifSelect.tsx:212 msgid "Failed to load GIFs" msgstr "Theip ar lรณdรกil na GIFanna" @@ -1982,10 +1636,6 @@ msgstr "Theip ar lรณdรกil na GIFanna" msgid "Failed to load past messages" msgstr "Teip ar theachtaireachtaรญ roimhe seo a lรณdรกil" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:NaN -#~ msgid "Failed to load recommended feeds" -#~ msgstr "Teip ar lรณdรกil na bhfothaรญ molta" - #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Failed to save image: {0}" msgstr "Nรญor sรกbhรกladh an รญomhรก: {0}" @@ -1994,13 +1644,11 @@ msgstr "Nรญor sรกbhรกladh an รญomhรก: {0}" msgid "Failed to send" msgstr "Teip ar sheoladh" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:225 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/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/components/dms/MessagesNUX.tsx:60 src/screens/Messages/Settings.tsx:35 msgid "Failed to update settings" msgstr "Teip ar shocruithe a uasdรกtรบ" @@ -2016,33 +1664,18 @@ msgstr "Fotha le {0}" msgid "Feed offline" msgstr "Fotha as lรญne" -#: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/desktop/RightNav.tsx:66 src/view/shell/Drawer.tsx:344 msgid "Feedback" msgstr "Aiseolas" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 -#: src/view/screens/Profile.tsx:197 -#: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 -#: src/view/shell/Drawer.tsx:493 +#: src/Navigation.tsx:511 src/view/screens/Feeds.tsx:480 src/view/screens/Feeds.tsx:596 src/view/screens/Profile.tsx:197 src/view/shell/desktop/LeftNav.tsx:367 src/view/shell/Drawer.tsx:492 src/view/shell/Drawer.tsx:493 msgid "Feeds" msgstr "Fothaรญ" -#: 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 "Is iad na hรบsรกideoirรญ a chruthaรญonn na fothaรญ le hรกbhar is spรฉis leo a chur ar fรกil. Roghnaigh cรบpla fotha a bhfuil suim agat iontu." - #: src/view/screens/SavedFeeds.tsx:180 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Is sainalgartaim iad na fothaรญ. Cruthaรญonn รบsรกideoirรญ a bhfuil beagรกn taithรญ acu ar chรณdรกil iad. <0/> le tuilleadh eolais a fhรกil." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 -#~ msgid "Feeds can be topical as well!" -#~ msgstr "Is fรฉidir le fothaรญ a bheith bunaithe ar chรบrsaรญ reatha freisin!" - #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" msgstr "รbhar an Chomhaid" @@ -2059,9 +1692,7 @@ msgstr "Scag รณ mo chuid fothaรญ" msgid "Finalizing" msgstr "Ag cur crรญch air" -#: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 src/view/com/posts/FollowingEmptyState.tsx:57 src/view/com/posts/FollowingEndOfFeed.tsx:58 msgid "Find accounts to follow" msgstr "Aimsigh fothaรญ le leanรบint" @@ -2069,18 +1700,6 @@ msgstr "Aimsigh fothaรญ le leanรบint" msgid "Find posts and users on Bluesky" msgstr "Aimsigh postรกlacha agus รบsรกideoirรญ ar Bluesky" -#: src/view/screens/Search/Search.tsx:589 -#~ msgid "Find users on Bluesky" -#~ msgstr "Aimsigh รบsรกideoirรญ ar Bluesky" - -#: src/view/screens/Search/Search.tsx:587 -#~ msgid "Find users with the search tool on the right" -#~ msgstr "Aimsigh รบsรกideoirรญ leis an uirlis chuardaigh ar dheis" - -#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 -#~ msgid "Finding similar accounts..." -#~ msgstr "Cuntais eile atรก cosรบil leis seo รก n-aimsiรบ..." - #: src/view/screens/PreferencesFollowingFeed.tsx:110 msgid "Fine-tune the content you see on your Following feed." msgstr "Mionathraigh an t-รกbhar a fheiceann tรบ ar an bhfotha Following." @@ -2101,16 +1720,11 @@ msgstr "Solรบbtha" msgid "Flip horizontal" msgstr "Iompaigh go cothromรกnach รฉ" -#: src/view/com/modals/EditImage.tsx:121 -#: src/view/com/modals/EditImage.tsx:288 +#: src/view/com/modals/EditImage.tsx:121 src/view/com/modals/EditImage.tsx:288 msgid "Flip vertically" msgstr "Iompaigh go hingearach รฉ" -#: src/components/ProfileHoverCard/index.web.tsx:412 -#: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 +#: src/components/ProfileHoverCard/index.web.tsx:412 src/components/ProfileHoverCard/index.web.tsx:423 src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 src/view/com/post-thread/PostThreadFollowBtn.tsx:146 src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" msgstr "Lean" @@ -2119,36 +1733,22 @@ msgctxt "action" msgid "Follow" msgstr "Lean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Lean {0}" #: src/view/com/posts/AviFollowButton.tsx:71 msgid "Follow {name}" -msgstr "" +msgstr "Lean {name}" -#: src/view/com/profile/ProfileMenu.tsx:244 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:244 src/view/com/profile/ProfileMenu.tsx:255 msgid "Follow Account" msgstr "Lean an cuntas seo" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 -#~ msgid "Follow All" -#~ msgstr "Lean iad uile" - #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" msgstr "Lean Ar Ais" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 -#~ msgid "Follow selected accounts and continue to the next step" -#~ msgstr "Lean na cuntais roghnaithe agus tรฉigh ar aghaidh go dtรญ an chรฉad chรฉim eile" - -#: 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 "Lean cรบpla cuntas mar thosรบ. Tig linn nรญos mรณ รบsรกideoirรญ a mholadh duit a mbeadh suim agat iontu." - #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Leanta ag {0}" @@ -2165,19 +1765,11 @@ msgstr "Cuntais a leanann tรบ amhรกin" msgid "followed you" msgstr "โ€” lean sรฉ/sรญ thรบ" -#: src/view/com/profile/ProfileFollowers.tsx:104 -#: src/view/screens/ProfileFollowers.tsx:25 +#: src/view/com/profile/ProfileFollowers.tsx:104 src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Leantรณirรญ" -#: src/components/ProfileHoverCard/index.web.tsx:411 -#: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 -#: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 -#: src/view/screens/ProfileFollows.tsx:25 -#: src/view/screens/SavedFeeds.tsx:415 +#: src/components/ProfileHoverCard/index.web.tsx:411 src/components/ProfileHoverCard/index.web.tsx:422 src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 src/view/com/post-thread/PostThreadFollowBtn.tsx:149 src/view/com/profile/ProfileFollows.tsx:104 src/view/screens/Feeds.tsx:683 src/view/screens/ProfileFollows.tsx:25 src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "ร leanรบint" @@ -2187,17 +1779,13 @@ msgstr "Ag leanรบint {0}" #: src/view/com/posts/AviFollowButton.tsx:53 msgid "Following {name}" -msgstr "" +msgstr "Ag leanacht {name}" #: src/view/screens/Settings/index.tsx:573 msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/Navigation.tsx:269 src/view/com/home/HomeHeaderLayout.web.tsx:64 src/view/com/home/HomeHeaderLayoutMobile.tsx:87 src/view/screens/PreferencesFollowingFeed.tsx:103 src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" @@ -2221,8 +1809,7 @@ msgstr "Ar chรบiseanna slรกndรกla, beidh orainn cรณd dearbhaithe a chur chuig do 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รบ." -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:129 src/screens/Login/index.tsx:144 msgid "Forgot Password" msgstr "Pasfhocal dearmadta" @@ -2255,8 +1842,7 @@ msgstr "Gailearaรญ" msgid "Get started" msgstr "Tรบs maith" -#: src/view/com/modals/VerifyEmail.tsx:197 -#: src/view/com/modals/VerifyEmail.tsx:199 +#: src/view/com/modals/VerifyEmail.tsx:197 src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" msgstr "Ar aghaidh leat anois!" @@ -2268,32 +1854,15 @@ msgstr "Tabhair gnรบis do do phrรณifรญl" msgid "Glaring violations of law or terms of service" 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:82 -#: src/view/com/auth/LoggedOut.tsx:83 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 -#: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:127 +#: src/components/moderation/ScreenHider.tsx:151 src/components/moderation/ScreenHider.tsx:160 src/view/com/auth/LoggedOut.tsx:82 src/view/com/auth/LoggedOut.tsx:83 src/view/screens/NotFound.tsx:55 src/view/screens/ProfileFeed.tsx:111 src/view/screens/ProfileList.tsx:970 src/view/shell/desktop/LeftNav.tsx:127 msgid "Go back" msgstr "Ar ais" -#: src/components/Error.tsx:103 -#: src/screens/Profile/ErrorState.tsx:62 -#: src/screens/Profile/ErrorState.tsx:66 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 -#: src/view/screens/ProfileList.tsx:975 +#: src/components/Error.tsx:103 src/screens/Profile/ErrorState.tsx:62 src/screens/Profile/ErrorState.tsx:66 src/view/screens/NotFound.tsx:54 src/view/screens/ProfileFeed.tsx:116 src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Ar ais" -#: src/components/dms/ReportDialog.tsx:152 -#: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 -#: src/screens/Onboarding/Layout.tsx:102 -#: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:187 +#: src/components/dms/ReportDialog.tsx:152 src/components/ReportDialog/SelectReportOptionView.tsx:77 src/components/ReportDialog/SubmitView.tsx:105 src/screens/Onboarding/Layout.tsx:102 src/screens/Onboarding/Layout.tsx:191 src/screens/Signup/index.tsx:187 msgid "Go back to previous step" msgstr "Fill ar an gcรฉim roimhe seo" @@ -2305,16 +1874,11 @@ msgstr "Abhaile" msgid "Go Home" msgstr "Abhaile" -#: src/view/screens/Search/Search.tsx:NaN -#~ msgid "Go to @{queryMaybeHandle}" -#~ msgstr "Tรฉigh go dtรญ @{queryMaybeHandle}" - #: src/screens/Messages/List/ChatListItem.tsx:208 msgid "Go to conversation with {0}" msgstr "Tรฉigh go comhrรก le {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/view/com/modals/ChangePassword.tsx:168 +#: src/screens/Login/ForgotPasswordForm.tsx:172 src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Tรฉigh go dtรญ an chรฉad rud eile" @@ -2354,8 +1918,7 @@ msgstr "Haischlib: #{tag}" msgid "Having trouble?" msgstr "Fadhb ort?" -#: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/desktop/RightNav.tsx:95 src/view/shell/Drawer.tsx:354 msgid "Help" msgstr "Cรบnamh" @@ -2363,30 +1926,11 @@ msgstr "Cรบnamh" msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Tabhair le fios dรบinn nach bot thรบ trรญ pictiรบr a uaslรณdรกil nรณ abhatรกr a chruthรบ." -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 -#~ msgid "Here are some accounts for you to follow" -#~ msgstr "Seo cรบpla cuntas le leanรบint duit" - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 -#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." -#~ msgstr "Seo cรบpla fotha a bhfuil rรกchairt orthu. Is fรฉidir leat an mรฉid acu is mian leat a leanรบint." - -#: 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 "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:204 msgid "Here is your app password." msgstr "Seo รฉ do phasfhocal aipe." -#: src/components/moderation/ContentHider.tsx:116 -#: src/components/moderation/LabelPreference.tsx:134 -#: src/components/moderation/PostHider.tsx:121 -#: src/lib/moderation/useLabelBehaviorDescription.ts:15 -#: 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:445 +#: src/components/moderation/ContentHider.tsx:116 src/components/moderation/LabelPreference.tsx:134 src/components/moderation/PostHider.tsx:121 src/lib/moderation/useLabelBehaviorDescription.ts:15 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:445 msgid "Hide" msgstr "Cuir i bhfolach" @@ -2395,13 +1939,11 @@ msgctxt "action" msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: 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" -#: src/components/moderation/ContentHider.tsx:68 -#: src/components/moderation/PostHider.tsx:78 +#: src/components/moderation/ContentHider.tsx:68 src/components/moderation/PostHider.tsx:78 msgid "Hide the content" msgstr "Cuir an t-รกbhar seo i bhfolach" @@ -2441,11 +1983,7 @@ 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:501 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 -#: src/view/shell/Drawer.tsx:425 +#: src/Navigation.tsx:501 src/view/shell/bottom-bar/BottomBar.tsx:159 src/view/shell/desktop/LeftNav.tsx:335 src/view/shell/Drawer.tsx:424 src/view/shell/Drawer.tsx:425 msgid "Home" msgstr "Baile" @@ -2453,10 +1991,7 @@ msgstr "Baile" msgid "Host:" msgstr "ร“stach:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:157 -#: src/screens/Signup/StepInfo/index.tsx:40 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:89 src/screens/Login/LoginForm.tsx:157 src/screens/Signup/StepInfo/index.tsx:40 src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Solรกthraรญ รณstรกla" @@ -2464,9 +1999,7 @@ msgstr "Solรกthraรญ รณstรกla" msgid "How should we open this link?" msgstr "Conas ar cheart dรบinn an nasc seo a oscailt?" -#: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/com/modals/VerifyEmail.tsx:222 src/view/screens/Settings/DisableEmail2FADialog.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:135 msgid "I have a code" msgstr "Tรก cรณd agam" @@ -2478,8 +2011,7 @@ msgstr "Tรก cรณd dearbhaithe agam" msgid "I have my own domain" msgstr "Tรก fearann de mo chuid fรฉin agam" -#: src/components/dms/BlockedByListDialog.tsx:56 -#: src/components/dms/ReportConversationPrompt.tsx:22 +#: src/components/dms/BlockedByListDialog.tsx:56 src/components/dms/ReportConversationPrompt.tsx:22 msgid "I understand" msgstr "Tuigim" @@ -2509,7 +2041,7 @@ msgstr "Mรกs mian leat do phasfhocal a athrรบ, seolfaimid cรณd duit chun dearbh #: 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 "Mรก tรก sรฉ i gceist agat do hanla nรณ rรญomhphost a athrรบ, dรฉan sin sula ndรฉanann tรบ dรญghnรญomhรบ." #: src/lib/moderation/useReportOptions.ts:37 msgid "Illegal and Urgent" @@ -2579,8 +2111,7 @@ msgstr "Cuir isteach do leasainm" msgid "Introducing Direct Messages" msgstr "Ag cur Teachtaireachtaรญ Dรญreacha in aithne duit" -#: src/screens/Login/LoginForm.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 +#: src/screens/Login/LoginForm.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Tรก an cรณd 2FA seo neamhbhailรญ." @@ -2612,10 +2143,6 @@ msgstr "Cรณid chuiridh: {0} ar fรกil" msgid "Invite codes: 1 available" msgstr "Cรณid chuiridh: 1 ar fรกil" -#: src/screens/Onboarding/StepFollowingFeed.tsx:65 -#~ 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/view/com/auth/SplashScreen.web.tsx:157 msgid "Jobs" msgstr "Jabanna" @@ -2624,10 +2151,6 @@ msgstr "Jabanna" msgid "Journalism" msgstr "Iriseoireacht" -#: src/components/moderation/LabelsOnMe.tsx:59 -#~ msgid "label has been placed on this {labelTarget}" -#~ msgstr "cuireadh lipรฉad ar an {labelTarget} seo" - #: src/components/moderation/ContentHider.tsx:147 msgid "Labeled by {0}." msgstr "Lipรฉad curtha ag {0}." @@ -2644,10 +2167,6 @@ msgstr "Lipรฉid" msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nรณtaรญ faoi รบsรกideoirรญ nรณ รกbhar is ea lipรฉid. Is fรฉidir รบsรกid a bhaint astu leis an lรญonra a cheilt, a chatagรณiriรบ, agus fainic a chur air." -#: src/components/moderation/LabelsOnMe.tsx:61 -#~ msgid "labels have been placed on this {labelTarget}" -#~ msgstr "cuireadh lipรฉid ar an {labelTarget}" - #: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Lipรฉid ar do chuntas" @@ -2664,8 +2183,7 @@ msgstr "Rogha teanga" msgid "Language settings" msgstr "Socruithe teanga" -#: src/Navigation.tsx:151 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:151 src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Socruithe teanga" @@ -2673,8 +2191,7 @@ msgstr "Socruithe teanga" msgid "Languages" msgstr "Teangacha" -#: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/screens/Hashtag.tsx:99 src/view/screens/Search/Search.tsx:376 msgid "Latest" msgstr "Is Dรฉanaรญ" @@ -2682,13 +2199,11 @@ msgstr "Is Dรฉanaรญ" msgid "Learn More" msgstr "Le tuilleadh a fhoghlaim" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:66 src/components/moderation/ContentHider.tsx:131 msgid "Learn more about the moderation applied to this content." msgstr "Foghlaim nรญos mรณ faoin modhnรณireacht a dhรฉantar ar an รกbhar seo." -#: src/components/moderation/PostHider.tsx:99 -#: src/components/moderation/ScreenHider.tsx:125 +#: src/components/moderation/PostHider.tsx:99 src/components/moderation/ScreenHider.tsx:125 msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" @@ -2704,16 +2219,11 @@ msgstr "Tuilleadh eolais." msgid "Leave" msgstr "ร‰irigh as" -#: src/components/dms/MessagesListBlockedFooter.tsx:66 -#: src/components/dms/MessagesListBlockedFooter.tsx:73 +#: src/components/dms/MessagesListBlockedFooter.tsx:66 src/components/dms/MessagesListBlockedFooter.tsx:73 msgid "Leave chat" msgstr "ร‰irigh as an gcomhrรก" -#: src/components/dms/ConvoMenu.tsx:138 -#: src/components/dms/ConvoMenu.tsx:141 -#: src/components/dms/ConvoMenu.tsx:208 -#: src/components/dms/ConvoMenu.tsx:211 -#: src/components/dms/LeaveConvoPrompt.tsx:46 +#: src/components/dms/ConvoMenu.tsx:138 src/components/dms/ConvoMenu.tsx:141 src/components/dms/ConvoMenu.tsx:208 src/components/dms/ConvoMenu.tsx:211 src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Leave conversation" msgstr "ร‰irigh as an gcomhrรก" @@ -2733,8 +2243,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/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:130 src/screens/Login/index.tsx:145 msgid "Let's get your password reset!" msgstr "Socraรญmis do phasfhocal arรญs!" @@ -2746,39 +2255,18 @@ msgstr "Ar aghaidh linn!" msgid "Light" msgstr "Sorcha" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Like" -#~ msgstr "Mol" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:570 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 src/view/screens/ProfileFeed.tsx:570 msgid "Like this feed" msgstr "Mol an fotha seo" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/components/LikesDialog.tsx:87 src/Navigation.tsx:208 src/Navigation.tsx:213 msgid "Liked by" msgstr "Molta ag" -#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/PostLikedBy.tsx:27 -#: src/view/screens/ProfileFeedLikedBy.tsx:27 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 src/view/screens/PostLikedBy.tsx:27 src/view/screens/ProfileFeedLikedBy.tsx:27 msgid "Liked By" msgstr "Molta ag" -#: src/view/com/feeds/FeedSourceCard.tsx:268 -#~ msgid "Liked by {0} {1}" -#~ msgstr "Molta ag {0} {1}" - -#: src/components/LabelingServiceCard/index.tsx:72 -#~ msgid "Liked by {count} {0}" -#~ msgstr "Molta ag {count} {0}" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:NaN -#~ msgid "Liked by {likeCount} {0}" -#~ msgstr "Molta ag {likeCount} {0}" - #: src/view/com/notifications/FeedItem.tsx:176 msgid "liked your custom feed" msgstr "a mhol do shainfhotha" @@ -2831,12 +2319,7 @@ msgstr "Liosta dรญbhlocรกilte" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe nรญos mรณ" -#: src/Navigation.tsx:121 -#: src/view/screens/Profile.tsx:192 -#: src/view/screens/Profile.tsx:198 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 -#: src/view/shell/Drawer.tsx:509 +#: src/Navigation.tsx:121 src/view/screens/Profile.tsx:192 src/view/screens/Profile.tsx:198 src/view/shell/desktop/LeftNav.tsx:373 src/view/shell/Drawer.tsx:508 src/view/shell/Drawer.tsx:509 msgid "Lists" msgstr "Liostaรญ" @@ -2848,10 +2331,7 @@ msgstr "Liostaรญ a bhlocรกlann an t-รบsรกideoir seo:" 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:492 -#: src/view/screens/ProfileList.tsx:749 +#: src/screens/Profile/Sections/Feed.tsx:86 src/view/com/feeds/FeedPage.tsx:136 src/view/screens/ProfileFeed.tsx:492 src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Lรณdรกil postรกlacha nua" @@ -2863,15 +2343,11 @@ msgstr "Ag lรณdรกil โ€ฆ" msgid "Log" msgstr "Logleabhar" -#: src/screens/Deactivated.tsx:214 -#: src/screens/Deactivated.tsx:220 +#: src/screens/Deactivated.tsx:214 src/screens/Deactivated.tsx:220 msgid "Log in or sign up" -msgstr "" +msgstr "Logรกil isteach nรณ clรกraigh le Bluesky" -#: src/screens/SignupQueued.tsx:155 -#: src/screens/SignupQueued.tsx:158 -#: src/screens/SignupQueued.tsx:184 -#: src/screens/SignupQueued.tsx:187 +#: src/screens/SignupQueued.tsx:155 src/screens/SignupQueued.tsx:158 src/screens/SignupQueued.tsx:184 src/screens/SignupQueued.tsx:187 msgid "Log out" msgstr "Logรกil amach" @@ -2911,13 +2387,11 @@ msgstr "Bรญ cinnte go bhfuil tรบ ag iarraidh cuairt a thabhairt ar an รกit sin!" msgid "Manage your muted words and tags" msgstr "Bainistigh do chuid clibeanna agus na focail a chuir tรบ i bhfolach" -#: src/components/dms/ConvoMenu.tsx:151 -#: src/components/dms/ConvoMenu.tsx:158 +#: src/components/dms/ConvoMenu.tsx:151 src/components/dms/ConvoMenu.tsx:158 msgid "Mark as read" msgstr "Marcรกil lรฉite" -#: src/view/screens/AccessibilitySettings.tsx:89 -#: src/view/screens/Profile.tsx:195 +#: src/view/screens/AccessibilitySettings.tsx:89 src/view/screens/Profile.tsx:195 msgid "Media" msgstr "Meรกin" @@ -2929,8 +2403,7 @@ msgstr "รบsรกideoirรญ luaite" msgid "Mentioned users" msgstr "รšsรกideoirรญ luaite" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:90 src/view/screens/Search/Search.tsx:713 msgid "Menu" msgstr "Clรกr" @@ -2938,8 +2411,7 @@ msgstr "Clรกr" msgid "Message {0}" msgstr "Teachtaireacht {0}" -#: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/components/dms/MessageMenu.tsx:72 src/screens/Messages/List/ChatListItem.tsx:154 msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" @@ -2951,8 +2423,7 @@ msgstr "Teachtaireacht รณn bhfreastalaรญ: {0}" msgid "Message input field" msgstr "Rรฉimse ionchur teachtaireachtaรญ" -#: src/screens/Messages/Conversation/MessageInput.tsx:70 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:49 +#: src/screens/Messages/Conversation/MessageInput.tsx:70 src/screens/Messages/Conversation/MessageInput.web.tsx:49 msgid "Message is too long" msgstr "Tรก an teachtaireacht rรณfhada" @@ -2960,10 +2431,7 @@ msgstr "Tรก an teachtaireacht rรณfhada" msgid "Message settings" msgstr "Socruithe teachtaireachta" -#: src/Navigation.tsx:521 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:521 src/screens/Messages/List/index.tsx:164 src/screens/Messages/List/index.tsx:246 src/screens/Messages/List/index.tsx:317 msgid "Messages" msgstr "Teachtaireachtaรญ" @@ -2971,9 +2439,7 @@ msgstr "Teachtaireachtaรญ" msgid "Misleading Account" msgstr "Cuntas atรก Mรญthreorach" -#: src/Navigation.tsx:126 -#: src/screens/Moderation/index.tsx:104 -#: src/view/screens/Settings/index.tsx:561 +#: src/Navigation.tsx:126 src/screens/Moderation/index.tsx:104 src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Modhnรณireacht" @@ -2981,8 +2447,7 @@ msgstr "Modhnรณireacht" msgid "Moderation details" msgstr "Mionsonraรญ modhnรณireachta" -#: src/view/com/lists/ListCard.tsx:95 -#: src/view/com/modals/UserAddRemoveLists.tsx:217 +#: src/view/com/lists/ListCard.tsx:95 src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" msgstr "Liosta modhnรณireachta le {0}" @@ -2990,9 +2455,7 @@ msgstr "Liosta modhnรณireachta le {0}" msgid "Moderation list by <0/>" msgstr "Liosta modhnรณireachta le <0/>" -#: src/view/com/lists/ListCard.tsx:93 -#: src/view/com/modals/UserAddRemoveLists.tsx:215 -#: src/view/screens/ProfileList.tsx:841 +#: src/view/com/lists/ListCard.tsx:93 src/view/com/modals/UserAddRemoveLists.tsx:215 src/view/screens/ProfileList.tsx:841 msgid "Moderation list by you" msgstr "Liosta modhnรณireachta leat" @@ -3008,8 +2471,7 @@ msgstr "Liosta modhnรณireachta uasdรกtaithe" msgid "Moderation lists" msgstr "Liostaรญ modhnรณireachta" -#: src/Navigation.tsx:131 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:131 src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liostaรญ modhnรณireachta" @@ -3025,8 +2487,7 @@ msgstr "Stรกdais modhnรณireachta" msgid "Moderation tools" msgstr "Uirlisรญ modhnรณireachta" -#: src/components/moderation/ModerationDetailsDialog.tsx:48 -#: src/lib/moderation/useModerationCauseDescription.ts:42 +#: src/components/moderation/ModerationDetailsDialog.tsx:48 src/lib/moderation/useModerationCauseDescription.ts:42 msgid "Moderator has chosen to set a general warning on the content." msgstr "Chuir an modhnรณir rabhadh ginearรกlta ar an รกbhar." @@ -3054,8 +2515,7 @@ msgstr "Cuir i bhfolach" msgid "Mute {truncatedTag}" msgstr "Cuir {truncatedTag} i bhfolach" -#: src/view/com/profile/ProfileMenu.tsx:281 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:281 src/view/com/profile/ProfileMenu.tsx:288 msgid "Mute Account" msgstr "Cuir an cuntas i bhfolach" @@ -3067,8 +2527,7 @@ msgstr "Cuir na cuntais i bhfolach" msgid "Mute all {displayTag} posts" msgstr "Cuir gach postรกil {displayTag} i bhfolach" -#: src/components/dms/ConvoMenu.tsx:172 -#: src/components/dms/ConvoMenu.tsx:178 +#: src/components/dms/ConvoMenu.tsx:172 src/components/dms/ConvoMenu.tsx:178 msgid "Mute conversation" msgstr "Balbhaigh an comhrรก" @@ -3096,13 +2555,11 @@ 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:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: 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:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: 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" @@ -3114,8 +2571,7 @@ msgstr "Curtha i bhfolach" msgid "Muted accounts" msgstr "Cuntais a cuireadh i bhfolach" -#: src/Navigation.tsx:136 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:136 src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Cuntais a Cuireadh i bhFolach" @@ -3135,8 +2591,7 @@ msgstr "Focail โŠ clibeanna a cuireadh i bhfolach" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Tรก an cur i bhfolach prรญobhรกideach. Is fรฉidir leis na cuntais a chuir tรบ i bhfolach do chuid postรกlacha a fheiceรกil agus is fรฉidir leo scrรญobh chugat ach nรญ fheicfidh tรบ a gcuid postรกlacha eile nรก aon fhรณgraรญ uathu." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:35 src/components/dialogs/BirthDateSettings.tsx:38 msgid "My Birthday" msgstr "Mo Bhreithlรก" @@ -3156,8 +2611,7 @@ msgstr "Na fothaรญ a shรกbhรกil mรฉ" msgid "My Saved Feeds" msgstr "Na Fothaรญ a Shรกbhรกil Mรฉ" -#: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/AddAppPasswords.tsx:174 src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Ainm" @@ -3165,9 +2619,7 @@ msgstr "Ainm" msgid "Name is required" msgstr "Tรก an t-ainm riachtanach" -#: src/lib/moderation/useReportOptions.ts:58 -#: src/lib/moderation/useReportOptions.ts:92 -#: src/lib/moderation/useReportOptions.ts:100 +#: src/lib/moderation/useReportOptions.ts:58 src/lib/moderation/useReportOptions.ts:92 src/lib/moderation/useReportOptions.ts:100 msgid "Name or Description Violates Community Standards" msgstr "Sรกraรญonn an tAinm nรณ an Cur Sรญos Caighdeรกin an Phobail" @@ -3175,9 +2627,7 @@ msgstr "Sรกraรญonn an tAinm nรณ an Cur Sรญos Caighdeรกin an Phobail" msgid "Nature" msgstr "Nรกdรบr" -#: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:309 -#: src/view/com/modals/ChangePassword.tsx:169 +#: src/screens/Login/ForgotPasswordForm.tsx:173 src/screens/Login/LoginForm.tsx:309 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" @@ -3189,10 +2639,6 @@ msgstr "Tรฉann sรฉ seo chuig do phrรณifรญl" msgid "Need to report a copyright violation?" msgstr "An bhfuil tรบ ag iarraidh sรกrรบ cรณipchirt a thuairisciรบ?" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN -#~ 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:152 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." @@ -3210,9 +2656,7 @@ msgstr "Nua" msgid "New" msgstr "Nua" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/components/dms/dialogs/NewChatDialog.tsx:52 src/screens/Messages/List/index.tsx:331 src/screens/Messages/List/index.tsx:338 msgid "New chat" msgstr "Comhrรก nua" @@ -3237,13 +2681,7 @@ msgctxt "action" msgid "New post" msgstr "Postรกil nua" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 -#: src/view/screens/Profile.tsx:464 -#: src/view/screens/ProfileFeed.tsx:426 -#: src/view/screens/ProfileList.tsx:201 -#: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:271 +#: src/view/screens/Feeds.tsx:627 src/view/screens/Notifications.tsx:177 src/view/screens/Profile.tsx:464 src/view/screens/ProfileFeed.tsx:426 src/view/screens/ProfileList.tsx:201 src/view/screens/ProfileList.tsx:229 src/view/shell/desktop/LeftNav.tsx:271 msgid "New post" msgstr "Postรกil nua" @@ -3264,38 +2702,19 @@ msgstr "Na freagraรญ is dรฉanaรญ ar dtรบs" msgid "News" msgstr "Nuacht" -#: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:308 -#: src/screens/Login/LoginForm.tsx:315 -#: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:220 -#: src/view/com/modals/ChangePassword.tsx:254 -#: src/view/com/modals/ChangePassword.tsx:256 +#: src/screens/Login/ForgotPasswordForm.tsx:143 src/screens/Login/ForgotPasswordForm.tsx:150 src/screens/Login/LoginForm.tsx:308 src/screens/Login/LoginForm.tsx:315 src/screens/Login/SetNewPasswordForm.tsx:174 src/screens/Login/SetNewPasswordForm.tsx:180 src/screens/Signup/index.tsx:220 src/view/com/modals/ChangePassword.tsx:254 src/view/com/modals/ChangePassword.tsx:256 msgid "Next" msgstr "Ar aghaidh" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 -#~ msgctxt "action" -#~ msgid "Next" -#~ msgstr "Ar aghaidh" - #: src/view/com/lightbox/Lightbox.web.tsx:169 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: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 msgid "No" msgstr "Nรญl" -#: src/view/screens/ProfileFeed.tsx:559 -#: src/view/screens/ProfileList.tsx:823 +#: src/view/screens/ProfileFeed.tsx:559 src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Gan chur sรญos" @@ -3303,8 +2722,7 @@ msgstr "Gan chur sรญos" msgid "No DNS Panel" msgstr "Gan Phainรฉal DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.ios.tsx:202 src/components/dialogs/GifSelect.tsx:218 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." @@ -3328,15 +2746,11 @@ msgstr "Nรญl aon chomhrรกite eile le taispeรกint" msgid "No notifications yet!" msgstr "Nรญl aon fhรณgra ann fรณs!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/components/dms/MessagesNUX.tsx:149 src/components/dms/MessagesNUX.tsx:152 src/screens/Messages/Settings.tsx:93 src/screens/Messages/Settings.tsx:96 msgid "No one" msgstr "Duine ar bith" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" msgstr "Gan torthaรญ" @@ -3352,19 +2766,15 @@ msgstr "Gan torthaรญ" msgid "No results found for \"{query}\"" msgstr "Gan torthaรญ ar โ€œ{query}โ€" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/com/modals/ListAddRemoveUsers.tsx:127 src/view/screens/Search/Search.tsx:296 src/view/screens/Search/Search.tsx:335 msgid "No results found for {query}" msgstr "Gan torthaรญ ar {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.ios.tsx:200 src/components/dialogs/GifSelect.tsx:216 msgid "No search results found for \"{search}\"." msgstr "Gan torthaรญ ar \"{search}\"." -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:105 src/components/dialogs/EmbedConsent.tsx:112 msgid "No thanks" msgstr "Nรญor mhaith liom รฉ sin." @@ -3376,8 +2786,7 @@ msgstr "Duine ar bith" msgid "Nobody can reply" msgstr "Nรญl cead ag รฉinne freagra a thabhairt" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:79 src/components/LikesDialog.tsx:99 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nรญor mhol รฉinne fรณs รฉ. Ar cheart duit tosรบ?" @@ -3385,23 +2794,15 @@ msgstr "Nรญor mhol รฉinne fรณs รฉ. Ar cheart duit tosรบ?" msgid "Non-sexual Nudity" msgstr "Lomnochtacht Neamhghnรฉasach" -#: src/view/com/modals/SelfLabel.tsx:135 -#~ msgid "Not Applicable." -#~ msgstr "Nรญ bhaineann sรฉ sin le hรกbhar." - -#: src/Navigation.tsx:116 -#: src/view/screens/Profile.tsx:100 +#: src/Navigation.tsx:116 src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Nรญ bhfuarthas รฉ sin" -#: src/view/com/modals/VerifyEmail.tsx:254 -#: src/view/com/modals/VerifyEmail.tsx:260 +#: src/view/com/modals/VerifyEmail.tsx:254 src/view/com/modals/VerifyEmail.tsx:260 msgid "Not right now" msgstr "Nรญ anois" -#: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/profile/ProfileMenu.tsx:370 src/view/com/util/forms/PostDropdownBtn.tsx:459 src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "Nรณta faoi roinnt" @@ -3421,13 +2822,7 @@ msgstr "Fuaimeanna fรณgra" msgid "Notification Sounds" msgstr "Fuaimeanna Fรณgra" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:350 -#: src/view/shell/Drawer.tsx:456 -#: src/view/shell/Drawer.tsx:457 +#: src/Navigation.tsx:516 src/view/screens/Notifications.tsx:126 src/view/screens/Notifications.tsx:154 src/view/shell/bottom-bar/BottomBar.tsx:227 src/view/shell/desktop/LeftNav.tsx:350 src/view/shell/Drawer.tsx:456 src/view/shell/Drawer.tsx:457 msgid "Notifications" msgstr "Fรณgraรญ" @@ -3443,17 +2838,11 @@ msgstr "Lomnochtacht" msgid "Nudity or adult content not labeled as such" msgstr "Lomnochtacht nรณ รกbhar do dhaoine fรกsta nach bhfuil an lipรฉad sin air" -#: src/screens/Signup/index.tsx:145 -#~ msgid "of" -#~ msgstr "de" - #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" msgstr "As" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:255 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.ios.tsx:237 src/components/dialogs/GifSelect.tsx:255 src/view/com/util/ErrorBoundary.tsx:55 msgid "Oh no!" msgstr "รšps!" @@ -3497,9 +2886,7 @@ msgstr "Nรญl ann ach litreacha, uimhreacha, agus fleiscรญnรญ" msgid "Oops, something went wrong!" msgstr "รšps! Theip ar rud รฉigin!" -#: src/components/Lists.tsx:191 -#: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:100 +#: src/components/Lists.tsx:191 src/view/screens/AppPasswords.tsx:69 src/view/screens/Profile.tsx:100 msgid "Oops!" msgstr "รšps!" @@ -3509,19 +2896,17 @@ msgstr "Oscail" #: src/view/com/posts/AviFollowButton.tsx:89 msgid "Open {name} profile shortcut menu" -msgstr "" +msgstr "Oscail roghchlรกr giorrรบchรกin phrรณifรญl {name}" #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Open avatar creator" msgstr "Oscail an cruthaitheoir abhatรกir" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:214 src/screens/Messages/List/ChatListItem.tsx:215 msgid "Open conversation options" msgstr "Oscail na roghanna comhrรก" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:600 src/view/com/composer/Composer.tsx:601 msgid "Open emoji picker" msgstr "Oscail roghnรณir na n-emoji" @@ -3549,8 +2934,7 @@ msgstr "Oscail an nascleanรบint" msgid "Open post options menu" msgstr "Oscail roghchlรกr na bpostรกlacha" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:860 src/view/screens/Settings/index.tsx:870 msgid "Open storybook page" msgstr "Oscail leathanach an Storybook" @@ -3570,10 +2954,6 @@ msgstr "Osclaรญonn sรฉ seo na socruithe inrochtaineachta" msgid "Opens additional details for a debug entry" msgstr "Osclaรญonn sรฉ seo tuilleadh sonraรญ le haghaidh iontrรกil dรญfhabhtaithe" -#: src/view/com/notifications/FeedItem.tsx:349 -#~ msgid "Opens an expanded list of users in this notification" -#~ msgstr "Osclaรญonn sรฉ seo liosta mรฉadaithe dโ€™รบsรกideoirรญ san fhรณgra seo" - #: src/view/com/composer/photos/OpenCameraBtn.tsx:74 msgid "Opens camera on device" msgstr "Osclaรญonn sรฉ seo an ceamara ar an nglรฉas" @@ -3598,13 +2978,11 @@ msgstr "Osclaรญonn sรฉ seo gailearaรญ na ngrianghraf ar an nglรฉas" msgid "Opens external embeds settings" msgstr "Osclaรญonn sรฉ seo na socruithe le haghaidh leabuithe seachtracha" -#: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: 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 "Osclaรญonn sรฉ seo an prรณiseas le cuntas nua Bluesky a chruthรบ" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: 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 "Osclaรญonn sรฉ seo an sรญniรบ isteach ar an gcuntas Bluesky atรก agat cheana fรฉin" @@ -3618,7 +2996,7 @@ msgstr "Osclaรญonn sรฉ seo liosta na gcรณd cuiridh" #: src/view/screens/Settings/index.tsx:808 msgid "Opens modal for account deactivation confirmation" -msgstr "" +msgstr "Osclaรญonn sรฉ seo fuinneog chun dรญghnรญomhรบ an chuntais a dhearbhรบ" #: src/view/screens/Settings/index.tsx:830 msgid "Opens modal for account deletion confirmation. Requires email code" @@ -3652,8 +3030,7 @@ msgstr "Osclaรญonn sรฉ seo socruithe na modhnรณireachta" msgid "Opens password reset form" msgstr "Osclaรญonn sรฉ seo an fhoirm leis an bpasfhocal a athrรบ" -#: src/view/com/home/HomeHeaderLayout.web.tsx:77 -#: src/view/screens/Feeds.tsx:417 +#: src/view/com/home/HomeHeaderLayout.web.tsx:77 src/view/screens/Feeds.tsx:417 msgid "Opens screen to edit Saved Feeds" msgstr "Osclaรญonn sรฉ seo an scรกileรกn leis na fothaรญ sรกbhรกilte a athrรบ" @@ -3673,8 +3050,7 @@ msgstr "Osclaรญonn sรฉ seo roghanna don fhotha Following" msgid "Opens the linked website" msgstr "Osclaรญonn sรฉ seo an suรญomh grรฉasรกin atรก nasctha" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:861 src/view/screens/Settings/index.tsx:871 msgid "Opens the storybook page" msgstr "Osclaรญonn sรฉ seo leathanach an Storybook" @@ -3686,17 +3062,15 @@ msgstr "Osclaรญonn sรฉ seo logleabhar an chรณrais" msgid "Opens the threads preferences" msgstr "Osclaรญonn sรฉ seo roghanna na snรกitheanna" -#: src/view/com/notifications/FeedItem.tsx:427 -#: src/view/com/util/UserAvatar.tsx:409 +#: src/view/com/notifications/FeedItem.tsx:427 src/view/com/util/UserAvatar.tsx:409 msgid "Opens this profile" -msgstr "" +msgstr "Osclaรญonn sรฉ an phrรณifรญl seo" #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Rogha {0} as {numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:181 src/components/ReportDialog/SubmitView.tsx:163 msgid "Optionally provide additional information below:" msgstr "Is fรฉidir tuilleadh eolais a chur ar fรกil thรญos:" @@ -3706,11 +3080,11 @@ msgstr "Nรณ cuir na roghanna seo le chรฉile:" #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." -msgstr "" +msgstr "Nรณ, lean ort le cuntas eile." #: src/screens/Deactivated.tsx:194 msgid "Or, log into one of your other accounts." -msgstr "" +msgstr "Nรณ, logรกil isteach i gceann eile de do chuntais." #: src/lib/moderation/useReportOptions.ts:26 msgid "Other" @@ -3728,8 +3102,7 @@ msgstr "Eileโ€ฆ" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Ta รกr modhnรณirรญ tar รฉis athbhreithniรบ a dhรฉanamh ar thuairiscรญ. Chinn siad gan ligean duit comhrรกite a รบsรกid ar Bluesky." -#: src/components/Lists.tsx:208 -#: src/view/screens/NotFound.tsx:45 +#: src/components/Lists.tsx:208 src/view/screens/NotFound.tsx:45 msgid "Page not found" msgstr "Leathanach gan aimsiรบ" @@ -3737,10 +3110,7 @@ msgstr "Leathanach gan aimsiรบ" msgid "Page Not Found" msgstr "Leathanach gan aimsiรบ" -#: src/screens/Login/LoginForm.tsx:201 -#: src/screens/Signup/StepInfo/index.tsx:102 -#: src/view/com/modals/DeleteAccount.tsx:257 -#: src/view/com/modals/DeleteAccount.tsx:264 +#: src/screens/Login/LoginForm.tsx:201 src/screens/Signup/StepInfo/index.tsx:102 src/view/com/modals/DeleteAccount.tsx:257 src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" msgstr "Pasfhocal" @@ -3788,8 +3158,7 @@ msgstr "Peataรญ" msgid "Pictures meant for adults." msgstr "Pictiรบir le haghaidh daoine fรกsta." -#: src/view/screens/ProfileFeed.tsx:287 -#: src/view/screens/ProfileList.tsx:617 +#: src/view/screens/ProfileFeed.tsx:287 src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Greamaigh le baile" @@ -3817,8 +3186,7 @@ msgstr "Seinn {0}" msgid "Play or pause the GIF" msgstr "Seinn nรณ stop an GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57 src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 msgid "Play Video" msgstr "Seinn an fรญseรกn" @@ -3870,8 +3238,7 @@ msgstr "Abair linn, le do thoil, cรฉn fรกth a gcreideann tรบ gur chuir {0} an li msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mรญnigh, le do thoil, an fรกth a gcreideann tรบ go bhfuil sรฉ mรญcheart nach ligtear duit comhrรกite a รบsรกid" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:48 src/lib/hooks/useAccountSwitcher.ts:58 msgid "Please sign in as @{0}" msgstr "Logรกil isteach mar @{0}" @@ -3891,8 +3258,7 @@ msgstr "Polaitรญocht" msgid "Porn" msgstr "Pornagrafaรญocht" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:462 src/view/com/composer/Composer.tsx:470 msgctxt "action" msgid "Post" msgstr "Postรกil" @@ -3906,9 +3272,7 @@ msgstr "Postรกil" msgid "Post by {0}" msgstr "Postรกil รณ {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:183 src/Navigation.tsx:190 src/Navigation.tsx:197 msgid "Post by @{0}" msgstr "Postรกil รณ @{0}" @@ -3920,13 +3284,11 @@ msgstr "Scriosadh an phostรกil" msgid "Post hidden" msgstr "Cuireadh an phostรกil i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:97 -#: src/lib/moderation/useModerationCauseDescription.ts:101 +#: src/components/moderation/ModerationDetailsDialog.tsx:97 src/lib/moderation/useModerationCauseDescription.ts:101 msgid "Post Hidden by Muted Word" msgstr "Postรกil nach bhfuil le feiceรกil de bharr focail a cuireadh i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:100 -#: src/lib/moderation/useModerationCauseDescription.ts:110 +#: src/components/moderation/ModerationDetailsDialog.tsx:100 src/lib/moderation/useModerationCauseDescription.ts:110 msgid "Post Hidden by You" msgstr "Postรกil a chuir tรบ i bhfolach" @@ -3938,8 +3300,7 @@ msgstr "Teanga postรกla" msgid "Post Languages" msgstr "Teangacha postรกla" -#: src/view/com/post-thread/PostThread.tsx:188 -#: src/view/com/post-thread/PostThread.tsx:200 +#: src/view/com/post-thread/PostThread.tsx:188 src/view/com/post-thread/PostThread.tsx:200 msgid "Post not found" msgstr "Nรญ bhfuarthas an phostรกil" @@ -3971,10 +3332,7 @@ msgstr "Brรบigh le iarracht a thabhairt ar nascadh arรญs" msgid "Press to change hosting provider" 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:200 +#: src/components/Error.tsx:85 src/components/Lists.tsx:93 src/screens/Messages/Conversation/MessageListError.tsx:24 src/screens/Signup/index.tsx:200 msgid "Press to retry" msgstr "Brรบigh le iarracht eile a dhรฉanamh" @@ -3990,16 +3348,11 @@ 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:654 src/view/shell/desktop/RightNav.tsx:77 msgid "Privacy" msgstr "Prรญobhรกideacht" -#: src/Navigation.tsx:238 -#: src/screens/Signup/StepInfo/Policies.tsx:56 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/Navigation.tsx:238 src/screens/Signup/StepInfo/Policies.tsx:56 src/view/screens/PrivacyPolicy.tsx:29 src/view/screens/Settings/index.tsx:957 src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Polasaรญ prรญobhรกideachta" @@ -4011,16 +3364,11 @@ msgstr "Roinn TDanna prรญobhรกideacha le รบsรกideoirรญ eile." msgid "Processing..." msgstr "ร phrรณiseรกil..." -#: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:345 +#: src/view/screens/DebugMod.tsx:894 src/view/screens/Profile.tsx:345 msgid "profile" msgstr "prรณifรญl" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:381 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 -#: src/view/shell/Drawer.tsx:542 +#: src/view/shell/bottom-bar/BottomBar.tsx:272 src/view/shell/desktop/LeftNav.tsx:381 src/view/shell/Drawer.tsx:78 src/view/shell/Drawer.tsx:541 src/view/shell/Drawer.tsx:542 msgid "Profile" msgstr "Prรณifรญl" @@ -4052,23 +3400,10 @@ msgstr "Foilsigh an phostรกil" msgid "Publish reply" msgstr "Foilsigh an freagra" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 +#: src/view/com/util/post-ctrls/RepostButton.tsx:113 src/view/com/util/post-ctrls/RepostButton.tsx:125 src/view/com/util/post-ctrls/RepostButton.web.tsx:78 src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" msgstr "Postรกil athluaite" -#: src/view/com/modals/Repost.tsx:66 -#~ msgctxt "action" -#~ msgid "Quote post" -#~ msgstr "Luaigh an phostรกil seo" - -#: src/view/com/modals/Repost.tsx:71 -#~ msgctxt "action" -#~ msgid "Quote Post" -#~ msgstr "Luaigh an phostรกil seo" - #: src/view/screens/PreferencesThreads.tsx:86 msgid "Random (aka \"Poster's Roulette\")" msgstr "Randamach" @@ -4079,7 +3414,7 @@ msgstr "Cรณimheasa" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "" +msgstr "Athghnรญomhaigh do chuntas" #: src/components/dms/ReportDialog.tsx:172 msgid "Reason:" @@ -4089,14 +3424,6 @@ msgstr "Fรกth:" msgid "Recent Searches" msgstr "Cuardaigh a Rinneadh le Dรฉanaรญ" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 -#~ msgid "Recommended Feeds" -#~ msgstr "Fothaรญ molta" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 -#~ msgid "Recommended Users" -#~ msgstr "Cuntais mholta" - #: src/screens/Messages/Conversation/MessageListError.tsx:20 msgid "Reconnect" msgstr "Athnasc" @@ -4105,12 +3432,7 @@ msgstr "Athnasc" msgid "Reload conversations" msgstr "Athlรณdรกil comhrรกite" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/components/dialogs/MutedWords.tsx:288 src/view/com/feeds/FeedSourceCard.tsx:296 src/view/com/modals/ListAddRemoveUsers.tsx:268 src/view/com/modals/SelfLabel.tsx:84 src/view/com/modals/UserAddRemoveLists.tsx:230 src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Scrios" @@ -4128,11 +3450,9 @@ msgstr "Bain an Fรณgra Meirge Amach" #: src/screens/Messages/Conversation/MessageInputEmbed.tsx:218 msgid "Remove embed" -msgstr "" +msgstr "Bain an leabรบ" -#: src/view/com/posts/FeedErrorMessage.tsx:169 -#: 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:113 src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Bain an fotha de" @@ -4140,11 +3460,7 @@ msgstr "Bain an fotha de" msgid "Remove feed?" msgstr "An bhfuil fonn ort an fotha a bhaint?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 -#: src/view/screens/ProfileFeed.tsx:330 -#: src/view/screens/ProfileFeed.tsx:336 -#: src/view/screens/ProfileList.tsx:443 +#: src/view/com/feeds/FeedSourceCard.tsx:180 src/view/com/feeds/FeedSourceCard.tsx:245 src/view/screens/ProfileFeed.tsx:330 src/view/screens/ProfileFeed.tsx:336 src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaรญ" @@ -4166,18 +3482,17 @@ msgstr "Bain focal folaigh de do liosta" #: src/view/screens/Search/Search.tsx:1014 msgid "Remove profile" -msgstr "" +msgstr "Bain an phrรณifรญl" #: src/view/screens/Search/Search.tsx:1016 msgid "Remove profile from search history" -msgstr "" +msgstr "Bain an phrรณifรญl seo as an stair cuardaigh" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:238 msgid "Remove quote" msgstr "Bain an t-athfhriotal de" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:90 src/view/com/util/post-ctrls/RepostButton.tsx:106 msgid "Remove repost" msgstr "Scrios an athphostรกil" @@ -4185,8 +3500,7 @@ msgstr "Scrios an athphostรกil" 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/UserAddRemoveLists.tsx:165 +#: src/view/com/modals/ListAddRemoveUsers.tsx:199 src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Baineadh den liosta รฉ" @@ -4194,9 +3508,7 @@ msgstr "Baineadh den liosta รฉ" 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/ProfileList.tsx:320 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 src/view/screens/ProfileFeed.tsx:191 src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Baineadh de do chuid fothaรญ รฉ" @@ -4208,8 +3520,7 @@ msgstr "Baineann sรฉ seo an mhionsamhail rรฉamhshocraithe de {0}" 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/posts/FeedShutdownMsg.tsx:126 src/view/com/posts/FeedShutdownMsg.tsx:130 msgid "Replace with Discover" msgstr "Cuir an fotha Discover ina รกit" @@ -4230,31 +3541,20 @@ msgstr "Freagair" msgid "Reply Filters" msgstr "Scagairรญ freagra" -#: src/view/com/post/Post.tsx:NaN -#~ msgctxt "description" -#~ msgid "Reply to <0/>" -#~ msgstr "Freagra ar <0/>" - -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:427 +#: src/view/com/post/Post.tsx:190 src/view/com/posts/FeedItem.tsx:427 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Freagra ar <0><1/>" -#: src/components/dms/MessageMenu.tsx:132 -#: src/components/dms/MessagesListBlockedFooter.tsx:77 -#: src/components/dms/MessagesListBlockedFooter.tsx:84 +#: src/components/dms/MessageMenu.tsx:132 src/components/dms/MessagesListBlockedFooter.tsx:77 src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "Report" msgstr "Tuairiscigh" -#: src/view/com/profile/ProfileMenu.tsx:321 -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:321 src/view/com/profile/ProfileMenu.tsx:324 msgid "Report Account" msgstr "Dรฉan gearรกn faoi chuntas" -#: src/components/dms/ConvoMenu.tsx:197 -#: src/components/dms/ConvoMenu.tsx:200 -#: src/components/dms/ReportConversationPrompt.tsx:18 +#: src/components/dms/ConvoMenu.tsx:197 src/components/dms/ConvoMenu.tsx:200 src/components/dms/ReportConversationPrompt.tsx:18 msgid "Report conversation" msgstr "Tuairiscigh an comhrรก seo" @@ -4262,8 +3562,7 @@ msgstr "Tuairiscigh an comhrรก seo" msgid "Report dialog" msgstr "Tuairiscigh comhrรก" -#: src/view/screens/ProfileFeed.tsx:347 -#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:347 src/view/screens/ProfileFeed.tsx:349 msgid "Report feed" msgstr "Dรฉan gearรกn faoi fhotha" @@ -4275,8 +3574,7 @@ msgstr "Dรฉan gearรกn faoi liosta" msgid "Report message" msgstr "Tuairiscigh an teachtaireacht seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: 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" @@ -4292,9 +3590,7 @@ msgstr "Dรฉan gearรกn faoin fhotha seo" msgid "Report this list" msgstr "Dรฉan gearรกn faoin liosta seo" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 -#: src/components/ReportDialog/SelectReportOptionView.tsx:59 +#: src/components/dms/ReportDialog.tsx:47 src/components/dms/ReportDialog.tsx:140 src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "Tuairiscigh an teachtaireacht seo" @@ -4306,21 +3602,16 @@ msgstr "Dรฉan gearรกn faoin phostรกil seo" msgid "Report this user" msgstr "Dรฉan gearรกn faoin รบsรกideoir seo" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 src/view/com/util/post-ctrls/RepostButton.tsx:91 src/view/com/util/post-ctrls/RepostButton.tsx:107 msgctxt "action" msgid "Repost" msgstr "Athphostรกil" -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Repost" msgstr "Athphostรกil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:83 src/view/com/util/post-ctrls/RepostButton.web.tsx:46 src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" msgstr "Athphostรกil nรณ luaigh postรกil" @@ -4332,10 +3623,6 @@ msgstr "Athphostรกilte ag" msgid "Reposted by {0}" msgstr "Athphostรกilte ag {0}" -#: src/view/com/posts/FeedItem.tsx:214 -#~ msgid "Reposted by <0/>" -#~ msgstr "Athphostรกilte ag <0/>" - #: src/view/com/posts/FeedItem.tsx:265 msgid "Reposted by <0><1/>" msgstr "Athphostรกilte ag <0><1/>" @@ -4348,13 +3635,11 @@ msgstr "โ€” d'athphostรกil sรฉ/sรญ do phostรกil" msgid "Reposts of this post" msgstr "Athphostรกlacha den phostรกil seo" -#: src/view/com/modals/ChangeEmail.tsx:176 -#: src/view/com/modals/ChangeEmail.tsx:178 +#: src/view/com/modals/ChangeEmail.tsx:176 src/view/com/modals/ChangeEmail.tsx:178 msgid "Request Change" msgstr "Iarr Athrรบ" -#: src/view/com/modals/ChangePassword.tsx:242 -#: src/view/com/modals/ChangePassword.tsx:244 +#: src/view/com/modals/ChangePassword.tsx:242 src/view/com/modals/ChangePassword.tsx:244 msgid "Request Code" msgstr "Iarr Cรณd" @@ -4370,8 +3655,7 @@ msgstr "Bรญodh cรณd rรญomhphoist ag teastรกil chun logรกil isteach" msgid "Required for this provider" msgstr "Riachtanach don solรกthraรญ seo" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 src/view/screens/Settings/DisableEmail2FADialog.tsx:171 msgid "Resend email" msgstr "Athsheol an rรญomhphost" @@ -4383,8 +3667,7 @@ 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:900 src/view/screens/Settings/index.tsx:903 msgid "Reset onboarding state" msgstr "Athshocraigh an prรณiseas clรกraithe" @@ -4392,8 +3675,7 @@ 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:880 src/view/screens/Settings/index.tsx:883 msgid "Reset preferences state" msgstr "Athshocraigh na roghanna" @@ -4409,27 +3691,15 @@ msgstr "Athshocraรญonn sรฉ seo na roghanna" msgid "Retries login" msgstr "Baineann sรฉ seo triail eile as an logรกil isteach" -#: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:74 +#: 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 "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/screens/Login/LoginForm.tsx:288 -#: src/screens/Login/LoginForm.tsx:295 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 -#: src/screens/Signup/index.tsx:207 -#: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:72 +#: src/components/dms/MessageItem.tsx:241 src/components/Error.tsx:90 src/components/Lists.tsx:104 src/screens/Login/LoginForm.tsx:288 src/screens/Login/LoginForm.tsx:295 src/screens/Messages/Conversation/MessageListError.tsx:25 src/screens/Onboarding/StepInterests/index.tsx:226 src/screens/Onboarding/StepInterests/index.tsx:229 src/screens/Signup/index.tsx:207 src/view/com/util/error/ErrorMessage.tsx:55 src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Bain triail eile as" -#: src/components/Error.tsx:98 -#: src/view/screens/ProfileList.tsx:971 +#: src/components/Error.tsx:98 src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Fill ar an leathanach roimhe seo" @@ -4437,22 +3707,15 @@ msgstr "Fill ar an leathanach roimhe seo" 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/NotFound.tsx:58 src/view/screens/ProfileFeed.tsx:112 msgid "Returns to previous page" msgstr "Filleann sรฉ seo ar an leathanach roimhe seo" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/dialogs/BirthDateSettings.tsx:125 src/view/com/composer/GifAltText.tsx:163 src/view/com/composer/GifAltText.tsx:169 src/view/com/modals/ChangeHandle.tsx:168 src/view/com/modals/CreateOrEditList.tsx:326 src/view/com/modals/EditProfile.tsx:225 msgid "Save" msgstr "Sรกbhรกil" -#: src/view/com/lightbox/Lightbox.tsx:133 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:133 src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" msgstr "Sรกbhรกil" @@ -4477,8 +3740,7 @@ msgstr "Sรกbhรกil an leasainm nua" msgid "Save image crop" msgstr "Sรกbhรกil an pictiรบr bearrtha" -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:331 src/view/screens/ProfileFeed.tsx:337 msgid "Save to my feeds" msgstr "Sรกbhรกil i mo chuid fothaรญ" @@ -4490,12 +3752,7 @@ msgstr "Fothaรญ Sรกbhรกilte" msgid "Saved to your camera roll" msgstr "Sรกbhรกladh i do rolla ceamara รฉ" -#: src/view/com/lightbox/Lightbox.tsx:81 -#~ msgid "Saved to your camera roll." -#~ msgstr "Sรกbhรกilte i do rolla ceamara." - -#: src/view/screens/ProfileFeed.tsx:200 -#: src/view/screens/ProfileList.tsx:300 +#: src/view/screens/ProfileFeed.tsx:200 src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Sรกbhรกilte le mo chuid fothaรญ" @@ -4523,21 +3780,7 @@ msgstr "Eolaรญocht" msgid "Scroll to top" msgstr "Fill ar an mbarr" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 -#: src/view/com/auth/LoggedOut.tsx:123 -#: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:343 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 -#: src/view/shell/Drawer.tsx:394 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 src/Navigation.tsx:506 src/view/com/auth/LoggedOut.tsx:123 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:451 src/view/screens/Search/Search.tsx:825 src/view/screens/Search/Search.tsx:853 src/view/shell/bottom-bar/BottomBar.tsx:179 src/view/shell/desktop/LeftNav.tsx:343 src/view/shell/desktop/Search.tsx:194 src/view/shell/desktop/Search.tsx:203 src/view/shell/Drawer.tsx:393 src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Cuardaigh" @@ -4557,24 +3800,23 @@ 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/view/com/auth/LoggedOut.tsx:105 -#: src/view/com/auth/LoggedOut.tsx:106 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/components/dms/NewChat.tsx:226 +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:105 src/view/com/auth/LoggedOut.tsx:106 src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cuardaigh รบsรกideoirรญ" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.ios.tsx:159 src/components/dialogs/GifSelect.tsx:169 msgid "Search GIFs" msgstr "Cuardaigh GIFanna" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 src/components/dms/dialogs/SearchablePeopleList.tsx:525 msgid "Search profiles" msgstr "Cuardaigh prรณifรญlรญ" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.ios.tsx:160 src/components/dialogs/GifSelect.tsx:170 msgid "Search Tenor" msgstr "Cuardaigh Tenor" @@ -4598,18 +3840,10 @@ msgstr "Fรฉach na postรกlacha <0>{displayTag}" msgid "See <0>{displayTag} posts by this user" msgstr "Fรฉach na postรกlacha <0>{displayTag} leis an รบsรกideoir seo" -#: src/view/com/notifications/FeedItem.tsx:NaN -#~ msgid "See profile" -#~ msgstr "Fรฉach ar an bprรณifรญl" - #: src/view/screens/SavedFeeds.tsx:187 msgid "See this guide" msgstr "Fรฉach ar an treoirleabhar seo" -#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 -#~ msgid "See what's next" -#~ msgstr "Fรฉach an chรฉad rud eile" - #: src/view/com/util/Selector.tsx:106 msgid "Select {item}" msgstr "Roghnaigh {item}" @@ -4654,10 +3888,6 @@ msgstr "Roghnaigh modhnรณir" msgid "Select option {i} of {numItems}" msgstr "Roghnaigh rogha {i} as {numItems}" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 -#~ msgid "Select some accounts below to follow" -#~ msgstr "Roghnaigh cรบpla cuntas le leanรบint" - #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" msgstr "Roghnaigh an emoji {emojiName} mar abhatรกr" @@ -4670,14 +3900,6 @@ msgstr "Roghnaigh na seirbhรญsรญ modhnรณireachta le tuairisciรบ chuige" msgid "Select the service that hosts your data." msgstr "Roghnaigh an tseirbhรญs a รณstรกlann do chuid sonraรญ." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 -#~ msgid "Select topical feeds to follow from the list below" -#~ msgstr "Roghnaigh fothaรญ le leanรบint รณn liosta thรญos" - -#: 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" - #: 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 "Roghnaigh na teangacha ba mhaith leat a fheiceรกil i do chuid fothaรญ. Mura roghnaรญonn tรบ, taispeรกnfar รกbhar i ngach teanga duit." @@ -4698,20 +3920,11 @@ msgstr "Roghnaigh na rudaรญ a bhfuil suim agat iontu as na roghanna thรญos" msgid "Select your preferred language for translations in your feed." msgstr "Do rogha teanga nuair a dhรฉanfar aistriรบchรกn ar รกbhar i d'fhotha." -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 -#~ msgid "Select your primary algorithmic feeds" -#~ msgstr "Roghnaigh do phrรญomhfhothaรญ algartamacha" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 -#~ msgid "Select your secondary algorithmic feeds" -#~ msgstr "Roghnaigh do chuid fothaรญ algartamacha tรกnaisteacha" - #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" msgstr "Seol suรญomh grรฉasรกin spรฉisiรบil!" -#: src/view/com/modals/VerifyEmail.tsx:210 -#: src/view/com/modals/VerifyEmail.tsx:212 +#: src/view/com/modals/VerifyEmail.tsx:210 src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" msgstr "Seol rรญomhphost dearbhaithe" @@ -4724,24 +3937,19 @@ msgctxt "action" msgid "Send Email" msgstr "Seol rรญomhphost" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:328 src/view/shell/Drawer.tsx:349 msgid "Send feedback" msgstr "Seol aiseolas" -#: src/screens/Messages/Conversation/MessageInput.tsx:163 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:155 +#: src/screens/Messages/Conversation/MessageInput.tsx:163 src/screens/Messages/Conversation/MessageInput.web.tsx:155 msgid "Send message" msgstr "Seol teachtaireacht" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "Send post to..." -msgstr "" +msgstr "Seol an phostรกil seo chuig..." -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:232 src/components/dms/ReportDialog.tsx:235 src/components/ReportDialog/SubmitView.tsx:216 src/components/ReportDialog/SubmitView.tsx:220 msgid "Send report" msgstr "Seol an tuairisc" @@ -4749,15 +3957,13 @@ msgstr "Seol an tuairisc" msgid "Send report to {0}" msgstr "Seol an tuairisc chuig {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 src/view/screens/Settings/DisableEmail2FADialog.tsx:122 msgid "Send verification email" msgstr "Seol rรญomhphost dearbhaithe" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" -msgstr "" +msgstr "Seol mar theachtaireacht dhรญreach" #: src/view/com/modals/DeleteAccount.tsx:151 msgid "Sends email with confirmation code for account deletion" @@ -4839,11 +4045,7 @@ 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:146 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 -#: src/view/shell/Drawer.tsx:559 +#: src/Navigation.tsx:146 src/view/screens/Settings/index.tsx:332 src/view/shell/desktop/LeftNav.tsx:389 src/view/shell/Drawer.tsx:558 src/view/shell/Drawer.tsx:559 msgid "Settings" msgstr "Socruithe" @@ -4860,12 +4062,7 @@ msgctxt "action" msgid "Share" msgstr "Comhroinn" -#: src/view/com/profile/ProfileMenu.tsx:217 -#: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:297 -#: src/view/screens/ProfileList.tsx:428 +#: src/view/com/profile/ProfileMenu.tsx:217 src/view/com/profile/ProfileMenu.tsx:226 src/view/com/util/forms/PostDropdownBtn.tsx:310 src/view/com/util/forms/PostDropdownBtn.tsx:319 src/view/com/util/post-ctrls/PostCtrls.tsx:297 src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Comhroinn" @@ -4877,19 +4074,15 @@ msgstr "Inis scรฉal suimiรบil!" msgid "Share a fun fact!" msgstr "Roinn rud รฉigin fรบtsa fรฉin!" -#: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:313 +#: src/view/com/profile/ProfileMenu.tsx:375 src/view/com/util/forms/PostDropdownBtn.tsx:464 src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Comhroinn mar sin fรฉin" -#: src/view/screens/ProfileFeed.tsx:357 -#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:357 src/view/screens/ProfileFeed.tsx:359 msgid "Share feed" msgstr "Comhroinn an fotha" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 +#: src/view/com/modals/LinkWarning.tsx:89 src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Comhroinn Nasc" @@ -4901,28 +4094,19 @@ msgstr "Roinn an fotha is fearr leat!" msgid "Shares the linked website" 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:121 -#: src/view/screens/Settings/index.tsx:381 +#: src/components/moderation/ContentHider.tsx:116 src/components/moderation/LabelPreference.tsx:136 src/components/moderation/PostHider.tsx:121 src/view/screens/Settings/index.tsx:381 msgid "Show" msgstr "Taispeรกin" -#: src/view/screens/PreferencesFollowingFeed.tsx:68 -#~ msgid "Show all replies" -#~ msgstr "Taispeรกin gach freagra" - #: src/view/com/util/post-embeds/GifEmbed.tsx:167 msgid "Show alt text" msgstr "Taispeรกin an tรฉacs malartach" -#: src/components/moderation/ScreenHider.tsx:169 -#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:169 src/components/moderation/ScreenHider.tsx:172 msgid "Show anyway" msgstr "Taispeรกin mar sin fรฉin" -#: src/lib/moderation/useLabelBehaviorDescription.ts:27 -#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 src/lib/moderation/useLabelBehaviorDescription.ts:63 msgid "Show badge" msgstr "Taispeรกin suaitheantas" @@ -4938,19 +4122,15 @@ 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:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: 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:538 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:392 +#: src/view/com/post-thread/PostThreadItem.tsx:538 src/view/com/post/Post.tsx:227 src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Tuilleadh" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: 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" @@ -4966,18 +4146,6 @@ msgstr "Taispeรกin postรกlacha รณ mo chuid fothaรญ" msgid "Show Quote Posts" msgstr "Taispeรกin postรกlacha athluaite" -#: src/screens/Onboarding/StepFollowingFeed.tsx:119 -#~ msgid "Show quote-posts in Following feed" -#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:135 -#~ msgid "Show quotes in Following" -#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:95 -#~ msgid "Show re-posts in Following feed" -#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" - #: src/view/screens/PreferencesFollowingFeed.tsx:118 msgid "Show Replies" msgstr "Taispeรกin freagraรญ" @@ -4986,35 +4154,14 @@ msgstr "Taispeรกin freagraรญ" msgid "Show replies by people you follow before all other replies." msgstr "Taispeรกin freagraรญ รณ na daoine a leanann tรบ roimh aon fhreagra eile." -#: src/screens/Onboarding/StepFollowingFeed.tsx:87 -#~ msgid "Show replies in Following" -#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:71 -#~ msgid "Show replies in Following feed" -#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" - -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#~ 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 msgid "Show Reposts" msgstr "Taispeรกin athphostรกlacha" -#: src/screens/Onboarding/StepFollowingFeed.tsx:111 -#~ msgid "Show reposts in Following" -#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" - -#: src/components/moderation/ContentHider.tsx:69 -#: src/components/moderation/PostHider.tsx:78 +#: src/components/moderation/ContentHider.tsx:69 src/components/moderation/PostHider.tsx:78 msgid "Show the content" msgstr "Taispeรกin an t-รกbhar" -#: src/view/com/notifications/FeedItem.tsx:347 -#~ msgid "Show users" -#~ msgstr "Taispeรกin รบsรกideoirรญ" - #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" msgstr "Taispeรกin rabhadh" @@ -5027,24 +4174,7 @@ msgstr "Taispeรกin rabhadh agus scag รณ na fothaรญ รฉ" msgid "Shows posts from {0} in your feed" msgstr "Taispeรกnann sรฉ seo postรกlacha รณ {0} i d'fhotha" -#: src/components/dialogs/Signin.tsx:97 -#: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:154 -#: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/components/dialogs/Signin.tsx:97 src/components/dialogs/Signin.tsx:99 src/screens/Login/index.tsx:100 src/screens/Login/index.tsx:119 src/screens/Login/LoginForm.tsx:154 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:181 src/view/shell/bottom-bar/BottomBarWeb.tsx:182 src/view/shell/bottom-bar/BottomBarWeb.tsx:184 src/view/shell/NavSignupCard.tsx:69 src/view/shell/NavSignupCard.tsx:70 src/view/shell/NavSignupCard.tsx:72 msgid "Sign in" msgstr "Logรกil isteach" @@ -5064,20 +4194,11 @@ 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:129 src/view/screens/Settings/index.tsx:133 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: 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:171 src/view/shell/bottom-bar/BottomBarWeb.tsx:172 src/view/shell/bottom-bar/BottomBarWeb.tsx:174 src/view/shell/NavSignupCard.tsx:60 src/view/shell/NavSignupCard.tsx:61 src/view/shell/NavSignupCard.tsx:63 msgid "Sign up" msgstr "Clรกraigh" @@ -5085,8 +4206,7 @@ msgstr "Clรกraigh" msgid "Sign up or sign in to join the conversation" msgstr "Clรกraigh nรณ logรกil isteach chun pรกirt a ghlacadh sa chomhrรก" -#: src/components/moderation/ScreenHider.tsx:97 -#: src/lib/moderation/useGlobalLabelStrings.ts:28 +#: src/components/moderation/ScreenHider.tsx:97 src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Caithfidh tรบ logรกil isteach" @@ -5094,8 +4214,7 @@ msgstr "Caithfidh tรบ logรกil isteach" msgid "Signed in as" msgstr "Logรกilte isteach mar" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:44 src/screens/Login/ChooseAccountForm.tsx:60 msgid "Signed in as @{0}" msgstr "Logรกilte isteach mar @{0}" @@ -5119,19 +4238,15 @@ msgstr "Tรก daoine รกirithe in ann freagra a thabhairt" msgid "Something went wrong" msgstr "Theip ar rud รฉigin" -#: src/screens/Deactivated.tsx:94 -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/screens/Deactivated.tsx:94 src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "" +msgstr "Chuaigh rud รฉigin amรบ, bain triail eile as" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 -#: src/screens/Profile/Sections/Labels.tsx:87 +#: src/components/ReportDialog/index.tsx:59 src/screens/Moderation/index.tsx:114 src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Chuaigh rud รฉigin รณ rath. Bain triail eile as." -#: src/App.native.tsx:85 -#: src/App.web.tsx:74 +#: src/App.native.tsx:85 src/App.web.tsx:74 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." @@ -5143,16 +4258,11 @@ msgstr "Sรณrtรกil freagraรญ" msgid "Sort replies to the same post by:" msgstr "Sรณrtรกil freagraรญ ar an bpostรกil chรฉanna de rรฉir:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Foinse:" - #: src/components/moderation/LabelsOnMeDialog.tsx:170 msgid "Source: <0>{0}" msgstr "Foinse: <0>{0}" -#: src/lib/moderation/useReportOptions.ts:66 -#: src/lib/moderation/useReportOptions.ts:79 +#: src/lib/moderation/useReportOptions.ts:66 src/lib/moderation/useReportOptions.ts:79 msgid "Spam" msgstr "Turscar" @@ -5180,18 +4290,10 @@ msgstr "Tosaigh comhrรก le {displayName}" msgid "Start chatting" msgstr "Tosaigh ag comhrรก" -#: src/view/screens/Settings/index.tsx:862 -#~ msgid "Status page" -#~ msgstr "Leathanach stรกdais" - #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "Leathanach Stรกdais" -#: src/screens/Signup/index.tsx:145 -#~ msgid "Step" -#~ msgstr "Cรฉim" - #: src/screens/Signup/index.tsx:154 msgid "Step {0} of {1}" msgstr "Cรฉim {0} as {1}" @@ -5200,15 +4302,11 @@ msgstr "Cรฉim {0} as {1}" 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:218 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:218 src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:292 src/components/moderation/LabelsOnMeDialog.tsx:293 src/screens/Messages/Conversation/ChatDisabled.tsx:142 src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" msgstr "Seol" @@ -5224,10 +4322,6 @@ msgstr "Glac sรญntiรบs le @{0} leis na lipรฉid seo a รบsรกid:" msgid "Subscribe to Labeler" msgstr "Glac sรญntiรบs le lipรฉadรณir" -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:NaN -#~ msgid "Subscribe to the {0} feed" -#~ msgstr "Liostรกil leis an bhfotha {0}" - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Glac sรญntiรบs leis an lipรฉadรณir seo" @@ -5248,14 +4342,11 @@ msgstr "Molta duit" msgid "Suggestive" msgstr "Gรกirsiรบil" -#: src/Navigation.tsx:233 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:233 src/view/screens/Support.tsx:30 src/view/screens/Support.tsx:33 msgid "Support" msgstr "Tacaรญocht" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:47 src/components/dialogs/SwitchAccount.tsx:50 msgid "Switch Account" msgstr "Athraigh an cuntas" @@ -5303,17 +4394,11 @@ msgstr "Inis scรฉal grinn!" msgid "Terms" msgstr "Tรฉarmaรญ" -#: src/Navigation.tsx:243 -#: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/Navigation.tsx:243 src/screens/Signup/StepInfo/Policies.tsx:49 src/view/screens/Settings/index.tsx:951 src/view/screens/TermsOfService.tsx:29 src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Tรฉarmaรญ Seirbhรญse" -#: src/lib/moderation/useReportOptions.ts:59 -#: src/lib/moderation/useReportOptions.ts:93 -#: src/lib/moderation/useReportOptions.ts:101 +#: src/lib/moderation/useReportOptions.ts:59 src/lib/moderation/useReportOptions.ts:93 src/lib/moderation/useReportOptions.ts:101 msgid "Terms used violate community standards" msgstr "Sรกrรบ ar chaighdeรกin an phobail atรก sna tรฉarmaรญ a รบsรกideadh" @@ -5321,13 +4406,11 @@ 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:256 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Rรฉimse tรฉacs" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:132 src/components/ReportDialog/SubmitView.tsx:78 msgid "Thank you. Your report has been sent." msgstr "Go raibh maith agat. Seoladh do thuairisc." @@ -5339,15 +4422,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/Profile/Header/ProfileHeaderStandard.tsx:291 -#: src/view/com/profile/ProfileMenu.tsx:351 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "Beidh an cuntas seo in ann caidreamh a dhรฉanamh leat tar รฉis duit รฉ a dhรญbhlocรกil" -#: src/components/moderation/ModerationDetailsDialog.tsx:127 -#~ msgid "the author" -#~ msgstr "an t-รบdar" - #: src/view/screens/CommunityGuidelines.tsx:36 msgid "The Community Guidelines have been moved to <0/>" msgstr "Bogadh Treoirlรญnte an Phobail go dtรญ <0/>" @@ -5372,8 +4450,7 @@ msgstr "Cuireadh na lipรฉid seo a leanas le do chuid รกbhair." msgid "The following steps will help customize your Bluesky experience." msgstr "Cuideoidh na cรฉimeanna seo a leanas leat Bluesky a chur in oiriรบint duit fรฉin." -#: src/view/com/post-thread/PostThread.tsx:189 -#: src/view/com/post-thread/PostThread.tsx:201 +#: src/view/com/post-thread/PostThread.tsx:189 src/view/com/post-thread/PostThread.tsx:201 msgid "The post may have been deleted." msgstr "Is fรฉidir gur scriosadh an phostรกil seo." @@ -5389,16 +4466,11 @@ msgstr "Bogadh an fhoirm tacaรญochta go dtรญ <0/>. Mรก tรก cuidiรบ ag teastรกil msgid "The Terms of Service have been moved to" msgstr "Bogadh รกr dTรฉarmaรญ Seirbhรญse go dtรญ" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 -#~ msgid "There are many feeds to try:" -#~ msgstr "Tรก a lรกn fothaรญ ann le blaiseadh:" - #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +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:541 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 src/view/screens/ProfileFeed.tsx:541 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." @@ -5406,28 +4478,19 @@ msgstr "Bhรญ fadhb ann maidir le dul i dteagmhรกil leis an bhfreastalaรญ. Seice msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Bhรญ fadhb ann maidir leis an bhfotha seo a bhaint. Seiceรกil do cheangal leis an idirlรญon agus bain triail eile as, le do thoil." -#: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 src/view/com/posts/FeedShutdownMsg.tsx:70 src/view/screens/ProfileFeed.tsx:205 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." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.ios.tsx:197 src/components/dialogs/GifSelect.tsx:213 msgid "There was an issue connecting to Tenor." msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh le Tenor." -#: src/view/screens/ProfileFeed.tsx:233 -#: src/view/screens/ProfileList.tsx:303 -#: src/view/screens/ProfileList.tsx:322 -#: src/view/screens/SavedFeeds.tsx:237 -#: src/view/screens/SavedFeeds.tsx:263 -#: src/view/screens/SavedFeeds.tsx:289 +#: src/view/screens/ProfileFeed.tsx:233 src/view/screens/ProfileList.tsx:303 src/view/screens/ProfileList.tsx:322 src/view/screens/SavedFeeds.tsx:237 src/view/screens/SavedFeeds.tsx:263 src/view/screens/SavedFeeds.tsx:289 msgid "There was an issue contacting the server" msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh leis an bhfreastalaรญ" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:120 src/view/com/feeds/FeedSourceCard.tsx:133 msgid "There was an issue contacting your server" msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh le do fhreastรกlaรญ" @@ -5443,48 +4506,27 @@ msgstr "Bhรญ fadhb ann maidir le postรกlacha a fhรกil. Tapรกil anseo le triail e msgid "There was an issue fetching the list. Tap here to try again." msgstr "Bhรญ fadhb ann maidir leis an liosta a fhรกil. Tapรกil anseo le triail eile a bhaint as." -#: src/view/com/feeds/ProfileFeedgens.tsx:153 -#: src/view/com/lists/ProfileLists.tsx:160 +#: src/view/com/feeds/ProfileFeedgens.tsx:153 src/view/com/lists/ProfileLists.tsx:160 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:220 src/components/ReportDialog/SubmitView.tsx:83 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." -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 -#~ msgid "There was an issue syncing your preferences with the server" -#~ msgstr "Bhรญ fadhb ann maidir le do chuid roghanna a shioncronรบ leis an bhfreastalaรญ" - #: src/view/screens/AppPasswords.tsx:70 msgid "There was an issue with fetching your app passwords" msgstr "Bhรญ fadhb ann maidir le do chuid pasfhocal don aip a fhรกil" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:120 -#: src/view/com/profile/ProfileMenu.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:146 -#: src/view/com/profile/ProfileMenu.tsx:160 -#: src/view/com/profile/ProfileMenu.tsx:173 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 src/view/com/post-thread/PostThreadFollowBtn.tsx:99 src/view/com/post-thread/PostThreadFollowBtn.tsx:111 src/view/com/profile/ProfileMenu.tsx:109 src/view/com/profile/ProfileMenu.tsx:120 src/view/com/profile/ProfileMenu.tsx:135 src/view/com/profile/ProfileMenu.tsx:146 src/view/com/profile/ProfileMenu.tsx:160 src/view/com/profile/ProfileMenu.tsx:173 msgid "There was an issue! {0}" msgstr "Bhรญ fadhb ann! {0}" -#: src/view/screens/ProfileList.tsx:335 -#: src/view/screens/ProfileList.tsx:349 -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:335 src/view/screens/ProfileList.tsx:349 src/view/screens/ProfileList.tsx:363 src/view/screens/ProfileList.tsx:377 msgid "There was an issue. Please check your internet connection and try again." msgstr "Bhรญ fadhb ann. Seiceรกil do cheangal leis an idirlรญon, le do thoil, agus bain triail eile as." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.ios.tsx:239 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 "Dโ€™รฉirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, mรก tharla sรฉ sin duit!" @@ -5492,10 +4534,6 @@ msgstr "Dโ€™รฉirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, mรก msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Tรก rรกchairt ar Bluesky le dรฉanaรญ! Cuirfidh muid do chuntas ag obair chomh luath agus is fรฉidir." -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 -#~ msgid "These are popular accounts you might like:" -#~ msgstr "Is cuntais iad seo a bhfuil a lรกn leantรณirรญ acu. Is fรฉidir go dtaitneoidh siad leat." - #: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Cuireadh bratach leis an {screenDescription} seo:" @@ -5532,8 +4570,7 @@ msgstr "Chuir na modhnรณirรญ folรกireamh ginearรกlta leis an รกbhar seo." msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Tรก an t-รกbhar seo ar fรกil รณ {0}. An bhfuil fonn ort na meรกin sheachtracha a thaispeรกint?" -#: src/components/moderation/ModerationDetailsDialog.tsx:77 -#: src/lib/moderation/useModerationCauseDescription.ts:79 +#: 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 "Nรญl an t-รกbhar seo le feiceรกil toisc gur bhlocรกil duine de na hรบsรกideoirรญ an duine eile." @@ -5549,9 +4586,7 @@ msgstr "Tรก an ghnรฉ seo รก tรกstรกil fรณs. Tig leat nรญos mรณ faoi chartlanna e msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Tรก rรกchairt an-mhรณr ar an bhfotha seo faoi lรกthair. Nรญl sรฉ ar fรกil anois dรญreach dรก bhrรญ sin. Bain triail eile as nรญos dรฉanaรญ, le do thoil." -#: src/screens/Profile/Sections/Feed.tsx:59 -#: src/view/screens/ProfileFeed.tsx:471 -#: src/view/screens/ProfileList.tsx:729 +#: src/screens/Profile/Sections/Feed.tsx:59 src/view/screens/ProfileFeed.tsx:471 src/view/screens/ProfileList.tsx:729 msgid "This feed is empty!" msgstr "Tรก an fotha seo folamh!" @@ -5571,10 +4606,6 @@ msgstr "Nรญ roinntear an t-eolas seo le hรบsรกideoirรญ eile." msgid "This is important in case you ever need to change your email or reset your password." msgstr "Tรก sรฉ seo tรกbhachtach mรก bhรญonn ort do rรญomhphost nรณ do phasfhocal a athrรบ." -#: src/components/moderation/ModerationDetailsDialog.tsx:124 -#~ msgid "This label was applied by {0}." -#~ msgstr "Cuireadh an lipรฉad seo ag {0}." - #: src/components/moderation/ModerationDetailsDialog.tsx:127 msgid "This label was applied by <0>{0}." msgstr "Chuir <0>{0} an lipรฉad seo leis." @@ -5611,8 +4642,7 @@ 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:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 src/view/com/util/post-ctrls/PostCtrls.tsx:310 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." @@ -5640,8 +4670,7 @@ msgstr "Nรญl aon leantรณirรญ ag an รบsรกideoir seo." msgid "This user has blocked you" msgstr "Tรก tรบ blocรกilte ag an รบsรกideoir seo." -#: src/components/moderation/ModerationDetailsDialog.tsx:72 -#: src/lib/moderation/useModerationCauseDescription.ts:70 +#: src/components/moderation/ModerationDetailsDialog.tsx:72 src/lib/moderation/useModerationCauseDescription.ts:70 msgid "This user has blocked you. You cannot view their content." msgstr "Tรก an t-รบsรกideoir seo tar รฉis thรบ a bhlocรกil. Nรญ fรฉidir leat a gcuid รกbhair a fheiceรกil." @@ -5661,10 +4690,6 @@ msgstr "Tรก an t-รบsรกideoir seo ar an liosta <0>{0} a chuir tรบ i bhfolach. msgid "This user isn't following anyone." msgstr "Nรญl รฉinne รก leanรบint ag an รบsรกideoir seo." -#: src/view/com/modals/SelfLabel.tsx:137 -#~ msgid "This warning is only available for posts with media attached." -#~ msgstr "Nรญl an rabhadh seo ar fรกil ach le haghaidh postรกlacha a bhfuil meรกin ceangailte leo." - #: src/components/dialogs/MutedWords.tsx:285 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รญ." @@ -5673,8 +4698,7 @@ msgstr "Bainfidh sรฉ seo {0} de do chuid focal i bhfolach. Tig leat รฉ a chur ar msgid "Thread preferences" msgstr "Roghanna snรกitheanna" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/PreferencesThreads.tsx:53 src/view/screens/Settings/index.tsx:604 msgid "Thread Preferences" msgstr "Roghanna Snรกitheanna" @@ -5710,8 +4734,7 @@ msgstr "Scorรกnaigh an bosca anuas" msgid "Toggle to enable or disable adult content" msgstr "Scorรกnaigh le รกbhar do dhaoine fรกsta a cheadรบ nรณ gan a cheadรบ" -#: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/screens/Hashtag.tsx:88 src/view/screens/Search/Search.tsx:366 msgid "Top" msgstr "Barr" @@ -5719,12 +4742,7 @@ msgstr "Barr" msgid "Transformations" msgstr "Trasfhoirmithe" -#: src/components/dms/MessageMenu.tsx:103 -#: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/components/dms/MessageMenu.tsx:103 src/components/dms/MessageMenu.tsx:105 src/view/com/post-thread/PostThreadItem.tsx:691 src/view/com/post-thread/PostThreadItem.tsx:693 src/view/com/util/forms/PostDropdownBtn.tsx:280 src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Aistrigh" @@ -5753,23 +4771,11 @@ msgstr "Dรญbhlocรกil an liosta" msgid "Un-mute list" 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:142 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:66 -#: src/view/com/modals/ChangePassword.tsx:71 +#: src/screens/Login/ForgotPasswordForm.tsx:74 src/screens/Login/index.tsx:78 src/screens/Login/LoginForm.tsx:142 src/screens/Login/SetNewPasswordForm.tsx:77 src/screens/Signup/index.tsx:66 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/components/dms/MessagesListBlockedFooter.tsx:89 -#: src/components/dms/MessagesListBlockedFooter.tsx:96 -#: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 -#: src/view/com/profile/ProfileMenu.tsx:363 -#: src/view/screens/ProfileList.tsx:626 +#: src/components/dms/MessagesListBlockedFooter.tsx:89 src/components/dms/MessagesListBlockedFooter.tsx:96 src/components/dms/MessagesListBlockedFooter.tsx:104 src/components/dms/MessagesListBlockedFooter.tsx:111 src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 src/view/com/profile/ProfileMenu.tsx:363 src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Dรญbhlocรกil" @@ -5778,24 +4784,19 @@ msgctxt "action" msgid "Unblock" msgstr "Dรญbhlocรกil" -#: src/components/dms/ConvoMenu.tsx:188 -#: src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 msgid "Unblock account" msgstr "Dรญbhlocรกil an cuntas" -#: src/view/com/profile/ProfileMenu.tsx:301 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:301 src/view/com/profile/ProfileMenu.tsx:307 msgid "Unblock Account" msgstr "Dรญbhlocรกil an cuntas" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 -#: src/view/com/profile/ProfileMenu.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "An bhfuil fonn ort an cuntas seo a dhรญbhlocรกil?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 +#: src/view/com/util/post-ctrls/RepostButton.tsx:62 src/view/com/util/post-ctrls/RepostButton.web.tsx:69 src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" msgstr "Cuir stop leis an athphostรกil" @@ -5812,21 +4813,15 @@ msgstr "Dรญlean" msgid "Unfollow {0}" msgstr "Dรญlean {0}" -#: src/view/com/profile/ProfileMenu.tsx:243 -#: src/view/com/profile/ProfileMenu.tsx:253 +#: src/view/com/profile/ProfileMenu.tsx:243 src/view/com/profile/ProfileMenu.tsx:253 msgid "Unfollow Account" msgstr "Dรญlean an cuntas seo" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Unlike" -#~ msgstr "Dรญmhol" - #: src/view/screens/ProfileFeed.tsx:570 msgid "Unlike this feed" msgstr "Dรญmhol an fotha seo" -#: src/components/TagMenu/index.tsx:249 -#: src/view/screens/ProfileList.tsx:633 +#: src/components/TagMenu/index.tsx:249 src/view/screens/ProfileList.tsx:633 msgid "Unmute" msgstr "Nรก coinnigh i bhfolach" @@ -5834,8 +4829,7 @@ msgstr "Nรก coinnigh i bhfolach" msgid "Unmute {truncatedTag}" msgstr "Nรก coinnigh {truncatedTag} i bhfolach" -#: src/view/com/profile/ProfileMenu.tsx:280 -#: src/view/com/profile/ProfileMenu.tsx:286 +#: src/view/com/profile/ProfileMenu.tsx:280 src/view/com/profile/ProfileMenu.tsx:286 msgid "Unmute Account" msgstr "Nรก coinnigh an cuntas seo i bhfolach nรญos mรณ" @@ -5847,13 +4841,11 @@ msgstr "Nรก coinnigh aon phostรกil {displayTag} i bhfolach" msgid "Unmute conversation" msgstr "Dรญbhalbhaigh an comhrรก seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: 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:290 -#: src/view/screens/ProfileList.tsx:617 +#: src/view/screens/ProfileFeed.tsx:290 src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Dรญghreamaigh" @@ -5877,8 +4869,7 @@ msgstr "Dรญliostรกil" msgid "Unsubscribe from this labeler" msgstr "Dรญliostรกil รณn lipรฉadรณir seo" -#: src/lib/moderation/useReportOptions.ts:71 -#: src/lib/moderation/useReportOptions.ts:84 +#: src/lib/moderation/useReportOptions.ts:71 src/lib/moderation/useReportOptions.ts:84 msgid "Unwanted Sexual Content" msgstr "รbhar graosta nach mian liom" @@ -5902,22 +4893,15 @@ 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:339 -#: src/view/com/util/UserAvatar.tsx:342 -#: src/view/com/util/UserBanner.tsx:123 -#: src/view/com/util/UserBanner.tsx:126 +#: src/view/com/util/UserAvatar.tsx:339 src/view/com/util/UserAvatar.tsx:342 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:356 -#: src/view/com/util/UserBanner.tsx:140 +#: src/view/com/util/UserAvatar.tsx:356 src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Uaslรณdรกil รณ Chomhaid" -#: src/view/com/util/UserAvatar.tsx:350 -#: src/view/com/util/UserAvatar.tsx:354 -#: src/view/com/util/UserBanner.tsx:134 -#: src/view/com/util/UserBanner.tsx:138 +#: src/view/com/util/UserAvatar.tsx:350 src/view/com/util/UserAvatar.tsx:354 src/view/com/util/UserBanner.tsx:134 src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Uaslรณdรกil รณ Leabharlann" @@ -5937,13 +4921,11 @@ msgstr "Bain feidhm as bsky.social mar sholรกthraรญ รณstรกla" msgid "Use default provider" msgstr "รšsรกid an solรกthraรญ rรฉamhshocraithe" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:56 src/view/com/modals/InAppBrowserConsent.tsx:58 msgid "Use in-app browser" msgstr "รšsรกid an brabhsรกlaรญ san aip seo" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:66 src/view/com/modals/InAppBrowserConsent.tsx:68 msgid "Use my default browser" msgstr "รšsรกid an brabhsรกlaรญ rรฉamhshocraithe atรก agam" @@ -5963,8 +4945,7 @@ msgstr "รšsรกid รฉ seo le logรกil isteach ar an aip eile in รฉindรญ le do leasai msgid "Used by:" msgstr "In รบsรกid ag:" -#: src/components/moderation/ModerationDetailsDialog.tsx:64 -#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/components/moderation/ModerationDetailsDialog.tsx:64 src/lib/moderation/useModerationCauseDescription.ts:58 msgid "User Blocked" msgstr "รšsรกideoir blocรกilte" @@ -5988,8 +4969,7 @@ msgstr "รšsรกideoir a bhlocรกlann thรบ" msgid "User Blocks You" msgstr "Blocรกlann an t-รบsรกideoir seo thรบ" -#: src/view/com/lists/ListCard.tsx:87 -#: src/view/com/modals/UserAddRemoveLists.tsx:209 +#: src/view/com/lists/ListCard.tsx:87 src/view/com/modals/UserAddRemoveLists.tsx:209 msgid "User list by {0}" msgstr "Liosta รบsรกideoirรญ le {0}" @@ -5997,9 +4977,7 @@ msgstr "Liosta รบsรกideoirรญ le {0}" msgid "User list by <0/>" msgstr "Liosta รบsรกideoirรญ le <0/>" -#: src/view/com/lists/ListCard.tsx:85 -#: src/view/com/modals/UserAddRemoveLists.tsx:207 -#: src/view/screens/ProfileList.tsx:829 +#: src/view/com/lists/ListCard.tsx:85 src/view/com/modals/UserAddRemoveLists.tsx:207 src/view/screens/ProfileList.tsx:829 msgid "User list by you" msgstr "Liosta รบsรกideoirรญ leat" @@ -6027,10 +5005,7 @@ msgstr "รšsรกideoirรญ" msgid "users followed by <0/>" msgstr "รšsรกideoirรญ a bhfuil <0/> รก leanรบint" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/components/dms/MessagesNUX.tsx:140 src/components/dms/MessagesNUX.tsx:143 src/screens/Messages/Settings.tsx:84 src/screens/Messages/Settings.tsx:87 msgid "Users I follow" msgstr "รšsรกideoirรญ a leanaim" @@ -6046,10 +5021,6 @@ msgstr "รšsรกideoirรญ ar thaitin an t-รกbhar nรณ an prรณifรญl seo leo" msgid "Value:" msgstr "Luach:" -#: src/view/com/modals/ChangeHandle.tsx:510 -#~ msgid "Verify {0}" -#~ msgstr "Dearbhaigh {0}" - #: src/view/com/modals/ChangeHandle.tsx:504 msgid "Verify DNS Record" msgstr "Dearbhaigh taifead DNS" @@ -6066,8 +5037,7 @@ msgstr "Dearbhaigh mo rรญomhphost" msgid "Verify My Email" msgstr "Dearbhaigh Mo Rรญomhphost" -#: src/view/com/modals/ChangeEmail.tsx:200 -#: src/view/com/modals/ChangeEmail.tsx:202 +#: src/view/com/modals/ChangeEmail.tsx:200 src/view/com/modals/ChangeEmail.tsx:202 msgid "Verify New Email" msgstr "Dearbhaigh an Rรญomhphost Nua" @@ -6079,10 +5049,6 @@ msgstr "Dearbhaigh comhad tรฉacs" msgid "Verify Your Email" msgstr "Dearbhaigh Do Rรญomhphost" -#: src/view/screens/Settings/index.tsx:852 -#~ msgid "Version {0}" -#~ msgstr "Leagan {0}" - #: src/view/screens/Settings/index.tsx:935 msgid "Version {appVersion} {bundleInfo}" msgstr "Leagan {appVersion} {bundleInfo}" @@ -6097,7 +5063,7 @@ msgstr "Fรฉach ar an abhatรกr atรก ag {0}" #: src/view/com/notifications/FeedItem.tsx:213 msgid "View {0}'s profile" -msgstr "" +msgstr "Amharc ar phrรณifรญl {0}" #: src/view/screens/Log.tsx:52 msgid "View debug entry" @@ -6119,10 +5085,7 @@ msgstr "Fรฉach ar an snรกithe iomlรกn" msgid "View information about these labels" msgstr "Fรฉach ar eolas faoi na lipรฉid seo" -#: src/components/ProfileHoverCard/index.web.tsx:396 -#: src/components/ProfileHoverCard/index.web.tsx:429 -#: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:396 src/components/ProfileHoverCard/index.web.tsx:429 src/view/com/posts/AviFollowButton.tsx:58 src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Fรฉach ar an bprรณifรญl" @@ -6138,14 +5101,11 @@ msgstr "Fรฉach ar an tseirbhรญs lipรฉadaithe atรก curtha ar fรกil ag @{0}" msgid "View users who like this feed" msgstr "Fรฉach ar รบsรกideoirรญ ar thaitin an fotha seo leo" -#: src/view/com/modals/LinkWarning.tsx:89 -#: src/view/com/modals/LinkWarning.tsx:95 +#: src/view/com/modals/LinkWarning.tsx:89 src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" msgstr "Tabhair cuairt ar an suรญomh" -#: src/components/moderation/LabelPreference.tsx:135 -#: src/lib/moderation/useLabelBehaviorDescription.ts:17 -#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +#: src/components/moderation/LabelPreference.tsx:135 src/lib/moderation/useLabelBehaviorDescription.ts:17 src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" msgstr "Rabhadh" @@ -6181,10 +5141,6 @@ msgstr "Nรญl aon รกbhar nua le taispeรกint รณ na cuntais a leanann tรบ. Seo duit msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Molaimid focail choitianta a bhรญonn i go leor pรณstรกlacha a sheachaint, toisc gur fรฉidir nach dtaispeรกnfaรญ aon phostรกil dรก bharr." -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 -#~ msgid "We recommend our \"Discover\" feed:" -#~ msgstr "Molaimid an fotha โ€œDiscoverโ€." - #: src/components/dialogs/BirthDateSettings.tsx:52 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." @@ -6225,8 +5181,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/components/Lists.tsx:212 -#: src/view/screens/NotFound.tsx:48 +#: src/components/Lists.tsx:212 src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." msgstr "รr leithscรฉal, ach nรญ fรฉidir linn an leathanach atรก tรบ ag lorg a aimsiรบ." @@ -6236,19 +5191,13 @@ msgstr "Tรก brรณn orainn! Nรญ fรฉidir sรญntiรบis a ghlacadh ach le deich lipรฉad #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" -msgstr "" - -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 -#~ msgid "Welcome to <0>Bluesky" -#~ msgstr "Fรกilte go <0>Bluesky" +msgstr "Fรกilte ar ais!" #: src/screens/Onboarding/StepInterests/index.tsx:135 msgid "What are your interests?" msgstr "Cad iad na rudaรญ a bhfuil suim agat iontu?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/auth/SplashScreen.tsx:40 src/view/com/auth/SplashScreen.web.tsx:86 src/view/com/composer/Composer.tsx:340 msgid "What's up?" msgstr "Aon scรฉal?" @@ -6260,8 +5209,7 @@ msgstr "Cad iad na teangacha sa phostรกil seo?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Cad iad na teangacha ba mhaith leat a fheiceรกil i do chuid fothaรญ algartamacha?" -#: src/components/dms/MessagesNUX.tsx:110 -#: src/components/dms/MessagesNUX.tsx:124 +#: src/components/dms/MessagesNUX.tsx:110 src/components/dms/MessagesNUX.tsx:124 msgid "Who can message you?" msgstr "Cรฉ ar fรฉidir leo teachtaireacht a sheoladh chugat?" @@ -6269,8 +5217,7 @@ msgstr "Cรฉ ar fรฉidir leo teachtaireacht a sheoladh chugat?" msgid "Who can reply" msgstr "Cรฉ atรก in ann freagra a thabhairt" -#: src/screens/Home/NoFeedsPinned.tsx:92 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Home/NoFeedsPinned.tsx:92 src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "รšps!" @@ -6302,8 +5249,7 @@ msgstr "Cรฉn fรกth gur cheart athbhreithniรบ a dhรฉanamh ar an รบsรกideoir seo?" msgid "Wide" msgstr "Leathan" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:134 +#: src/screens/Messages/Conversation/MessageInput.tsx:140 src/screens/Messages/Conversation/MessageInput.web.tsx:134 msgid "Write a message" msgstr "Scrรญobh teachtaireacht" @@ -6311,8 +5257,7 @@ msgstr "Scrรญobh teachtaireacht" msgid "Write post" msgstr "Scrรญobh postรกil" -#: src/view/com/composer/Composer.tsx:339 -#: src/view/com/composer/Prompt.tsx:39 +#: src/view/com/composer/Composer.tsx:339 src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Scrรญobh freagra" @@ -6320,24 +5265,17 @@ msgstr "Scrรญobh freagra" 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/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 msgid "Yes" msgstr "Tรก" -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "" +msgstr "Tรก, dรญghnรญomhaigh" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" -msgstr "" +msgstr "Tรก, athghnรญomhaigh mo chuntas" #: src/components/dms/MessageItem.tsx:188 msgid "Yesterday, {time}" @@ -6351,18 +5289,13 @@ msgstr "Tรก tรบ sa scuaine." msgid "You are not following anyone." msgstr "Nรญl รฉinne รก leanรบint agat." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:67 src/view/com/posts/FollowingEndOfFeed.tsx:68 msgid "You can also discover new Custom Feeds to follow." msgstr "Is fรฉidir leat sainfhothaรญ nua a aimsiรบ le leanรบint." #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:143 -#~ msgid "You can change these settings later." -#~ msgstr "Is fรฉidir leat na socruithe seo a athrรบ nรญos dรฉanaรญ." +msgstr "Is fรฉidir leat do chuntas a dhรญghnรญomhรบ go sealadach, agus รฉ a athghnรญomhรบ uair ar bith." #: src/components/dms/MessagesNUX.tsx:119 msgid "You can change this at any time." @@ -6372,14 +5305,13 @@ msgstr "Is fรฉidir leat รฉ seo a athrรบ uair ar bith." msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Is fรฉidir leat leanacht le comhrรกite beag beann ar cรฉn socrรบ a roghnaรญonn tรบ." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:158 src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "You can now sign in with your new password." msgstr "Is fรฉidir leat logรกil isteach le do phasfhocal nua anois." #: 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 "Is fรฉidir leat do chuntas a athghnรญomhรบ chun leanacht ort ag logรกil isteach. Beidh รบsรกideoirรญ eile in ann do phrรณifรญl agus do chuid postรกlacha a fheiceรกil." #: src/view/com/profile/ProfileFollowers.tsx:86 msgid "You do not have any followers." @@ -6393,10 +5325,6 @@ msgstr "Nรญl aon chรณid chuiridh agat fรณs! Cuirfidh muid cรบpla cรณd chugat tar msgid "You don't have any pinned feeds." msgstr "Nรญl aon fhothaรญ greamaithe agat." -#: src/view/screens/Feeds.tsx:477 -#~ msgid "You don't have any saved feeds!" -#~ msgstr "Nรญl aon fhothaรญ sรกbhรกilte agat!" - #: src/view/screens/SavedFeeds.tsx:158 msgid "You don't have any saved feeds." msgstr "Nรญl aon fhothaรญ sรกbhรกilte agat." @@ -6409,16 +5337,11 @@ msgstr "Bhlocรกil tรบ an t-รบdar nรณ tรก tรบ blocรกilte ag an รบdar." msgid "You have blocked this user" msgstr "Bhlocรกil tรบ an t-รบsรกideoir seo" -#: src/components/moderation/ModerationDetailsDialog.tsx:66 -#: src/lib/moderation/useModerationCauseDescription.ts:52 -#: src/lib/moderation/useModerationCauseDescription.ts:60 +#: src/components/moderation/ModerationDetailsDialog.tsx:66 src/lib/moderation/useModerationCauseDescription.ts:52 src/lib/moderation/useModerationCauseDescription.ts:60 msgid "You have blocked this user. You cannot view their content." msgstr "Bhlocรกil tรบ an cuntas seo. Nรญ fรฉidir leat a gcuid รกbhar a fheiceรกil." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 -#: src/view/com/modals/ChangePassword.tsx:88 -#: src/view/com/modals/ChangePassword.tsx:122 +#: src/screens/Login/SetNewPasswordForm.tsx:54 src/screens/Login/SetNewPasswordForm.tsx:91 src/view/com/modals/ChangePassword.tsx:88 src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." msgstr "Tรก tรบ tar รฉis cรณd mรญchruinn a chur isteach. Ba cheart an cruth seo a bheith air: XXXXX-XXXXX." @@ -6430,8 +5353,7 @@ msgstr "Chuir tรบ an phostรกil seo i bhfolach" msgid "You have hidden this post." msgstr "Chuir tรบ an phostรกil seo i bhfolach." -#: src/components/moderation/ModerationDetailsDialog.tsx:94 -#: src/lib/moderation/useModerationCauseDescription.ts:94 +#: src/components/moderation/ModerationDetailsDialog.tsx:94 src/lib/moderation/useModerationCauseDescription.ts:94 msgid "You have muted this account." msgstr "Chuir tรบ an cuntas seo i bhfolach." @@ -6447,8 +5369,7 @@ msgstr "Nรญl comhrรก ar bith agat fรณs. Tosaigh ceann!" msgid "You have no feeds." msgstr "Nรญl aon fhothaรญ agat." -#: src/view/com/lists/MyLists.tsx:90 -#: src/view/com/lists/ProfileLists.tsx:145 +#: src/view/com/lists/MyLists.tsx:90 src/view/com/lists/ProfileLists.tsx:145 msgid "You have no lists." msgstr "Nรญl aon liostaรญ agat." @@ -6484,17 +5405,13 @@ msgstr "Is fรฉidir leat achomharc a dhรฉanamh maidir leis na lipรฉad seo mรก sh msgid "You must be 13 years of age or older to sign up." msgstr "Caithfidh tรบ a bheith 13 bliana dโ€™aois nรณ nรญos sine le clรกrรบ." -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 -#~ 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/ReportDialog/SubmitView.tsx:206 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" #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "Rinne tรบ dรญghnรญomhรบ ar @{0} cheana." #: src/view/com/util/forms/PostDropdownBtn.tsx:173 msgid "You will no longer receive notifications for this thread" @@ -6514,33 +5431,25 @@ msgstr "Tusa {0}" #: src/screens/Messages/List/ChatListItem.tsx:142 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "" +msgstr "Tusa: {defaultEmbeddedContentMessage}" #: src/screens/Messages/List/ChatListItem.tsx:135 msgid "You: {short}" -msgstr "" +msgstr "Tusa: {short}" -#: src/screens/Onboarding/StepModeration/index.tsx:60 -#~ msgid "You're in control" -#~ msgstr "Tรก sรฉ faoi do stiรบir" - -#: src/screens/SignupQueued.tsx:93 -#: src/screens/SignupQueued.tsx:94 -#: src/screens/SignupQueued.tsx:109 +#: src/screens/SignupQueued.tsx:93 src/screens/SignupQueued.tsx:94 src/screens/SignupQueued.tsx:109 msgid "You're in line" msgstr "Tรก tรบ sa scuaine" -#: src/screens/Deactivated.tsx:89 -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +#: 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 "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:123 msgid "You're ready to go!" msgstr "Tรก tรบ rรฉidh!" -#: src/components/moderation/ModerationDetailsDialog.tsx:98 -#: src/lib/moderation/useModerationCauseDescription.ts:103 +#: src/components/moderation/ModerationDetailsDialog.tsx:98 src/lib/moderation/useModerationCauseDescription.ts:103 msgid "You've chosen to hide a word or tag within this post." msgstr "Roghnaigh tรบ focal nรณ clib atรก sa phostรกil seo a chur i bhfolach." @@ -6572,13 +5481,7 @@ msgstr "Cuireadh do chuid comhrรกite ar ceal" msgid "Your choice will be saved, but can be changed later in settings." msgstr "Sรกbhรกlfar do rogha, ach is fรฉidir รฉ athrรบ nรญos dรฉanaรญ sna socruithe." -#: src/screens/Onboarding/StepFollowingFeed.tsx:62 -#~ msgid "Your default feed is \"Following\"" -#~ msgstr "Is รฉ โ€œFollowingโ€ dโ€™fhotha rรฉamhshocraithe" - -#: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 -#: src/view/com/modals/ChangePassword.tsx:55 +#: src/screens/Login/ForgotPasswordForm.tsx:57 src/screens/Signup/state.ts:220 src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Is cosรบil go bhfuil do rรญomhphost neamhbhailรญ." @@ -6624,7 +5527,7 @@ msgstr "Do phrรณifรญl" #: 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 "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:329 msgid "Your reply has been published" @@ -6637,3 +5540,551 @@ msgstr "Seolfar do thuairisc go dtรญ Seirbhรญs Modhnรณireachta Bluesky" #: src/screens/Signup/index.tsx:166 msgid "Your user handle" msgstr "Do leasainm" + +#: src/components/moderation/LabelsOnMe.tsx:55 +#, fuzzy +#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" +#~ msgstr "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an gcuntas seo} two {Cuireadh # lipรฉad ar an gcuntas seo} few {Cuireadh # lipรฉad ar an gcuntas seo} many {Cuireadh # lipรฉad ar an gcuntas seo} other {Cuireadh # lipรฉad ar an gcuntas seo}}" + +#: src/components/moderation/LabelsOnMe.tsx:61 +#, fuzzy +#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" +#~ msgstr "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an รกbhar seo} two {Cuireadh # lipรฉad ar an รกbhar seo} few {Cuireadh # lipรฉad ar an รกbhar seo} many {Cuireadh # lipรฉad ar an รกbhar seo} other {Cuireadh # lipรฉad ar an รกbhar seo}}" + +#: src/view/screens/ProfileList.tsx:286 +#, fuzzy +#~ msgid "{0} your feeds" +#~ msgstr "Sรกbhรกilte le mo chuid fothaรญ" + +#: src/view/shell/Drawer.tsx:96 +#~ msgid "<0>{0} following" +#~ msgstr "<0>{0} รก leanรบint" + +#: src/components/ProfileHoverCard/index.web.tsx:437 +#~ msgid "<0>{followers} <1>{pluralizedFollowers}" +#~ msgstr "<0>{following} <1>{pluralizedFollowers}" + +#: src/components/ProfileHoverCard/index.web.tsx:449 src/screens/Profile/Header/Metrics.tsx:45 +#~ msgid "<0>{following} <1>following" +#~ msgstr "<0>{following} <1>รก leanรบint" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 +#~ msgid "<0>Choose your<1>Recommended<2>Feeds" +#~ msgstr "<0>Roghnaigh do chuid<1>Fothaรญ<2>Molta" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 +#~ msgid "<0>Follow some<1>Recommended<2>Users" +#~ msgstr "<0>Lean cรบpla<1>รšsรกideoirรญ<2>Molta" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 +#~ msgid "<0>Welcome to<1>Bluesky" +#~ msgstr "<0>Fรกilte go<1>Bluesky" + +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "account" +#~ msgstr "cuntas" + +#: src/view/com/composer/GifAltText.tsx:175 +#, fuzzy +#~ msgid "Add ALT text" +#~ msgstr "Cuir tรฉacs malartach leis seo" + +#: src/view/com/composer/Composer.tsx:467 +#~ msgid "Add link card" +#~ msgstr "Cuir cรกrta leanรบna leis seo" + +#: src/view/com/composer/Composer.tsx:472 +#~ msgid "Add link card:" +#~ msgstr "Cuir cรกrta leanรบna leis seo:" + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 +#~ msgid "Added" +#~ msgstr "Curtha leis" + +#: src/screens/Messages/Settings.tsx:61 src/screens/Messages/Settings.tsx:64 +#, fuzzy +#~ msgid "Allow messages from" +#~ msgstr "Ceadaigh teachtaireachtaรญ nua รณ" + +#: src/components/moderation/LabelsOnMeDialog.tsx:193 +#~ msgid "Appeal submitted." +#~ msgstr "Achomharc dรฉanta" + +#: src/components/dms/MessageMenu.tsx:123 +#, fuzzy +#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." +#~ msgstr "An bhfuil tรบ cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse รญ ach nรญ don duine eile atรก pรกirteach." + +#: 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." +#~ msgstr "An bhfuil tรบ cinnte gur mhaith leat imeacht รณn gcomhrรก seo? Scriosfar duitse รฉ ach nรญ don duine eile atรก pรกirteach." + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 +#~ msgid "Based on your interest in {interestsText}" +#~ msgstr "Toisc go bhfuil suim agat in {interestsText}" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 src/view/com/auth/onboarding/WelcomeMobile.tsx:82 +#~ msgid "Bluesky is flexible." +#~ msgstr "Tรก Bluesky solรบbtha." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 src/view/com/auth/onboarding/WelcomeMobile.tsx:71 +#~ msgid "Bluesky is open." +#~ msgstr "Tรก Bluesky oscailte." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 src/view/com/auth/onboarding/WelcomeMobile.tsx:58 +#~ msgid "Bluesky is public." +#~ msgstr "Tรก Bluesky poiblรญ." + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 +#~ msgid "by {0}" +#~ msgstr "le {0}" + +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 +#~ msgid "by @{0}" +#~ msgstr "ag @{0}" + +#: 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 "Cuir sรบil ar na fothaรญ seo. Brรบigh + len iad a chur le liosta na bhfothaรญ atรก greamaithe agat." + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 +#~ 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/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 "Roghnaigh na halgartaim a shainรญonn an dรณigh a n-oibrรญonn do chuid sainfhothaรญ." + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 +#~ msgid "Choose your main feeds" +#~ msgstr "Roghnaigh do phrรญomhfhothaรญ" + +#: src/screens/Feeds/NoFollowingFeed.tsx:46 +#, fuzzy +#~ msgid "Click here to add one." +#~ msgstr "Cliceรกil anseo do bhreis eolais." + +#: src/components/RichText.tsx:198 +#~ msgid "Click here to open tag menu for #{tag}" +#~ msgstr "Cliceรกil anseo le clรกr na clibe le haghaidh #{tag} a oscailt" + +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 +#~ msgid "Configure content filtering setting for category: {0}" +#~ msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {0}" + +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "content" +#~ msgstr "รกbhar" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 +#~ msgid "Continue to the next step" +#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 +#~ msgid "Continue to the next step without following any accounts" +#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile gan aon chuntas a leanรบint" + +#: src/components/dms/ConvoMenu.tsx:68 +#, fuzzy +#~ msgid "Could not unmute chat" +#~ msgstr "Nรญor รฉirรญodh ar an gcomhrรก a bhalbhรบ" + +#: src/view/com/composer/Composer.tsx:469 +#~ msgid "Creates a card with a thumbnail. The card links to {url}" +#~ msgstr "Cruthaรญonn sรฉ seo cรกrta le mionsamhail. Nascann an cรกrta le {url}." + +#: src/view/com/modals/DeleteAccount.tsx:87 +#~ msgid "Delete Account" +#~ msgstr "Scrios an Cuntas" + +#: src/view/screens/Settings/index.tsx:697 +#~ msgid "Disable haptics" +#~ msgstr "Nรก hรบsรกid aiseolas haptach" + +#: src/view/screens/Settings/index.tsx:697 +#~ msgid "Disable vibrations" +#~ msgstr "Nรก hรบsรกid creathadh" + +#: 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 "De bharr pholasaรญ Apple, nรญ fรฉidir รกbhar do dhaoine fรกsta ar an nGrรฉasรกn a fhรกil roimh an logรกil isteach a chrรญochnรบ." + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 +#~ msgid "Enable Adult Content" +#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 +#~ msgid "Enable adult content in your feeds" +#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil i do chuid fothaรญ" + +#: src/components/Lists.tsx:52 +#, fuzzy +#~ msgid "End of list" +#~ msgstr "Curtha leis an liosta" + +#: src/screens/Messages/Conversation/MessageListError.tsx:28 +#, fuzzy +#~ msgid "Failed to load past messages." +#~ msgstr "Teip ar theachtaireachtaรญ roimhe seo a lรณdรกil" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:110 src/view/com/auth/onboarding/RecommendedFeeds.tsx:143 +#~ msgid "Failed to load recommended feeds" +#~ msgstr "Teip ar lรณdรกil na bhfothaรญ molta" + +#: src/screens/Messages/Conversation/MessageListError.tsx:29 +#, fuzzy +#~ msgid "Failed to send message(s)." +#~ msgstr "Teip ar theachtaireacht a scriosadh" + +#: 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 "Is iad na hรบsรกideoirรญ a chruthaรญonn na fothaรญ le hรกbhar is spรฉis leo a chur ar fรกil. Roghnaigh cรบpla fotha a bhfuil suim agat iontu." + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 +#~ msgid "Feeds can be topical as well!" +#~ msgstr "Is fรฉidir le fothaรญ a bheith bunaithe ar chรบrsaรญ reatha freisin!" + +#: src/view/screens/Search/Search.tsx:589 +#~ msgid "Find users on Bluesky" +#~ msgstr "Aimsigh รบsรกideoirรญ ar Bluesky" + +#: src/view/screens/Search/Search.tsx:587 +#~ msgid "Find users with the search tool on the right" +#~ msgstr "Aimsigh รบsรกideoirรญ leis an uirlis chuardaigh ar dheis" + +#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 +#~ msgid "Finding similar accounts..." +#~ msgstr "Cuntais eile atรก cosรบil leis seo รก n-aimsiรบ..." + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#~ msgid "Follow All" +#~ msgstr "Lean iad uile" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +#~ msgid "Follow selected accounts and continue to the next step" +#~ msgstr "Lean na cuntais roghnaithe agus tรฉigh ar aghaidh go dtรญ an chรฉad chรฉim eile" + +#: 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 "Lean cรบpla cuntas mar thosรบ. Tig linn nรญos mรณ รบsรกideoirรญ a mholadh duit a mbeadh suim agat iontu." + +#: src/view/screens/Search/Search.tsx:827 src/view/shell/desktop/Search.tsx:263 +#~ msgid "Go to @{queryMaybeHandle}" +#~ msgstr "Tรฉigh go dtรญ @{queryMaybeHandle}" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 +#~ msgid "Here are some accounts for you to follow" +#~ msgstr "Seo cรบpla cuntas le leanรบint duit" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 +#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." +#~ msgstr "Seo cรบpla fotha a bhfuil rรกchairt orthu. Is fรฉidir leat an mรฉid acu is mian leat a leanรบint." + +#: 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 "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/screens/Onboarding/StepFollowingFeed.tsx:65 +#~ 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/components/moderation/LabelsOnMe.tsx:59 +#~ msgid "label has been placed on this {labelTarget}" +#~ msgstr "cuireadh lipรฉad ar an {labelTarget} seo" + +#: src/components/moderation/LabelsOnMe.tsx:61 +#~ msgid "labels have been placed on this {labelTarget}" +#~ msgstr "cuireadh lipรฉid ar an {labelTarget}" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Like" +#~ msgstr "Mol" + +#: src/view/com/feeds/FeedSourceCard.tsx:268 +#~ msgid "Liked by {0} {1}" +#~ msgstr "Molta ag {0} {1}" + +#: src/components/LabelingServiceCard/index.tsx:72 +#~ msgid "Liked by {count} {0}" +#~ msgstr "Molta ag {count} {0}" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287 src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301 src/view/screens/ProfileFeed.tsx:600 +#~ msgid "Liked by {likeCount} {0}" +#~ msgstr "Molta ag {likeCount} {0}" + +#: src/screens/Feeds/NoFollowingFeed.tsx:38 +#, fuzzy +#~ msgid "Looks like you're missing a following feed." +#~ msgstr "Is cosรบil go bhfuil fotha leanรบna ar iarraidh ort. <0>Cliceรกil anseo le ceann a fhรกil." + +#: src/Navigation.tsx:307 +#, fuzzy +#~ msgid "Messaging settings" +#~ msgstr "Socruithe teachtaireachta" + +#: src/components/dms/ConvoMenu.tsx:136 src/components/dms/ConvoMenu.tsx:142 +#, fuzzy +#~ msgid "Mute notifications" +#~ msgstr "Fรณgraรญ" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:72 src/view/com/auth/onboarding/WelcomeMobile.tsx:74 +#~ 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/view/com/auth/onboarding/WelcomeDesktop.tsx:103 +#~ msgctxt "action" +#~ msgid "Next" +#~ msgstr "Ar aghaidh" + +#: src/components/dms/NewChat.tsx:240 +#, fuzzy +#~ msgid "No search results found for \"{searchText}\"." +#~ msgstr "Gan torthaรญ ar \"{search}\"." + +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "Not Applicable." +#~ msgstr "Nรญ bhaineann sรฉ sin le hรกbhar." + +#: src/screens/Signup/index.tsx:145 +#~ msgid "of" +#~ msgstr "de" + +#: src/view/com/notifications/FeedItem.tsx:349 +#~ msgid "Opens an expanded list of users in this notification" +#~ msgstr "Osclaรญonn sรฉ seo liosta mรฉadaithe dโ€™รบsรกideoirรญ san fhรณgra seo" + +#: src/screens/Messages/List/index.tsx:86 +#, fuzzy +#~ msgid "Opens the message settings page" +#~ msgstr "Osclaรญonn sรฉ seo logleabhar an chรณrais" + +#: src/screens/Messages/Settings.tsx:97 src/screens/Messages/Settings.tsx:104 +#, fuzzy +#~ msgid "Play notification sounds" +#~ msgstr "Fuaimeanna fรณgra" + +#: src/screens/Messages/Conversation/MessagesList.tsx:47 src/screens/Messages/Conversation/MessagesList.tsx:53 +#, fuzzy +#~ msgid "Press to Retry" +#~ msgstr "Brรบigh le iarracht eile a dhรฉanamh" + +#: src/view/com/modals/Repost.tsx:66 +#~ msgctxt "action" +#~ msgid "Quote post" +#~ msgstr "Luaigh an phostรกil seo" + +#: src/view/com/modals/Repost.tsx:71 +#~ msgctxt "action" +#~ msgid "Quote Post" +#~ msgstr "Luaigh an phostรกil seo" + +#: src/components/dms/MessageReportDialog.tsx:149 +#, fuzzy +#~ msgid "Reason: {0}" +#~ msgstr "Fรกth:" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 +#~ msgid "Recommended Feeds" +#~ msgstr "Fothaรญ molta" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 +#~ msgid "Recommended Users" +#~ msgstr "Cuntais mholta" + +#: src/view/com/post/Post.tsx:177 src/view/com/posts/FeedItem.tsx:285 +#~ msgctxt "description" +#~ msgid "Reply to <0/>" +#~ msgstr "Freagra ar <0/>" + +#: src/components/dms/ConvoMenu.tsx:146 src/components/dms/ConvoMenu.tsx:150 +#, fuzzy +#~ msgid "Report account" +#~ msgstr "Dรฉan gearรกn faoi chuntas" + +#: src/view/com/posts/FeedItem.tsx:214 +#~ msgid "Reposted by <0/>" +#~ msgstr "Athphostรกilte ag <0/>" + +#: src/screens/Messages/Conversation/MessageListError.tsx:54 +#, fuzzy +#~ msgid "Retry." +#~ msgstr "Bain triail eile as" + +#: src/view/com/lightbox/Lightbox.tsx:81 +#~ msgid "Saved to your camera roll." +#~ msgstr "Sรกbhรกilte i do rolla ceamara." + +#: src/view/com/notifications/FeedItem.tsx:411 src/view/com/util/UserAvatar.tsx:402 +#~ msgid "See profile" +#~ msgstr "Fรฉach ar an bprรณifรญl" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 +#~ msgid "See what's next" +#~ msgstr "Fรฉach an chรฉad rud eile" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 +#~ msgid "Select some accounts below to follow" +#~ msgstr "Roghnaigh cรบpla cuntas le leanรบint" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 +#~ msgid "Select topical feeds to follow from the list below" +#~ msgstr "Roghnaigh fothaรญ le leanรบint รณn liosta thรญos" + +#: 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" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 +#~ msgid "Select your primary algorithmic feeds" +#~ msgstr "Roghnaigh do phrรญomhfhothaรญ algartamacha" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 +#~ msgid "Select your secondary algorithmic feeds" +#~ msgstr "Roghnaigh do chuid fothaรญ algartamacha tรกnaisteacha" + +#: src/view/screens/PreferencesFollowingFeed.tsx:68 +#~ msgid "Show all replies" +#~ msgstr "Taispeรกin gach freagra" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:119 +#~ msgid "Show quote-posts in Following feed" +#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:135 +#~ msgid "Show quotes in Following" +#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:95 +#~ msgid "Show re-posts in Following feed" +#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:87 +#~ msgid "Show replies in Following" +#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:71 +#~ msgid "Show replies in Following feed" +#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" + +#: src/view/screens/PreferencesFollowingFeed.tsx:70 +#~ msgid "Show replies with at least {value} {0}" +#~ msgstr "Taispeรกin freagraรญ a bhfuil ar a laghad {value} {0} acu" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:111 +#~ msgid "Show reposts in Following" +#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" + +#: src/view/com/notifications/FeedItem.tsx:347 +#~ msgid "Show users" +#~ msgstr "Taispeรกin รบsรกideoirรญ" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#~ msgid "Source:" +#~ msgstr "Foinse:" + +#: src/view/screens/Settings/index.tsx:862 +#~ msgid "Status page" +#~ msgstr "Leathanach stรกdais" + +#: src/screens/Signup/index.tsx:145 +#~ msgid "Step" +#~ msgstr "Cรฉim" + +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:172 src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 +#~ msgid "Subscribe to the {0} feed" +#~ msgstr "Liostรกil leis an bhfotha {0}" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#~ msgid "the author" +#~ msgstr "an t-รบdar" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 +#~ msgid "There are many feeds to try:" +#~ msgstr "Tรก a lรกn fothaรญ ann le blaiseadh:" + +#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#, fuzzy +#~ msgid "There was an issue connecting to the chat." +#~ msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh le Tenor." + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 +#~ msgid "There was an issue syncing your preferences with the server" +#~ msgstr "Bhรญ fadhb ann maidir le do chuid roghanna a shioncronรบ leis an bhfreastalaรญ" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 +#~ msgid "These are popular accounts you might like:" +#~ msgstr "Is cuntais iad seo a bhfuil a lรกn leantรณirรญ acu. Is fรฉidir go dtaitneoidh siad leat." + +#: src/screens/Messages/Conversation/MessageListError.tsx:26 +#, fuzzy +#~ msgid "This chat was disconnected due to a network error." +#~ msgstr "Dรญnascadh an comhrรก seo" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#~ msgid "This label was applied by {0}." +#~ msgstr "Cuireadh an lipรฉad seo ag {0}." + +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +#, fuzzy +#~ msgid "This label was applied by you" +#~ msgstr "Chuir tusa an lipรฉad seo leis." + +#: src/view/com/modals/SelfLabel.tsx:137 +#~ msgid "This warning is only available for posts with media attached." +#~ msgstr "Nรญl an rabhadh seo ar fรกil ach le haghaidh postรกlacha a bhfuil meรกin ceangailte leo." + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Unlike" +#~ msgstr "Dรญmhol" + +#: src/components/dms/ConvoMenu.tsx:140 +#, fuzzy +#~ msgid "Unmute notifications" +#~ msgstr "Lรณdรกil fรณgraรญ nua" + +#: src/lib/moderation/useReportOptions.ts:85 +#, fuzzy +#~ msgid "Unwanted sexual content" +#~ msgstr "รbhar graosta nach mian liom" + +#: src/view/com/modals/ChangeHandle.tsx:510 +#~ msgid "Verify {0}" +#~ msgstr "Dearbhaigh {0}" + +#: src/view/screens/Settings/index.tsx:852 +#~ msgid "Version {0}" +#~ msgstr "Leagan {0}" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 +#~ msgid "We recommend our \"Discover\" feed:" +#~ msgstr "Molaimid an fotha โ€œDiscoverโ€." + +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 +#~ msgid "Welcome to <0>Bluesky" +#~ msgstr "Fรกilte go <0>Bluesky" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:143 +#~ msgid "You can change these settings later." +#~ msgstr "Is fรฉidir leat na socruithe seo a athrรบ nรญos dรฉanaรญ." + +#: src/view/screens/Feeds.tsx:477 +#~ msgid "You don't have any saved feeds!" +#~ msgstr "Nรญl aon fhothaรญ sรกbhรกilte agat!" + +#: src/screens/Messages/List/index.tsx:200 +#, fuzzy +#~ msgid "You have no messages yet. Start a conversation with someone!" +#~ msgstr "Nรญl comhrรก ar bith agat fรณs. Tosaigh ceann!" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 +#~ 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/screens/Onboarding/StepModeration/index.tsx:60 +#~ msgid "You're in control" +#~ msgstr "Tรก sรฉ faoi do stiรบir" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:62 +#~ msgid "Your default feed is \"Following\"" +#~ msgstr "Is รฉ โ€œFollowingโ€ dโ€™fhotha rรฉamhshocraithe" From 43f6b68aa2219075dcec0a7fa1aa40b2631f4f19 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Tue, 11 Jun 2024 23:27:34 +0100 Subject: [PATCH 10/86] Update French localization (#4437) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update French localization * use `point mรฉdian` * Update messages.po * add three new strings * translate new string * Apply suggestions from code review Co-authored-by: Stanislas Signoud * update revision date --------- Co-authored-by: Stanislas Signoud --- src/locale/locales/fr/messages.po | 93 +++++++++++++++++-------------- 1 file changed, 52 insertions(+), 41 deletions(-) diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 603338b449..9c4bad492f 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -8,14 +8,14 @@ msgstr "" "Language: fr\n" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-06-03 00:18+0200\n" -"Last-Translator: Stanislas Signoud (@signez.fr)\n" +"PO-Revision-Date: 2024-06-11 14:30+0100\n" +"Last-Translator: surfdude29\n" "Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n" "Plural-Forms: \n" #: src/screens/Messages/List/ChatListItem.tsx:119 msgid "(contains embedded content)" -msgstr "" +msgstr "(contient du contenu intรฉgrรฉ)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" @@ -335,7 +335,7 @@ msgstr "ALT" #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" -msgstr "Texte Alt" +msgstr "Texte alt" #: src/view/com/util/post-embeds/GifEmbed.tsx:179 msgid "Alt Text" @@ -343,7 +343,7 @@ msgstr "Texte alt" #: 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 "Le texte Alt dรฉcrit les images pour les personnes aveugles et malvoyantes, et aide ร  donner un contexte ร  tout le monde." +msgstr "Le texte alt dรฉcrit les images pour les personnes aveugles et malvoyantes, et aide ร  donner un contexte ร  tout le monde." #: src/view/com/modals/VerifyEmail.tsx:132 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 @@ -712,7 +712,7 @@ msgstr "Annuler la citation" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +msgstr "Annuler la rรฉactivation et se dรฉconnecter" #: src/view/com/modals/ListAddRemoveUsers.tsx:87 #: src/view/shell/desktop/Search.tsx:214 @@ -857,11 +857,11 @@ msgstr "cliquez ici" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "Cliquez ici pour plus dโ€™informations sur la dรฉsactivation de votre compte" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" +msgstr "Cliquez ici pour plus dโ€™informations." #: src/components/TagMenu/index.web.tsx:138 msgid "Click here to open tag menu for {tag}" @@ -1257,11 +1257,11 @@ msgstr "Date de naissance" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 #: src/view/screens/Settings/index.tsx:806 msgid "Deactivate account" -msgstr "" +msgstr "Dรฉsactiver le compte" #: src/view/screens/Settings/index.tsx:818 msgid "Deactivate my account" -msgstr "" +msgstr "Dรฉsactiver mon compte" #: src/view/screens/Settings/index.tsx:873 msgid "Debug Moderation" @@ -2302,7 +2302,7 @@ msgstr "Je comprends" #: src/view/com/lightbox/Lightbox.web.tsx:185 msgid "If alt text is long, toggles alt text expanded state" -msgstr "Si le texte alternatif est trop long, change son mode dโ€™affichage" +msgstr "Si le texte alt est trop long, change son mode dโ€™affichage" #: src/view/com/modals/SelfLabel.tsx:128 msgid "If none are selected, suitable for all ages." @@ -2326,7 +2326,7 @@ msgstr "Si vous souhaitez modifier votre mot de passe, nous vous enverrons un co #: 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 vous essayez de changer de pseudo ou dโ€™adresse e-mail, faites-le avant de dรฉsactiver votre compte." #: src/lib/moderation/useReportOptions.ts:37 msgid "Illegal and Urgent" @@ -2655,7 +2655,7 @@ msgstr "Journaux" #: src/screens/Deactivated.tsx:214 #: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" -msgstr "" +msgstr "Se connecter ou sโ€™inscrire" #: src/screens/SignupQueued.tsx:155 #: src/screens/SignupQueued.tsx:158 @@ -3115,6 +3115,10 @@ msgstr "Pas encore de notificationsย !" msgid "No one" msgstr "Personne" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "Pas encore de posts." + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3386,7 +3390,7 @@ msgstr "Ouvre la liste des codes dโ€™invitation" #: src/view/screens/Settings/index.tsx:808 msgid "Opens modal for account deactivation confirmation" -msgstr "" +msgstr "Ouvre la fenรชtre modale pour confirmer la dรฉsactivation du compte" #: src/view/screens/Settings/index.tsx:830 msgid "Opens modal for account deletion confirmation. Requires email code" @@ -3474,11 +3478,11 @@ msgstr "Ou une combinaison de ces optionsย :" #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." -msgstr "" +msgstr "Ou continuer avec un autre compte." #: src/screens/Deactivated.tsx:194 msgid "Or, log into one of your other accounts." -msgstr "" +msgstr "Ou connectez-vous ร  lโ€™un de vos autres comptes." #: src/lib/moderation/useReportOptions.ts:26 msgid "Other" @@ -3494,7 +3498,7 @@ msgstr "Autreโ€ฆ" #: src/screens/Messages/Conversation/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -msgstr "Notre modรฉration a examinรฉ les signalements quโ€™elle a reรงu et a dรฉcidรฉ de dรฉsactiver vos accรจs aux discussion sur Bluesky." +msgstr "Notre modรฉration a examinรฉ les signalements quโ€™elle a reรงu et a dรฉcidรฉ de dรฉsactiver votre accรจs aux discussions sur Bluesky." #: src/components/Lists.tsx:208 #: src/view/screens/NotFound.tsx:45 @@ -3837,7 +3841,7 @@ msgstr "Ratios" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "" +msgstr "Rรฉactiver votre compte" #: src/components/dms/ReportDialog.tsx:172 msgid "Reason:" @@ -3916,11 +3920,11 @@ msgstr "Supprimer le mot masquรฉ de votre liste" #: src/view/screens/Search/Search.tsx:1014 msgid "Remove profile" -msgstr "" +msgstr "Supprimer le profil" #: src/view/screens/Search/Search.tsx:1016 msgid "Remove profile from search history" -msgstr "" +msgstr "Supprimer le profil de lโ€™historique de recherche" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:238 msgid "Remove quote" @@ -4795,7 +4799,7 @@ msgstr "Quelque chose nโ€™a pas marchรฉ" #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "" +msgstr "Quelque chose nโ€™a pas marchรฉ, veuillez rรฉessayer" #: src/components/ReportDialog/index.tsx:59 #: src/screens/Moderation/index.tsx:114 @@ -5044,7 +5048,7 @@ msgstr "Nos conditions dโ€™utilisation ont รฉtรฉ dรฉplacรฉes vers" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +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:541 @@ -5182,6 +5186,10 @@ msgstr "Ce contenu nโ€™est pas disponible car lโ€™un des comptes impliquรฉs a bl msgid "This content is not viewable without a Bluesky account." msgstr "Ce contenu nโ€™est pas visible sans un compte Bluesky." +#: src/screens/Messages/List/ChatListItem.tsx:211 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "Cette conversation concerne un compte supprimรฉ ou dรฉsactivรฉ. Appuyez pour obtenir des options." + #: src/view/screens/Settings/ExportCarDialog.tsx:93 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Cette fonctionnalitรฉ est en version bรชta. Vous pouvez en savoir plus sur les exportations de dรฉpรดts dans <0>ce blogpost." @@ -5190,16 +5198,15 @@ msgstr "Cette fonctionnalitรฉ est en version bรชta. Vous pouvez en savoir plus s msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ce fil dโ€™actu reรงoit actuellement un trafic important, il est temporairement indisponible. Veuillez rรฉessayer plus tard." -#: src/screens/Profile/Sections/Feed.tsx:59 -#: src/view/screens/ProfileFeed.tsx:471 -#: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Ce fil dโ€™actu est videย !" - #: 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 "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:471 +#: 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 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." @@ -5496,7 +5503,7 @@ msgstr "Supprimer la liste de modรฉration" #: src/view/screens/ProfileList.tsx:290 msgid "Unpinned from your feeds" -msgstr "Dรฉsรฉpingler de vos fil dโ€™actu" +msgstr "Dรฉsรฉpinglรฉ de vos fils dโ€™actu" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Unsubscribe" @@ -5842,6 +5849,10 @@ 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:311 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "Nous sommes dรฉsolรฉsย ! Le post auquel vous rรฉpondez a รฉtรฉ supprimรฉ." + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -5853,7 +5864,7 @@ msgstr "Nous sommes dรฉsolรฉsย ! Vous ne pouvez vous abonner quโ€™ร  dix รฉtique #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" -msgstr "" +msgstr "Bienvenueย !" #: src/screens/Onboarding/StepInterests/index.tsx:135 msgid "What are your interests?" @@ -5946,11 +5957,11 @@ msgstr "Oui" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "" +msgstr "Oui, dรฉsactiver" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" -msgstr "" +msgstr "Oui, rรฉactiver mon compte" #: src/components/dms/MessageItem.tsx:188 msgid "Yesterday, {time}" @@ -5971,7 +5982,7 @@ msgstr "Vous pouvez aussi dรฉcouvrir de nouveaux fils dโ€™actu personnalisรฉs ร  #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" +msgstr "Vous pouvez รฉgalement dรฉsactiver temporairement votre compte et le rรฉactiver quand vous voulez." #: src/components/dms/MessagesNUX.tsx:119 msgid "You can change this at any time." @@ -5988,7 +5999,7 @@ msgstr "Vous pouvez maintenant vous connecter avec votre nouveau mot de passe." #: 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 "Vous pouvez rรฉactiver votre compte pour continuer ร  vous connecter. Votre profil et vos posts seront visibles par les autres personnes." #: src/view/com/profile/ProfileFollowers.tsx:86 msgid "You do not have any followers." @@ -6000,11 +6011,11 @@ msgstr "Vous nโ€™avez encore aucun code dโ€™invitationย ! Nous vous en enverrons #: src/view/screens/SavedFeeds.tsx:117 msgid "You don't have any pinned feeds." -msgstr "Vous nโ€™avez encore aucun fil รฉpinglรฉ." +msgstr "Vous nโ€™avez encore aucun fil dโ€™actu รฉpinglรฉ." #: src/view/screens/SavedFeeds.tsx:158 msgid "You don't have any saved feeds." -msgstr "Vous nโ€™avez encore aucun fil enregistrรฉ." +msgstr "Vous nโ€™avez encore aucun fil dโ€™actu enregistrรฉ." #: src/view/com/post-thread/PostThread.tsx:195 msgid "You have blocked the author or you have been blocked by the author." @@ -6095,7 +6106,7 @@ msgstr "Vous devez sรฉlectionner au moins un รฉtiqueteur pour un rapport" #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "Vous avez prรฉcรฉdemment dรฉsactivรฉ @{0}." #: src/view/com/util/forms/PostDropdownBtn.tsx:173 msgid "You will no longer receive notifications for this thread" @@ -6115,11 +6126,11 @@ msgstr "Vousย : {0}" #: src/screens/Messages/List/ChatListItem.tsx:142 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "" +msgstr "Vousย : {defaultEmbeddedContentMessage}" #: src/screens/Messages/List/ChatListItem.tsx:135 msgid "You: {short}" -msgstr "" +msgstr "Vousย : {short}" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -6130,7 +6141,7 @@ msgstr "Vous รชtes dans la file dโ€™attente" #: 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 "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:123 msgid "You're ready to go!" @@ -6217,7 +6228,7 @@ msgstr "Votre profil" #: 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 "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:329 msgid "Your reply has been published" From 815ab79309b0a05f1dd9e3c823d845126b14010d Mon Sep 17 00:00:00 2001 From: Minseo Lee Date: Wed, 12 Jun 2024 07:28:36 +0900 Subject: [PATCH 11/86] Update Korean localization (#4387) * 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 * Update messages.po --- src/locale/locales/ko/messages.po | 291 ++++++++++++++++-------------- 1 file changed, 151 insertions(+), 140 deletions(-) diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index c7c40da13a..7d5186c7f7 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -8,14 +8,14 @@ msgstr "" "Language: ko\n" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-06-04 07:58+0900\n" +"PO-Revision-Date: 2024-06-08 15:32+0900\n" "Last-Translator: quiple\n" "Language-Team: quiple, lens0021, HaruChanHeart, hazzzi, heartade\n" "Plural-Forms: \n" #: src/screens/Messages/List/ChatListItem.tsx:119 msgid "(contains embedded content)" -msgstr "" +msgstr "(์ž„๋ฒ ๋“œ ์ฝ˜ํ…์ธ  ํฌํ•จ)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" @@ -33,7 +33,7 @@ msgstr "์ด ๊ณ„์ •์— {0, plural, other {#}}๊ฐœ์˜ ๋ผ๋ฒจ์ด ์ง€์ •๋จ" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "์ด ์ฝ˜ํ…์ธ ์— {0, plural, other {#}}๊ฐœ์˜ ๋ผ๋ฒจ์ด ์ง€์ •๋จ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {#}}๊ฐœ" @@ -55,7 +55,7 @@ msgstr "์ข‹์•„์š” ({0, plural, other {#}}๊ฐœ)" msgid "{0, plural, one {like} other {likes}}" msgstr "์ข‹์•„์š”" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {#}}๋ช…์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„ํ•จ" @@ -271,7 +271,7 @@ msgstr "๋„๋ฉ”์ธ์— ๋‹ค์Œ DNS ๋ ˆ์ฝ”๋“œ๋ฅผ ์ถ”๊ฐ€ํ•˜์„ธ์š”:" msgid "Add to Lists" msgstr "๋ฆฌ์ŠคํŠธ์— ์ถ”๊ฐ€" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "๋‚ด ํ”ผ๋“œ์— ์ถ”๊ฐ€" @@ -280,7 +280,7 @@ msgstr "๋‚ด ํ”ผ๋“œ์— ์ถ”๊ฐ€" msgid "Added to list" msgstr "๋ฆฌ์ŠคํŠธ์— ์ถ”๊ฐ€๋จ" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "๋‚ด ํ”ผ๋“œ์— ์ถ”๊ฐ€๋จ" @@ -460,11 +460,11 @@ msgstr "์ •๋ง ์ด ๋ฉ”์‹œ์ง€๋ฅผ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ? ๋‚˜์—๊ฒŒ ๋ณด์ด๋Š” msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "์ •๋ง ์ด ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐ€์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ? ๋‚˜์—๊ฒŒ ๋ณด์ด๋Š” ๋ฉ”์‹œ์ง€๋Š” ์‚ญ์ œ๋˜์ง€๋งŒ ์ƒ๋Œ€๋ฐฉ์—๊ฒŒ๋Š” ์‚ญ์ œ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค." -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ํ”ผ๋“œ์—์„œ {0}์„(๋ฅผ) ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:651 msgid "Are you sure you'd like to discard this draft?" msgstr "์ด ์ดˆ์•ˆ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -572,7 +572,7 @@ msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ํ•˜๊ฑฐ๋‚˜ ๊ธฐํƒ€ ๋‹ค๋ฅธ ๋ฐฉ์‹์œผ๋กœ ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ฐจ๋‹จํ•œ ๊ณ„์ •์˜ ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†์œผ๋ฉฐ ํ•ด๋‹น ๊ณ„์ •๋„ ๋‚ด ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThread.tsx:363 +#: src/view/com/post-thread/PostThread.tsx:362 msgid "Blocked post." msgstr "์ฐจ๋‹จ๋œ ๊ฒŒ์‹œ๋ฌผ." @@ -659,8 +659,8 @@ msgstr "๊ธ€์ž, ์ˆซ์ž, ๊ณต๋ฐฑ, ๋Œ€์‹œ, ๋ฐ‘์ค„๋งŒ ํฌํ•จํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:451 +#: src/view/com/composer/Composer.tsx:457 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -676,7 +676,7 @@ msgstr "๊ธ€์ž, ์ˆซ์ž, ๊ณต๋ฐฑ, ๋Œ€์‹œ, ๋ฐ‘์ค„๋งŒ ํฌํ•จํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 #: src/view/screens/Search/Search.tsx:738 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" @@ -706,13 +706,13 @@ msgstr "์ด๋ฏธ์ง€ ์ž๋ฅด๊ธฐ ์ทจ์†Œ" msgid "Cancel profile editing" msgstr "ํ”„๋กœํ•„ ํŽธ์ง‘ ์ทจ์†Œ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ธ์šฉ ์ทจ์†Œ" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +msgstr "์žฌํ™œ์„ฑํ™” ์ทจ์†Œ ๋ฐ ๋กœ๊ทธ์•„์›ƒ" #: src/view/com/modals/ListAddRemoveUsers.tsx:87 #: src/view/shell/desktop/Search.tsx:214 @@ -857,11 +857,11 @@ msgstr "์ด๊ณณ์„ ํด๋ฆญ" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "๊ณ„์ • ๋น„ํ™œ์„ฑํ™”์— ๋Œ€ํ•œ ์ž์„ธํ•œ ๋‚ด์šฉ์„ ๋ณด๋ ค๋ฉด ์ด๊ณณ์„ ํด๋ฆญํ•˜์„ธ์š”" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" +msgstr "์ž์„ธํ•œ ๋‚ด์šฉ์„ ๋ณด๋ ค๋ฉด ์ด๊ณณ์„ ํด๋ฆญํ•˜์„ธ์š”." #: src/components/TagMenu/index.web.tsx:138 msgid "Click here to open tag menu for {tag}" @@ -939,7 +939,7 @@ msgstr "ํ•˜๋‹จ ํƒ์ƒ‰ ๋ง‰๋Œ€๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค" msgid "Closes password update alert" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ ์•Œ๋ฆผ์„ ๋‹ซ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:453 msgid "Closes post composer and discards post draft" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ ์ƒ์ž๋ฅผ ๋‹ซ๊ณ  ๊ฒŒ์‹œ๋ฌผ ์ดˆ์•ˆ์„ ์‚ญ์ œํ•ฉ๋‹ˆ๋‹ค" @@ -976,7 +976,7 @@ msgstr "์˜จ๋ณด๋”ฉ ์™„๋ฃŒ ํ›„ ๊ณ„์ • ์‚ฌ์šฉ ์‹œ์ž‘" msgid "Complete the challenge" msgstr "์ฑŒ๋ฆฐ์ง€ ์™„๋ฃŒํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:570 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "์ตœ๋Œ€ {MAX_GRAPHEME_LENGTH}์ž ๊ธธ์ด๊นŒ์ง€ ๊ธ€์„ ์ž‘์„ฑํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" @@ -1077,7 +1077,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "์ปจํ…์ŠคํŠธ ๋ฉ”๋‰ด ๋ฐฐ๊ฒฝ์„ ํด๋ฆญํ•˜์—ฌ ๋ฉ”๋‰ด๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค." #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "๊ณ„์†" @@ -1086,7 +1086,7 @@ msgid "Continue as {0} (currently signed in)" msgstr "{0}(์œผ)๋กœ ๊ณ„์†ํ•˜๊ธฐ (ํ˜„์žฌ ๋กœ๊ทธ์ธ)" #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "๋‹ค์Œ ๋‹จ๊ณ„๋กœ ๊ณ„์†ํ•˜๊ธฐ" @@ -1195,7 +1195,7 @@ msgstr "๊ณ„์ • ๋งŒ๋“ค๊ธฐ" msgid "Create an account" msgstr "๊ณ„์ • ๋งŒ๋“ค๊ธฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "๋Œ€์‹  ์•„๋ฐ”ํƒ€ ๋งŒ๋“ค๊ธฐ" @@ -1257,11 +1257,11 @@ msgstr "์ƒ๋…„์›”์ผ" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 #: src/view/screens/Settings/index.tsx:806 msgid "Deactivate account" -msgstr "" +msgstr "๊ณ„์ • ๋น„ํ™œ์„ฑํ™”" #: src/view/screens/Settings/index.tsx:818 msgid "Deactivate my account" -msgstr "" +msgstr "๋‚ด ๊ณ„์ • ๋น„ํ™œ์„ฑํ™”" #: src/view/screens/Settings/index.tsx:873 msgid "Debug Moderation" @@ -1301,7 +1301,7 @@ msgstr "๋Œ€ํ™” ์‹ ๊ณ  ๊ธฐ๋ก ์‚ญ์ œ" #: src/components/dms/MessageMenu.tsx:124 msgid "Delete for me" -msgstr "๋‚ด๊ฒŒ์„œ ์‚ญ์ œ" +msgstr "๋‚˜์—๊ฒŒ์„œ ์‚ญ์ œ" #: src/view/screens/ProfileList.tsx:471 msgid "Delete List" @@ -1340,7 +1340,7 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Deleted" msgstr "์‚ญ์ œ๋จ" -#: src/view/com/post-thread/PostThread.tsx:349 +#: src/view/com/post-thread/PostThread.tsx:348 msgid "Deleted post." msgstr "์‚ญ์ œ๋œ ๊ฒŒ์‹œ๋ฌผ." @@ -1359,7 +1359,7 @@ msgstr "์„ค๋ช…" msgid "Descriptive alt text" msgstr "์„ค๋ช…์ด ํฌํ•จ๋œ ๋Œ€์ฒด ํ…์ŠคํŠธ" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:292 msgid "Did you want to say anything?" msgstr "ํ•˜๊ณ  ์‹ถ์€ ๋ง์ด ์—†๋‚˜์š”?" @@ -1392,11 +1392,11 @@ msgstr "ํ–…ํ‹ฑ ํ”ผ๋“œ๋ฐฑ ๋„๊ธฐ" msgid "Disabled" msgstr "์‚ฌ์šฉ ์•ˆ ํ•จ" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:653 msgid "Discard" msgstr "์‚ญ์ œ" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:650 msgid "Discard draft?" msgstr "์ดˆ์•ˆ ์‚ญ์ œ" @@ -1446,8 +1446,8 @@ msgstr "๋„๋ฉ”์ธ์„ ํ™•์ธํ–ˆ์Šต๋‹ˆ๋‹ค." #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 @@ -1845,7 +1845,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" #: src/components/dialogs/GifSelect.ios.tsx:196 #: src/components/dialogs/GifSelect.tsx:212 msgid "Failed to load GIFs" -msgstr "GIF ๋ถˆ๋Ÿฌ์˜ค๊ธฐ ์‹คํŒจ" +msgstr "GIF๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/screens/Messages/Conversation/MessageListError.tsx:23 msgid "Failed to load past messages" @@ -1873,7 +1873,7 @@ msgstr "์„ค์ •์„ ์—…๋ฐ์ดํŠธํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Feed" msgstr "ํ”ผ๋“œ" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} ๋‹˜์˜ ํ”ผ๋“œ" @@ -2093,7 +2093,7 @@ msgstr "์‹œ์ž‘ํ•˜๊ธฐ" msgid "Get Started" msgstr "์‹œ์ž‘ํ•˜๊ธฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "ํ”„๋กœํ•„์— ์–ผ๊ตด ๋‹ฌ๊ธฐ" @@ -2138,7 +2138,7 @@ msgstr "ํ™ˆ์œผ๋กœ ์ด๋™" msgid "Go Home" msgstr "ํ™ˆ์œผ๋กœ ์ด๋™" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:209 msgid "Go to conversation with {0}" msgstr "{0} ๋‹˜๊ณผ์˜ ๋Œ€ํ™”๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค" @@ -2188,7 +2188,7 @@ msgstr "๋ฌธ์ œ๊ฐ€ ์žˆ๋‚˜์š”?" msgid "Help" msgstr "๋„์›€๋ง" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "์‚ฌ์ง„์„ ์—…๋กœ๋“œํ•˜๊ฑฐ๋‚˜ ์•„๋ฐ”ํƒ€๋ฅผ ๋งŒ๋“ค์–ด ์‚ฌ๋žŒ๋“ค์ด ๋‚ด๊ฐ€ ๋ด‡์ด ์•„๋‹ˆ๋ผ๋Š” ์‚ฌ์‹ค์„ ์•Œ ์ˆ˜ ์žˆ๋„๋ก ํ•˜์„ธ์š”." @@ -2230,23 +2230,23 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์ˆจ๊ธฐ์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Hide user list" msgstr "์‚ฌ์šฉ์ž ๋ฆฌ์ŠคํŠธ ์ˆจ๊ธฐ๊ธฐ" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "ํ”ผ๋“œ ์„œ๋ฒ„์— ์—ฐ๊ฒฐํ•˜๋Š” ์ค‘ ์–ด๋–ค ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ํ”ผ๋“œ ์†Œ์œ ์ž์—๊ฒŒ ์ด ๋ฌธ์ œ์— ๋Œ€ํ•ด ์•Œ๋ ค์ฃผ์„ธ์š”." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "ํ”ผ๋“œ ์„œ๋ฒ„๊ฐ€ ์ž˜๋ชป ๊ตฌ์„ฑ๋œ ๊ฒƒ ๊ฐ™์Šต๋‹ˆ๋‹ค. ํ”ผ๋“œ ์†Œ์œ ์ž์—๊ฒŒ ์ด ๋ฌธ์ œ์— ๋Œ€ํ•ด ์•Œ๋ ค์ฃผ์„ธ์š”." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "ํ”ผ๋“œ ์„œ๋ฒ„๊ฐ€ ์˜คํ”„๋ผ์ธ ์ƒํƒœ์ธ ๊ฒƒ ๊ฐ™์Šต๋‹ˆ๋‹ค. ํ”ผ๋“œ ์†Œ์œ ์ž์—๊ฒŒ ์ด ๋ฌธ์ œ์— ๋Œ€ํ•ด ์•Œ๋ ค์ฃผ์„ธ์š”." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "ํ”ผ๋“œ ์„œ๋ฒ„์—์„œ ์ž˜๋ชป๋œ ์‘๋‹ต์„ ๋ณด๋ƒˆ์Šต๋‹ˆ๋‹ค. ํ”ผ๋“œ ์†Œ์œ ์ž์—๊ฒŒ ์ด ๋ฌธ์ œ์— ๋Œ€ํ•ด ์•Œ๋ ค์ฃผ์„ธ์š”." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "์ด ํ”ผ๋“œ๋ฅผ ์ฐพ๋Š” ๋ฐ ๋ฌธ์ œ๊ฐ€ ์žˆ์Šต๋‹ˆ๋‹ค. ํ”ผ๋“œ๊ฐ€ ์‚ญ์ œ๋˜์—ˆ์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -2293,7 +2293,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 @@ -2322,11 +2322,11 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜๋ฉด ๋‹ค์‹œ ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." #: src/view/com/modals/ChangePassword.tsx:149 msgid "If you want to change your password, we will send you a code to verify that this is your account." -msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ณ€๊ฒฝํ•˜๊ณ  ์‹ถ๋‹ค๋ฉด ๋ณธ์ธ ๊ณ„์ •์ž„์„ ํ™•์ธํ•  ์ˆ˜ ์žˆ๋Š” ์ฝ”๋“œ๋ฅผ ๋ณด๋‚ด๋“œ๋ฆฌ๊ฒ ์Šต๋‹ˆ๋‹ค." +msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ณ€๊ฒฝํ•˜๊ณ  ์‹ถ๋‹ค๋ฉด ๋ณธ์ธ ๊ณ„์ •์ž„์„ ํ™•์ธํ•  ์ˆ˜ ์žˆ๋Š” ์ฝ”๋“œ๋ฅผ ๋ณด๋‚ด๋“œ๋ฆฝ๋‹ˆ๋‹ค." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "" +msgstr "ํ•ธ๋“ค์ด๋‚˜ ์ด๋ฉ”์ผ์„ ๋ณ€๊ฒฝํ•˜๋ ค๋Š” ๊ฒฝ์šฐ ๋น„ํ™œ์„ฑํ™”ํ•˜๊ธฐ ์ „์— ๋ณ€๊ฒฝํ•˜์„ธ์š”." #: src/lib/moderation/useReportOptions.ts:37 msgid "Illegal and Urgent" @@ -2596,7 +2596,7 @@ msgstr "๋ฆฌ์ŠคํŠธ ์•„๋ฐ”ํƒ€" msgid "List blocked" msgstr "๋ฆฌ์ŠคํŠธ ์ฐจ๋‹จ๋จ" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "{0} ๋‹˜์˜ ๋ฆฌ์ŠคํŠธ" @@ -2633,7 +2633,7 @@ msgstr "๋ฆฌ์ŠคํŠธ" msgid "Lists blocking this user:" msgstr "์ด ์‚ฌ์šฉ์ž๋ฅผ ์ฐจ๋‹จํ•œ ๋ฆฌ์ŠคํŠธ:" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "์ƒˆ ์•Œ๋ฆผ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" @@ -2655,7 +2655,7 @@ msgstr "๋กœ๊ทธ" #: src/screens/Deactivated.tsx:214 #: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" -msgstr "" +msgstr "๋กœ๊ทธ์ธ ๋˜๋Š” ๊ฐ€์ž…" #: src/screens/SignupQueued.tsx:155 #: src/screens/SignupQueued.tsx:158 @@ -2732,7 +2732,7 @@ msgstr "{0} ๋‹˜์—๊ฒŒ ๋ฉ”์‹œ์ง€ ๋ณด๋‚ด๊ธฐ" msgid "Message deleted" msgstr "๋ฉ”์‹œ์ง€ ์‚ญ์ œ๋จ" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "์„œ๋ฒ„์—์„œ ๋ณด๋‚ธ ๋ฉ”์‹œ์ง€: {0}" @@ -3023,7 +3023,7 @@ msgid "New post" msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ" #: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3104,7 +3104,7 @@ msgstr "์•„์ง ๋ฉ”์‹œ์ง€๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" msgid "No more conversations to show" msgstr "๋” ์ด์ƒ ํ‘œ์‹œํ•  ๋Œ€ํ™”๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "์•„์ง ์•Œ๋ฆผ์ด ์—†์Šต๋‹ˆ๋‹ค." @@ -3115,6 +3115,10 @@ msgstr "์•„์ง ์•Œ๋ฆผ์ด ์—†์Šต๋‹ˆ๋‹ค." msgid "No one" msgstr "์—†์Œ" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "์•„์ง ๊ฒŒ์‹œ๋ฌผ์ด ์—†์Šต๋‹ˆ๋‹ค." + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3198,8 +3202,8 @@ msgid "Notification Sounds" msgstr "์•Œ๋ฆผ์Œ" #: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: 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:350 #: src/view/shell/Drawer.tsx:456 @@ -3249,11 +3253,11 @@ msgstr "์˜ค๋ž˜๋œ ์ˆœ" msgid "Onboarding reset" msgstr "์˜จ๋ณด๋”ฉ ์žฌ์„ค์ •" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ ์ด๋ฏธ์ง€์— ๋Œ€์ฒด ํ…์ŠคํŠธ๊ฐ€ ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr ".jpg ๋ฐ .png ํŒŒ์ผ๋งŒ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค" @@ -3283,17 +3287,17 @@ msgstr "๊ณต๊ฐœ์„ฑ" msgid "Open {name} profile shortcut menu" msgstr "{name} ๋‹˜์˜ ํ”„๋กœํ•„ ๋‹จ์ถ• ๋ฉ”๋‰ด ์—ด๊ธฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "์•„๋ฐ”ํƒ€ ์ƒ์„ฑ๊ธฐ ์—ด๊ธฐ" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:217 +#: src/screens/Messages/List/ChatListItem.tsx:218 msgid "Open conversation options" msgstr "๋Œ€ํ™” ์˜ต์…˜ ์—ด๊ธฐ" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:634 +#: src/view/com/composer/Composer.tsx:635 msgid "Open emoji picker" msgstr "์ด๋ชจํ‹ฐ์ฝ˜ ์„ ํƒ๊ธฐ ์—ด๊ธฐ" @@ -3386,7 +3390,7 @@ msgstr "์ดˆ๋Œ€ ์ฝ”๋“œ ๋ชฉ๋ก์„ ์—ฝ๋‹ˆ๋‹ค" #: src/view/screens/Settings/index.tsx:808 msgid "Opens modal for account deactivation confirmation" -msgstr "" +msgstr "๊ณ„์ • ๋น„ํ™œ์„ฑํ™” ํ™•์ธ์„ ์œ„ํ•œ ๋Œ€ํ™” ์ƒ์ž๋ฅผ ์—ฝ๋‹ˆ๋‹ค" #: src/view/screens/Settings/index.tsx:830 msgid "Opens modal for account deletion confirmation. Requires email code" @@ -3474,11 +3478,11 @@ msgstr "๋˜๋Š” ๋‹ค์Œ ์˜ต์…˜์„ ๊ฒฐํ•ฉํ•˜์„ธ์š”:" #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." -msgstr "" +msgstr "๋˜๋Š” ๋‹ค๋ฅธ ๊ณ„์ •์œผ๋กœ ๊ณ„์† ์ง„ํ–‰ํ•˜์„ธ์š”." #: src/screens/Deactivated.tsx:194 msgid "Or, log into one of your other accounts." -msgstr "" +msgstr "๋˜๋Š” ๋‹ค๋ฅธ ๊ณ„์ • ์ค‘ ํ•˜๋‚˜๋กœ ๋กœ๊ทธ์ธํ•˜์„ธ์š”." #: src/lib/moderation/useReportOptions.ts:26 msgid "Other" @@ -3636,7 +3640,7 @@ msgstr "{0} ๋‹˜์ด ์ด ๋ผ๋ฒจ์„ ์ž˜๋ชป ์ ์šฉํ–ˆ๋‹ค๊ณ  ์ƒ๊ฐํ•˜๋Š” ์ด์œ ๋ฅผ #: src/screens/Messages/Conversation/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" -msgstr "์ฑ„ํŒ…์ด ์ž˜๋ชป ๋น„ํ™œ์„ฑํ™”๋˜์—ˆ๋‹ค๊ณ  ์ƒ๊ฐํ•˜๋Š” ์ด์œ ๋ฅผ ์„ค๋ช…ํ•ด ์ฃผ์„ธ์š”" +msgstr "๋Œ€ํ™”๊ฐ€ ์ž˜๋ชป ๋น„ํ™œ์„ฑํ™”๋˜์—ˆ๋‹ค๊ณ  ์ƒ๊ฐํ•˜๋Š” ์ด์œ ๋ฅผ ์„ค๋ช…ํ•ด ์ฃผ์„ธ์š”" #: src/lib/hooks/useAccountSwitcher.ts:48 #: src/lib/hooks/useAccountSwitcher.ts:58 @@ -3647,7 +3651,7 @@ msgstr "@{0}(์œผ)๋กœ ๋กœ๊ทธ์ธํ•˜์„ธ์š”" msgid "Please Verify Your Email" msgstr "์ด๋ฉ”์ผ ์ธ์ฆํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:296 msgid "Please wait for your link card to finish loading" msgstr "๋งํฌ ์นด๋“œ๋ฅผ ์™„์ „ํžˆ ๋ถˆ๋Ÿฌ์˜ฌ ๋•Œ๊นŒ์ง€ ๊ธฐ๋‹ค๋ ค์ฃผ์„ธ์š”" @@ -3659,13 +3663,13 @@ msgstr "์ •์น˜" msgid "Porn" msgstr "์Œ๋ž€๋ฌผ" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:496 +#: src/view/com/composer/Composer.tsx:504 msgctxt "action" msgid "Post" msgstr "๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:426 msgctxt "description" msgid "Post" msgstr "๊ฒŒ์‹œ๋ฌผ" @@ -3684,7 +3688,7 @@ msgstr "@{0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ" msgid "Post deleted" msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ๋จ" -#: src/view/com/post-thread/PostThread.tsx:193 +#: src/view/com/post-thread/PostThread.tsx:192 msgid "Post hidden" msgstr "๊ฒŒ์‹œ๋ฌผ ์ˆจ๊น€" @@ -3706,8 +3710,8 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์–ธ์–ด" msgid "Post Languages" msgstr "๊ฒŒ์‹œ๋ฌผ ์–ธ์–ด" -#: src/view/com/post-thread/PostThread.tsx:188 -#: src/view/com/post-thread/PostThread.tsx:200 +#: src/view/com/post-thread/PostThread.tsx:187 +#: src/view/com/post-thread/PostThread.tsx:199 msgid "Post not found" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์ฐพ์„ ์ˆ˜ ์—†์Œ" @@ -3723,7 +3727,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ" msgid "Posts can be muted based on their text, their tags, or both." msgstr "๊ฒŒ์‹œ๋ฌผ์˜ ๊ธ€ ๋ฐ ํƒœ๊ทธ์— ๋”ฐ๋ผ ๊ฒŒ์‹œ๋ฌผ์„ ๋ฎคํŠธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "๊ฒŒ์‹œ๋ฌผ ์ˆจ๊ฒจ์ง" @@ -3773,7 +3777,7 @@ msgstr "๊ฐœ์ธ์ •๋ณด ์ฒ˜๋ฆฌ๋ฐฉ์นจ" #: src/components/dms/MessagesNUX.tsx:91 msgid "Privately chat with other users." -msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์™€ ๋น„๊ณต๊ฐœ๋กœ ์ฑ„ํŒ…ํ•˜์„ธ์š”." +msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์™€ ๋น„๊ณต๊ฐœ๋กœ ๋Œ€ํ™”ํ•˜์„ธ์š”." #: src/screens/Login/ForgotPasswordForm.tsx:156 msgid "Processing..." @@ -3812,16 +3816,16 @@ msgstr "์ผ๊ด„ ๋ฎคํŠธํ•˜๊ฑฐ๋‚˜ ์ฐจ๋‹จํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐœ์ ์ด๊ณ  ๊ณต์œ  ๊ฐ€ msgid "Public, shareable lists which can drive feeds." msgstr "ํ”ผ๋“œ๋ฅผ ํƒ์ƒ‰ํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐœ์ ์ด๊ณ  ๊ณต์œ  ๊ฐ€๋Šฅํ•œ ๋ชฉ๋ก์ž…๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:481 msgid "Publish post" msgstr "๊ฒŒ์‹œ๋ฌผ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:481 msgid "Publish reply" msgstr "๋‹ต๊ธ€ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -3837,7 +3841,7 @@ msgstr "๋น„์œจ" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "" +msgstr "๊ณ„์ • ์žฌํ™œ์„ฑํ™”" #: src/components/dms/ReportDialog.tsx:172 msgid "Reason:" @@ -3856,11 +3860,11 @@ msgid "Reload conversations" msgstr "๋Œ€ํ™” ๋‹ค์‹œ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" #: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "์ œ๊ฑฐ" @@ -3880,25 +3884,25 @@ msgstr "๋ฐฐ๋„ˆ ์ œ๊ฑฐ" msgid "Remove embed" msgstr "์ž„๋ฒ ๋“œ ์ œ๊ฑฐ" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "ํ”ผ๋“œ ์ œ๊ฑฐ" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "ํ”ผ๋“œ๋ฅผ ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐ" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -3916,22 +3920,22 @@ msgstr "๋ชฉ๋ก์—์„œ ๋ฎคํŠธํ•œ ๋‹จ์–ด ์ œ๊ฑฐ" #: src/view/screens/Search/Search.tsx:1014 msgid "Remove profile" -msgstr "" +msgstr "ํ”„๋กœํ•„ ์ œ๊ฑฐ" #: src/view/screens/Search/Search.tsx:1016 msgid "Remove profile from search history" -msgstr "" +msgstr "๊ฒ€์ƒ‰ ๊ธฐ๋ก์—์„œ ํ”„๋กœํ•„์„ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:238 msgid "Remove quote" msgstr "์ธ์šฉ ์ œ๊ฑฐ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "์žฌ๊ฒŒ์‹œ๋ฅผ ์ทจ์†Œํ•ฉ๋‹ˆ๋‹ค" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "์ €์žฅํ•œ ํ”ผ๋“œ์—์„œ ์ด ํ”ผ๋“œ๋ฅผ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค" @@ -3940,7 +3944,7 @@ msgstr "์ €์žฅํ•œ ํ”ผ๋“œ์—์„œ ์ด ํ”ผ๋“œ๋ฅผ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค" msgid "Removed from list" msgstr "๋ฆฌ์ŠคํŠธ์—์„œ ์ œ๊ฑฐ๋จ" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐ๋จ" @@ -3971,7 +3975,7 @@ msgstr "๋‹ต๊ธ€" msgid "Replies to this thread are disabled" msgstr "์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ๋‹ต๊ธ€์ด ๋น„ํ™œ์„ฑํ™”๋ฉ๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:494 msgctxt "action" msgid "Reply" msgstr "๋‹ต๊ธ€" @@ -4051,9 +4055,9 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ ์‹ ๊ณ ํ•˜๊ธฐ" msgid "Report this user" msgstr "์ด ์‚ฌ์šฉ์ž ์‹ ๊ณ ํ•˜๊ธฐ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "์žฌ๊ฒŒ์‹œ" @@ -4063,7 +4067,7 @@ msgstr "์žฌ๊ฒŒ์‹œ" msgid "Repost" msgstr "์žฌ๊ฒŒ์‹œ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4443,7 +4447,7 @@ msgstr "ํ”ผ๋“œ๋ฐฑ ๋ณด๋‚ด๊ธฐ" msgid "Send message" msgstr "๋ฉ”์‹œ์ง€ ๋ณด๋‚ด๊ธฐ" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๋‹ค์Œ์œผ๋กœ ๋ณด๋‚ด๊ธฐ" @@ -4461,7 +4465,7 @@ msgstr "{0} ๋‹˜์—๊ฒŒ ์‹ ๊ณ  ๋ณด๋‚ด๊ธฐ" #: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 msgid "Send verification email" -msgstr "์ธ์ฆ ๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ" +msgstr "์ธ์ฆ ์ด๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ" #: src/view/com/util/forms/PostDropdownBtn.tsx:299 #: src/view/com/util/forms/PostDropdownBtn.tsx:302 @@ -4712,9 +4716,9 @@ msgstr "ํ”ผ๋“œ์— {0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ์„ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -4745,9 +4749,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -4795,7 +4799,7 @@ 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:114 @@ -5025,8 +5029,8 @@ msgstr "๋‚ด ์ฝ˜ํ…์ธ ์— ๋‹ค์Œ ๋ผ๋ฒจ์ด ์ ์šฉ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." msgid "The following steps will help customize your Bluesky experience." msgstr "๋‹ค์Œ ๋‹จ๊ณ„๋Š” Bluesky ํ™˜๊ฒฝ์„ ๋งž์ถค ์„ค์ •ํ•˜๋Š” ๋ฐ ๋„์›€์ด ๋ฉ๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThread.tsx:189 -#: src/view/com/post-thread/PostThread.tsx:201 +#: src/view/com/post-thread/PostThread.tsx:188 +#: src/view/com/post-thread/PostThread.tsx:200 msgid "The post may have been deleted." msgstr "๊ฒŒ์‹œ๋ฌผ์ด ์‚ญ์ œ๋˜์—ˆ์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -5044,14 +5048,14 @@ msgstr "์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€์„ ๋‹ค์Œ์œผ๋กœ ์ด๋™ํ–ˆ์Šต๋‹ˆ๋‹ค:" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +msgstr "๊ณ„์ • ๋น„ํ™œ์„ฑํ™”์—๋Š” ์‹œ๊ฐ„ ์ œํ•œ์ด ์—†์œผ๋ฏ€๋กœ ์–ธ์ œ๋“ ์ง€ ๋‹ค์‹œ ๋Œ์•„์˜ฌ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 #: src/view/screens/ProfileFeed.tsx:541 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "์„œ๋ฒ„์— ์—ฐ๊ฒฐํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์„ ํ™•์ธํ•œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•˜์„ธ์š”." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "์ด ํ”ผ๋“œ๋ฅผ ์‚ญ์ œํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์„ ํ™•์ธํ•œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•˜์„ธ์š”." @@ -5075,12 +5079,12 @@ msgstr "Tenor์— ์—ฐ๊ฒฐํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค." msgid "There was an issue contacting the server" msgstr "์„œ๋ฒ„์— ์—ฐ๊ฒฐํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "์„œ๋ฒ„์— ์—ฐ๊ฒฐํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "์•Œ๋ฆผ์„ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ด๊ณณ์„ ํƒญํ•˜์—ฌ ๋‹ค์‹œ ์‹œ๋„ํ•˜์„ธ์š”." @@ -5135,7 +5139,7 @@ msgstr "์• ํ”Œ๋ฆฌ์ผ€์ด์…˜์— ์˜ˆ๊ธฐ์น˜ ์•Š์€ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ด #: 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 "Bluesky์— ์‹ ๊ทœ ์‚ฌ์šฉ์ž๊ฐ€ ๋ชฐ๋ฆฌ๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค! ์ตœ๋Œ€ํ•œ ๋นจ๋ฆฌ ๊ณ„์ •์„ ํ™œ์„ฑํ™”ํ•ด ๋“œ๋ฆฌ๊ฒ ์Šต๋‹ˆ๋‹ค." +msgstr "Bluesky์— ์‹ ๊ทœ ์‚ฌ์šฉ์ž๊ฐ€ ๋ชฐ๋ฆฌ๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค! ์ตœ๋Œ€ํ•œ ๋นจ๋ฆฌ ๊ณ„์ •์„ ํ™œ์„ฑํ™”ํ•˜๊ฒ ์Šต๋‹ˆ๋‹ค." #: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" @@ -5159,7 +5163,7 @@ msgstr "์ด ์ด์˜์‹ ์ฒญ์€ Bluesky Moderation Service๋กœ ๋ณด๋‚ด์ง‘๋‹ˆ๋‹ค." #: src/screens/Messages/Conversation/MessageListError.tsx:18 msgid "This chat was disconnected" -msgstr "์ด ์ฑ„ํŒ…์€ ์—ฐ๊ฒฐ์ด ๋Š์–ด์กŒ์Šต๋‹ˆ๋‹ค" +msgstr "์ด ๋Œ€ํ™”๋Š” ์—ฐ๊ฒฐ์ด ๋Š์–ด์กŒ์Šต๋‹ˆ๋‹ค" #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." @@ -5178,28 +5182,31 @@ msgstr "์ด ์ฝ˜ํ…์ธ ๋Š” {0}์—์„œ ํ˜ธ์ŠคํŒ…๋ฉ๋‹ˆ๋‹ค. ์™ธ๋ถ€ ๋ฏธ๋””์–ด๋ฅผ ์‚ฌ msgid "This content is not available because one of the users involved has blocked the other." msgstr "๊ด€๋ จ ์‚ฌ์šฉ์ž ์ค‘ ํ•œ ๋ช…์ด ๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๋ฅผ ์ฐจ๋‹จํ–ˆ๊ธฐ ๋•Œ๋ฌธ์— ์ด ์ฝ˜ํ…์ธ ๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "์ด ์ฝ˜ํ…์ธ ๋Š” Bluesky ๊ณ„์ •์ด ์—†์œผ๋ฉด ๋ณผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." +#: src/screens/Messages/List/ChatListItem.tsx:211 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "์ด ๊ธฐ๋Šฅ์€ ๋ฒ ํƒ€ ๋ฒ„์ „์ž…๋‹ˆ๋‹ค. ์ €์žฅ์†Œ ๋‚ด๋ณด๋‚ด๊ธฐ์— ๋Œ€ํ•œ ์ž์„ธํ•œ ๋‚ด์šฉ์€ <0>์ด ๋ธ”๋กœ๊ทธ ๊ธ€์—์„œ ํ™•์ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "์ด ํ”ผ๋“œ๋Š” ํ˜„์žฌ ํŠธ๋ž˜ํ”ฝ์ด ๋งŽ์•„ ์ผ์‹œ์ ์œผ๋กœ ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋‚˜์ค‘์— ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Profile/Sections/Feed.tsx:59 -#: src/view/screens/ProfileFeed.tsx:471 -#: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -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 "์ด ํ”ผ๋“œ๋Š” ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค. ๋” ๋งŽ์€ ์‚ฌ์šฉ์ž๋ฅผ ํŒ”๋กœ์šฐํ•˜๊ฑฐ๋‚˜ ์–ธ์–ด ์„ค์ •์„ ์กฐ์ •ํ•ด ๋ณด์„ธ์š”." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "์ด ํ”ผ๋“œ๋Š” ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค." + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "์ด ํ”ผ๋“œ๋Š” ๋” ์ด์ƒ ์˜จ๋ผ์ธ ์ƒํƒœ๊ฐ€ ์•„๋‹™๋‹ˆ๋‹ค. ๋Œ€์‹  <0>Discover๋ฅผ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค." @@ -5426,7 +5433,7 @@ msgstr "๊ณ„์ • ์ฐจ๋‹จ ํ•ด์ œ" msgid "Unblock Account?" msgstr "๊ณ„์ •์„ ์ฐจ๋‹จ ํ•ด์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5523,7 +5530,7 @@ msgstr "{handle}๋กœ ๋ณ€๊ฒฝ" msgid "Updating..." msgstr "์—…๋ฐ์ดํŠธ ์ค‘โ€ฆ" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "๋Œ€์‹  ์‚ฌ์ง„ ์—…๋กœ๋“œํ•˜๊ธฐ" @@ -5743,7 +5750,7 @@ msgstr "์ด ๋ผ๋ฒจ์— ๋Œ€ํ•œ ์ •๋ณด ๋ณด๊ธฐ" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "ํ”„๋กœํ•„ ๋ณด๊ธฐ" @@ -5842,6 +5849,10 @@ 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:333 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ๋‹ต๊ธ€์„ ๋‹ฌ๋ ค๋Š” ๊ฒŒ์‹œ๋ฌผ์ด ์‚ญ์ œ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -5853,7 +5864,7 @@ msgstr "์ฃ„์†กํ•ฉ๋‹ˆ๋‹ค. ๋ผ๋ฒจ๋Ÿฌ๋Š” 10๊ฐœ๊นŒ์ง€๋งŒ ๊ตฌ๋…ํ•  ์ˆ˜ ์žˆ์œผ๋ฉฐ 10 #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" -msgstr "" +msgstr "๋‹ค์‹œ ๋Œ์•„์˜ค์…จ๊ตฐ์š”!" #: src/screens/Onboarding/StepInterests/index.tsx:135 msgid "What are your interests?" @@ -5861,7 +5872,7 @@ msgstr "์–ด๋–ค ๊ด€์‹ฌ์‚ฌ๊ฐ€ ์žˆ์œผ์‹ ๊ฐ€์š”?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:374 msgid "What's up?" msgstr "๋ฌด์Šจ ์ผ์ด ์ผ์–ด๋‚˜๊ณ  ์žˆ๋‚˜์š”?" @@ -5920,11 +5931,11 @@ msgstr "๊ฐ€๋กœ" msgid "Write a message" msgstr "๋ฉ”์‹œ์ง€๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:568 msgid "Write post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:373 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "๋‹ต๊ธ€ ์ž‘์„ฑํ•˜๊ธฐ" @@ -5946,11 +5957,11 @@ msgstr "์˜ˆ" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "" +msgstr "๋น„ํ™œ์„ฑํ™”" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" -msgstr "" +msgstr "๋‚ด ๊ณ„์ • ์žฌํ™œ์„ฑํ™”" #: src/components/dms/MessageItem.tsx:188 msgid "Yesterday, {time}" @@ -5971,7 +5982,7 @@ msgstr "ํŒ”๋กœ์šฐํ•  ์ƒˆ๋กœ์šด ๋งž์ถค ํ”ผ๋“œ๋ฅผ ์ฐพ์„ ์ˆ˜๋„ ์žˆ์Šต๋‹ˆ๋‹ค." #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" +msgstr "๋Œ€์‹  ๊ณ„์ •์„ ์ผ์‹œ์ ์œผ๋กœ ๋น„ํ™œ์„ฑํ™”ํ•œ ํ›„ ์–ธ์ œ๋“ ์ง€ ์žฌํ™œ์„ฑํ™”ํ•  ์ˆ˜๋„ ์žˆ์Šต๋‹ˆ๋‹ค." #: src/components/dms/MessagesNUX.tsx:119 msgid "You can change this at any time." @@ -5988,7 +5999,7 @@ msgstr "์ด์ œ ์ƒˆ ๋น„๋ฐ€๋ฒˆํ˜ธ๋กœ ๋กœ๊ทธ์ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." #: 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 "๊ณ„์ •์„ ์žฌํ™œ์„ฑํ™”ํ•˜์—ฌ ๋กœ๊ทธ์ธ์„ ๊ณ„์†ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ๋‚ด ํ”„๋กœํ•„๊ณผ ๊ธ€์ด ๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์—๊ฒŒ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค." #: src/view/com/profile/ProfileFollowers.tsx:86 msgid "You do not have any followers." @@ -6006,7 +6017,7 @@ msgstr "๊ณ ์ •ํ•œ ํ”ผ๋“œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." msgid "You don't have any saved feeds." msgstr "์ €์žฅํ•œ ํ”ผ๋“œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThread.tsx:195 +#: src/view/com/post-thread/PostThread.tsx:194 msgid "You have blocked the author or you have been blocked by the author." msgstr "์ž‘์„ฑ์ž๋ฅผ ์ฐจ๋‹จํ–ˆ๊ฑฐ๋‚˜ ์ž‘์„ฑ์ž๊ฐ€ ๋‚˜๋ฅผ ์ฐจ๋‹จํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -6095,7 +6106,7 @@ msgstr "์‹ ๊ณ ํ•˜๋ ค๋ฉด ํ•˜๋‚˜ ์ด์ƒ์˜ ๋ผ๋ฒจ์„ ์„ ํƒํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "์ด์ „์— @{0}์„(๋ฅผ) ๋น„ํ™œ์„ฑํ™”ํ–ˆ์Šต๋‹ˆ๋‹ค." #: src/view/com/util/forms/PostDropdownBtn.tsx:173 msgid "You will no longer receive notifications for this thread" @@ -6115,11 +6126,11 @@ msgstr "๋‚˜: {0}" #: src/screens/Messages/List/ChatListItem.tsx:142 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "" +msgstr "๋‚˜: {defaultEmbeddedContentMessage}" #: src/screens/Messages/List/ChatListItem.tsx:135 msgid "You: {short}" -msgstr "" +msgstr "๋‚˜: {short}" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -6130,7 +6141,7 @@ msgstr "๋Œ€๊ธฐ ์ค‘์ž…๋‹ˆ๋‹ค" #: 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 "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ๋กœ ๋กœ๊ทธ์ธํ–ˆ์Šต๋‹ˆ๋‹ค. ๊ณ„์ • ๋น„ํ™œ์„ฑํ™”๋ฅผ ๊ณ„์†ํ•˜๋ ค๋ฉด ์›๋ž˜ ๋น„๋ฐ€๋ฒˆํ˜ธ๋กœ ๋กœ๊ทธ์ธํ•˜์„ธ์š”." #: src/screens/Onboarding/StepFinished.tsx:123 msgid "You're ready to go!" @@ -6185,7 +6196,7 @@ msgstr "์ด๋ฉ”์ผ์ด ์•„์ง ์ธ์ฆ๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ์ด๋Š” ์ค‘์š”ํ•œ ๋ณด #: src/view/com/posts/FollowingEmptyState.tsx:47 msgid "Your following feed is empty! Follow more users to see what's happening." -msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ๊ฐ€ ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค! ๋” ๋งŽ์€ ์‚ฌ์šฉ์ž๋ฅผ ํŒ”๋กœ์šฐํ•˜์—ฌ ๋ฌด์Šจ ์ผ์ด ์ผ์–ด๋‚˜๊ณ  ์žˆ๋Š”์ง€ ํ™•์ธํ•˜์„ธ์š”." +msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ๊ฐ€ ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค. ๋” ๋งŽ์€ ์‚ฌ์šฉ์ž๋ฅผ ํŒ”๋กœ์šฐํ•˜์—ฌ ๋ฌด์Šจ ์ผ์ด ์ผ์–ด๋‚˜๊ณ  ์žˆ๋Š”์ง€ ํ™•์ธํ•˜์„ธ์š”." #: src/screens/Signup/StepHandle.tsx:73 msgid "Your full handle will be" @@ -6203,7 +6214,7 @@ msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด" msgid "Your password has been changed successfully!" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์„ฑ๊ณต์ ์œผ๋กœ ๋ณ€๊ฒฝํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:364 msgid "Your post has been published" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๊ฒŒ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -6217,9 +6228,9 @@ msgstr "๋‚ด ํ”„๋กœํ•„" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "" +msgstr "๋‚ด ํ”„๋กœํ•„, ๊ธ€, ํ”ผ๋“œ ๋ฐ ๋ฆฌ์ŠคํŠธ๊ฐ€ ๋” ์ด์ƒ ๋‹ค๋ฅธ Bluesky ์‚ฌ์šฉ์ž์—๊ฒŒ ํ‘œ์‹œ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ์–ธ์ œ๋“ ์ง€ ๋กœ๊ทธ์ธํ•˜์—ฌ ๊ณ„์ •์„ ์žฌํ™œ์„ฑํ™”ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:329 +#: src/view/com/composer/Composer.tsx:363 msgid "Your reply has been published" msgstr "๋‚ด ๋‹ต๊ธ€์„ ๊ฒŒ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" From 7011ac8f72ed18153ea485b6cce2e18040de2dc9 Mon Sep 17 00:00:00 2001 From: Marco Maroni <166719395+marcomaroni-github@users.noreply.github.com> Date: Wed, 12 Jun 2024 00:29:38 +0200 Subject: [PATCH 12/86] Update italian localization (#4374) * Update messages.po Update italian localization * Fix translation * Update src/locale/locales/it/messages.po Fix by @surfdude29 Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Added some translation --------- Co-authored-by: Marco Maroni Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --- src/locale/locales/it/messages.po | 2093 +++++++++++++++-------------- 1 file changed, 1056 insertions(+), 1037 deletions(-) diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 35d34a76d9..63ab49a31b 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: Italian localization\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 11:44+0530\n" -"PO-Revision-Date: 2024-04-24 12:37+0200\n" +"PO-Revision-Date: 2024-05-31 06:45+0200\n" "Last-Translator: Gabriella Nonino \n" "Language-Team: Gabriella Nonino\n" "Language: it\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.4.4\n" "X-Poedit-SourceCharset: UTF-8\n" #: src/screens/Messages/List/ChatListItem.tsx:119 @@ -26,35 +26,24 @@ msgstr "(no email)" msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" -#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -#~ msgstr "{0, plural, one {# codice d'invito disponibile} other {# codici d'inviti disponibili}}" - -#: 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 "" - #: 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 {# un etichetta รจ stata applicata a questo account} other {# etichette sono stata applicate a questo account}}" #: 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 {# un etichetta รจ stata applicata a questo contenuto} other {# etichette sono state applicate a questo contenuto}}" #: src/view/com/util/post-ctrls/RepostButton.tsx:64 msgid "{0, plural, one {# repost} other {# reposts}}" -msgstr "" +msgstr "{0, plural, one {# ripubblicazione} other {# ripubblicazioni}}" -#: src/components/ProfileHoverCard/index.web.tsx:376 +#: src/components/ProfileHoverCard/index.web.tsx:377 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:380 +#: src/components/ProfileHoverCard/index.web.tsx:381 #: src/screens/Profile/Header/Metrics.tsx:27 msgid "{0, plural, one {following} other {following}}" msgstr "" @@ -113,23 +102,14 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:457 +#: src/components/ProfileHoverCard/index.web.tsx:458 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} following" #: src/components/dms/dialogs/SearchablePeopleList.tsx:405 msgid "{handle} can't be messaged" -msgstr "" - -#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -#~ msgstr "{invitesAvailable, plural, one {Codici d'invito: # available} other {Codici d'invito: # available}}" - -#~ msgid "{invitesAvailable} invite code available" -#~ msgstr "{invitesAvailable} codice d'invito disponibile" - -#~ msgid "{invitesAvailable} invite codes available" -#~ msgstr "{invitesAvailable} codici d'invito disponibili" +msgstr "{handle} non puรฒ ricevere messaggi" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 @@ -137,9 +117,6 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#~ msgid "{message}" -#~ msgstr "{message}" - #: src/view/shell/Drawer.tsx:461 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non letto" @@ -160,40 +137,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/view/shell/Drawer.tsx:96 -#~ msgid "<0>{0} following" -#~ msgstr "<0>{0} following" - -#: src/components/ProfileHoverCard/index.web.tsx:437 -#~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "<0>{followers} <1>{pluralizedFollowers}" - -#: src/components/ProfileHoverCard/index.web.tsx:449 -#: src/screens/Profile/Header/Metrics.tsx:45 -#~ msgid "<0>{following} <1>following" -#~ msgstr "<0>{following} <1>following" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 -#~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "<0>Scegli i tuoi<1>feeds<2>consigliati" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 -#~ msgid "<0>Follow some<1>Recommended<2>Users" -#~ msgstr "<0>Segui alcuni<1>utenti<2>consigliati" - #: 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>Ti diamo il benvenuto su<1>Bluesky" +msgstr "<0>Non applicabile. Questo avviso รจ disponibile solo per i post che contengono media." #: src/screens/Profile/Header/Handle.tsx:43 msgid "โš Invalid Handle" msgstr "โš Nome utente non valido" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "2FA Confirmation" msgstr "Conferma 2FA" @@ -221,8 +173,7 @@ msgstr "Accessibilitร " msgid "Accessibility settings" msgstr "Impostazioni di accessibilitร " -#: src/Navigation.tsx:290 -#: src/view/screens/AccessibilitySettings.tsx:63 +#: src/Navigation.tsx:290 src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Impostazioni di Accessibilitร " @@ -278,7 +229,7 @@ msgstr "Account non seguito" msgid "Account unmuted" msgstr "Account non silenziato" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -300,52 +251,35 @@ msgstr "Aggiungi un utente a questo elenco" msgid "Add account" msgstr "Aggiungi account" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/modals/AltImage.tsx:117 msgid "Add alt text" msgstr "Aggiungi testo alternativo" -#: 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 +#: src/view/screens/AppPasswords.tsx:104 src/view/screens/AppPasswords.tsx:145 +#: src/view/screens/AppPasswords.tsx:158 msgid "Add App Password" msgstr "Aggiungi la Password per l'App" -#~ msgid "Add details" -#~ msgstr "Aggiungi i dettagli" - -#~ msgid "Add details to report" -#~ msgstr "Aggiungi dettagli da segnalare" - -#~ msgid "Add link card" -#~ msgstr "Aggiungi anteprima del link" - -#~ msgid "Add link card:" -#~ msgstr "Aggiungi anteprima del link:" - -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Aggiungi parola silenziata alle impostazioni configurate" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Aggiungi parole silenziate e tags" #: src/screens/Home/NoFeedsPinned.tsx:112 msgid "Add recommended feeds" -msgstr "" +msgstr "Aggiungi feed raccomandati" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" -msgstr "" +msgstr "Aggiungi il feed predefinito delle sole persone che segui" #: src/view/com/modals/ChangeHandle.tsx:410 msgid "Add the following DNS record to your domain:" @@ -360,10 +294,6 @@ msgstr "Aggiungi alle Liste" msgid "Add to my feeds" msgstr "Aggiungi ai miei feed" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 -#~ msgid "Added" -#~ msgstr "Aggiunto" - #: src/view/com/modals/ListAddRemoveUsers.tsx:191 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" @@ -382,9 +312,6 @@ msgstr "Modifica il numero di \"Mi piace\" che una risposta deve avere per esser msgid "Adult Content" 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/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Il contenuto per adulti รจ disattivato." @@ -398,20 +325,9 @@ msgstr "Avanzato" 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 -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 "" - -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 -msgid "Allow new messages from" -msgstr "" +#: src/screens/Messages/Settings.tsx:61 src/screens/Messages/Settings.tsx:64 +msgid "Allow messages from" +msgstr "Permetti tutti i messaggi di" #: src/screens/Login/ForgotPasswordForm.tsx:178 #: src/view/com/modals/ChangePassword.tsx:171 @@ -422,13 +338,13 @@ msgstr "Hai giร  un codice?" msgid "Already signed in as @{0}" msgstr "Hai giร  effettuato l'accesso come @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -436,7 +352,7 @@ msgstr "Testo alternativo" #: src/view/com/util/post-embeds/GifEmbed.tsx:179 msgid "Alt Text" -msgstr "" +msgstr "Testo Alternativo" #: 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." @@ -455,10 +371,6 @@ msgstr "Una email รจ stata inviata al tuo indirizzo precedente, {0}. Include un msgid "An error occured" msgstr "Si รจ verificato un errore" -#: src/components/dms/MessageMenu.tsx:134 -#~ msgid "An error occurred while trying to delete the message. Please try again." -#~ msgstr "" - #: src/lib/moderation/useReportOptions.ts:27 msgid "An issue not included in these options" msgstr "Un problema non incluso in queste opzioni" @@ -474,7 +386,7 @@ msgstr "Si รจ verificato un problema, riprova un'altra volta." #: src/screens/Onboarding/StepInterests/index.tsx:194 msgid "an unknown error occurred" -msgstr "" +msgstr "si รจ verificato un errore sconosciuto" #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 @@ -497,15 +409,15 @@ msgstr "Comportamento antisociale" msgid "App Language" msgstr "Lingua dell'app" -#: src/view/screens/AppPasswords.tsx:228 +#: src/view/screens/AppPasswords.tsx:223 msgid "App password deleted" msgstr "Password dell'app eliminata" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:135 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "Le password dell'app possono contenere solo lettere, numeri, spazi, trattini e trattini bassi." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:100 msgid "App Password names must be at least 4 characters long." msgstr "Le password delle app devono contenere almeno 4 caratteri." @@ -522,32 +434,19 @@ msgstr "Impostazioni della password dell'app" msgid "App Passwords" msgstr "Password dell'App" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Ricorso" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:237 msgid "Appeal \"{0}\" label" msgstr "Etichetta \"{0}\" del ricorso" -#~ msgid "Appeal content warning" -#~ msgstr "Ricorso contro l'avviso sui contenuti" - -#~ msgid "Appeal Content Warning" -#~ msgstr "Ricorso contro l'Avviso sui Contenuti" - -#~ msgid "Appeal Decision" -#~ msgstr "Decisiรณn de apelaciรณn" - -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:228 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" -msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:193 -#~ msgid "Appeal submitted." -#~ msgstr "Ricorso presentato." +msgstr "Appello inviato" #: src/screens/Messages/Conversation/ChatDisabled.tsx:51 #: src/screens/Messages/Conversation/ChatDisabled.tsx:53 @@ -566,9 +465,9 @@ msgstr "Aspetto" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:106 msgid "Apply default recommended feeds" -msgstr "" +msgstr "Applica i feed raccomandati predefiniti" -#: src/view/screens/AppPasswords.tsx:282 +#: src/view/screens/AppPasswords.tsx:265 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Confermi di voler eliminare la password dell'app \"{name}\"?" @@ -578,15 +477,11 @@ msgstr "Confermi di voler eliminare la password dell'app \"{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 "" - -#: 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 "" +msgstr "Sei sicuro di voler cancellare questo messaggio? Il messaggio verrร  cancellato per te, ma non per gli altri partecipanti." #: 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 "Sei sicuro di voler abbandonare questa conversazione? I messaggi verranno cancellati per te, ma non per gli altri partecipanti." #: src/view/com/feeds/FeedSourceCard.tsx:293 msgid "Are you sure you want to remove {0} from your feeds?" @@ -596,13 +491,10 @@ msgstr "Confermi di voler rimuovere {0} dai tuoi feed?" msgid "Are you sure you'd like to discard this draft?" msgstr "Confermi di voler eliminare questa bozza?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Confermi?" -#~ msgid "Are you sure? This cannot be undone." -#~ msgstr "Vuoi proseguire? Questa operazione non puรฒ essere annullata." - #: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 msgid "Are you writing in <0>{0}?" msgstr "Stai scrivendo in <0>{0}?" @@ -621,13 +513,11 @@ msgstr "Almeno 3 caratteri" #: src/components/dms/MessagesListHeader.tsx:75 #: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:275 -#: src/screens/Login/LoginForm.tsx:281 +#: src/screens/Login/LoginForm.tsx:272 src/screens/Login/LoginForm.tsx:278 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 @@ -638,10 +528,6 @@ msgstr "Almeno 3 caratteri" msgid "Back" msgstr "Indietro" -#~ msgctxt "action" -#~ msgid "Back" -#~ msgstr "Indietro" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basato sui tuoi interessi {interestsText}" @@ -666,7 +552,7 @@ msgstr "Blocca" #: src/components/dms/ConvoMenu.tsx:188 #: src/components/dms/ConvoMenu.tsx:192 msgid "Block account" -msgstr "" +msgstr "Blocca account" #: src/view/com/profile/ProfileMenu.tsx:302 #: src/view/com/profile/ProfileMenu.tsx:309 @@ -701,8 +587,7 @@ msgstr "Bloccato" msgid "Blocked accounts" msgstr "Accounts bloccati" -#: src/Navigation.tsx:141 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:141 src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Accounts bloccati" @@ -724,7 +609,7 @@ msgstr "Il blocco non impedisce al labeler di inserire etichette nel tuo account #: 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 "l blocco รจ pubblico. Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire con te in nessun altro modo." +msgstr "Il blocco รจ pubblico. Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire con te in nessun altro modo." #: src/view/com/profile/ProfileMenu.tsx:355 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." @@ -743,31 +628,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/view/com/auth/onboarding/WelcomeDesktop.tsx:80 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:82 -#~ msgid "Bluesky is flexible." -#~ msgstr "Bluesky รจ flessibile." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:71 -#~ msgid "Bluesky is open." -#~ msgstr "Bluesky รจ aperto." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:58 -#~ msgid "Bluesky is public." -#~ msgstr "Bluesky รจ pubblico." - -#~ 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/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." 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." -#~ msgid "Bluesky.Social" -#~ msgstr "Bluesky.Social" - #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" msgstr "Sfoca le immagini" @@ -783,10 +647,7 @@ msgstr "Libri" #: src/screens/Home/NoFeedsPinned.tsx:116 #: src/screens/Home/NoFeedsPinned.tsx:123 msgid "Browse other feeds" -msgstr "" - -#~ msgid "Build version {0} {1}" -#~ msgstr "Versione {0} {1}" +msgstr "Cerca altri feed" #: src/view/com/auth/SplashScreen.web.tsx:151 msgid "Business" @@ -799,10 +660,6 @@ msgstr "Attivitร  commerciale" msgid "by โ€”" msgstr "da โ€”" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 -#~ msgid "by {0}" -#~ msgstr "di {0}" - #: src/components/LabelingServiceCard/index.tsx:56 msgid "By {0}" msgstr "Di {0}" @@ -827,7 +684,7 @@ msgstr "da te" msgid "Camera" msgstr "Fotocamera" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: src/view/com/modals/AddAppPasswords.tsx:217 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." @@ -871,9 +728,6 @@ msgstr "Cancella" msgid "Cancel account deletion" msgstr "Annulla la cancellazione dell'account" -#~ msgid "Cancel add image alt text" -#~ msgstr "Cancelยทla afegir text a la imatge" - #: src/view/com/modals/ChangeHandle.tsx:144 msgid "Cancel change handle" msgstr "Annulla il cambio del tuo nome utente" @@ -899,9 +753,6 @@ msgstr "" msgid "Cancel search" msgstr "Annulla la ricerca" -#~ msgid "Cancel waitlist signup" -#~ msgstr "Annulla l'iscrizione alla lista d'attesa" - #: src/view/com/modals/LinkWarning.tsx:106 msgid "Cancels opening the linked website" msgstr "Annulla l'apertura del sito collegato" @@ -941,22 +792,18 @@ msgstr "Cambia la Password" msgid "Change post language to {0}" msgstr "Cambia la lingua del post a {0}" -#~ msgid "Change your Bluesky password" -#~ msgstr "Cambia la tua password di Bluesky" - #: src/view/com/modals/ChangeEmail.tsx:104 msgid "Change Your Email" msgstr "Cambia la tua email" -#: src/Navigation.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 +#: src/Navigation.tsx:302 src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" -msgstr "" +msgstr "Messaggi" #: src/components/dms/ConvoMenu.tsx:82 msgid "Chat muted" -msgstr "" +msgstr "Conversazione silenziata" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 @@ -973,7 +820,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:84 msgid "Chat unmuted" -msgstr "" +msgstr "Conversizione non silenziata" #: src/screens/Messages/Conversation/index.tsx:26 #~ msgid "Chat with {chatId}" @@ -984,15 +831,7 @@ msgstr "" msgid "Check my status" msgstr "Verifica il mio stato" -#: 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 "Dai un'occhiata ad alcuni feed consigliati. Clicca + per aggiungerli al tuo elenco dei feed." - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 -#~ 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:268 +#: src/screens/Login/LoginForm.tsx:265 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." @@ -1004,9 +843,6 @@ 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\"" -#~ msgid "Choose a new Bluesky username or create" -#~ msgstr "Scegli un nuovo nome utente Bluesky o creane uno" - #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Scegli il servizio" @@ -1015,14 +851,9 @@ msgstr "Scegli il servizio" msgid "Choose the algorithms that power your custom feeds." msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati." -#: 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 "Scegli gli algoritmi che migliorano la tua esperienza con i feed personalizzati." - #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" -msgstr "" +msgstr "Scegli questo colore per il tuo avatar" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 #~ msgid "Choose your main feeds" @@ -1086,7 +917,7 @@ msgstr "Clicca qui per aprire il menu per {tag}" #: src/components/dms/MessageItem.tsx:237 msgid "Click to retry failed message" -msgstr "" +msgstr "Clicca per riprovare l'invio" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1137,14 +968,13 @@ msgstr "Chiudi il visualizzatore di immagini" #: src/components/dms/MessagesNUX.tsx:162 msgid "Close modal" -msgstr "" +msgstr "Chiudi finestra" #: src/view/shell/index.web.tsx:61 msgid "Close navigation footer" msgstr "Chiudi la navigazione del footer" -#: src/components/Menu/index.tsx:209 -#: src/components/TagMenu/index.tsx:262 +#: src/components/Menu/index.tsx:209 src/components/TagMenu/index.tsx:262 msgid "Close this dialog" msgstr "Chiudi la finestra" @@ -1180,8 +1010,7 @@ msgstr "Commedia" msgid "Comics" msgstr "Fumetti" -#: src/Navigation.tsx:248 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:248 src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Linee guida della community" @@ -1213,8 +1042,7 @@ msgstr "Configura l'impostazione del filtro dei contenuti per la categoria: {nam msgid "Configured in <0>moderation settings." msgstr "Configurato nelle <0>impostazioni di moderazione." -#: src/components/Prompt.tsx:159 -#: src/components/Prompt.tsx:162 +#: src/components/Prompt.tsx:159 src/components/Prompt.tsx:162 #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 @@ -1225,10 +1053,6 @@ msgstr "Configurato nelle <0>impostazioni di moderazione." msgid "Confirm" msgstr "Conferma" -#~ msgctxt "action" -#~ msgid "Confirm" -#~ msgstr "Conferma" - #: src/view/com/modals/ChangeEmail.tsx:188 #: src/view/com/modals/ChangeEmail.tsx:190 msgid "Confirm Change" @@ -1242,9 +1066,6 @@ msgstr "Conferma le impostazioni della lingua del contenuto" msgid "Confirm delete account" 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 msgid "Confirm your age:" msgstr "Conferma la tua etร :" @@ -1263,10 +1084,7 @@ msgstr "Conferma la tua data di nascita" msgid "Confirmation code" 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:302 +#: src/screens/Login/LoginForm.tsx:299 msgid "Connecting..." msgstr "Connessione in corso..." @@ -1274,20 +1092,10 @@ msgstr "Connessione in corso..." msgid "Contact support" msgstr "Contatta il supporto" -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "content" -#~ msgstr "contenuto" - #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" msgstr "Contenuto Bloccato" -#~ msgid "Content filtering" -#~ msgstr "Filtro dei contenuti" - -#~ msgid "Content Filtering" -#~ msgstr "Filtro dei Contenuti" - #: src/screens/Moderation/index.tsx:285 msgid "Content filters" msgstr "Filtri dei contenuti" @@ -1342,13 +1150,13 @@ msgstr "Vai al passaggio successivo" #: src/screens/Messages/List/ChatListItem.tsx:153 msgid "Conversation deleted" -msgstr "" +msgstr "Conversazione cancellata" #: src/screens/Onboarding/index.tsx:41 msgid "Cooking" msgstr "Cucina" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:196 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiato" @@ -1369,11 +1177,11 @@ msgstr "Copiato nel clipboard" msgid "Copied!" msgstr "Copiato!" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:190 msgid "Copies app password" msgstr "Copia la password dell'app" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:189 msgid "Copy" msgstr "Copia" @@ -1381,8 +1189,7 @@ msgstr "Copia" msgid "Copy {0}" msgstr "Copia {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:120 src/components/dialogs/Embed.tsx:139 msgid "Copy code" msgstr "Copia il codice" @@ -1401,21 +1208,20 @@ msgstr "Copia il link al post" #: src/components/dms/MessageMenu.tsx:110 #: src/components/dms/MessageMenu.tsx:112 msgid "Copy message text" -msgstr "" +msgstr "Copia il testo del messaggio" #: 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/Navigation.tsx:253 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:253 src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" -msgstr "" +msgstr "Errore nell'abbandonare la conversione" #: src/view/screens/ProfileFeed.tsx:102 msgid "Could not load feed" @@ -1431,14 +1237,7 @@ msgstr "No si รจ potuto caricare la lista" #: src/components/dms/ConvoMenu.tsx:88 msgid "Could not mute chat" -msgstr "" - -#: src/components/dms/ConvoMenu.tsx:68 -#~ msgid "Could not unmute chat" -#~ msgstr "" - -#~ msgid "Country" -#~ msgstr "Paese" +msgstr "Errore nel silenziare la conversazione" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 @@ -1453,16 +1252,15 @@ msgstr "Crea un nuovo Bluesky account" msgid "Create Account" msgstr "Crea un account" -#: src/components/dialogs/Signin.tsx:86 -#: src/components/dialogs/Signin.tsx:88 +#: src/components/dialogs/Signin.tsx:86 src/components/dialogs/Signin.tsx:88 msgid "Create an account" msgstr "Crea un account" #: src/screens/Onboarding/StepProfile/index.tsx:282 msgid "Create an avatar instead" -msgstr "" +msgstr "In alternativa crea un avatar" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:227 msgid "Create App Password" msgstr "Crea un password per l'app" @@ -1475,7 +1273,7 @@ msgstr "Crea un nuovo account" msgid "Create report for {0}" msgstr "Crea un report per {0}" -#: src/view/screens/AppPasswords.tsx:251 +#: src/view/screens/AppPasswords.tsx:246 msgid "Created {0}" msgstr "Creato {0}" @@ -1563,13 +1361,13 @@ msgstr "Elimina l'account" #: src/view/com/modals/DeleteAccount.tsx:105 msgid "Delete Account <0>\"<1>{0}<2>\"" -msgstr "" +msgstr "Cancella l'account <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:244 +#: src/view/screens/AppPasswords.tsx:239 msgid "Delete app password" msgstr "Elimina la password dell'app" -#: src/view/screens/AppPasswords.tsx:280 +#: src/view/screens/AppPasswords.tsx:263 msgid "Delete app password?" msgstr "Eliminare la password dell'app?" @@ -1580,7 +1378,7 @@ msgstr "" #: src/components/dms/MessageMenu.tsx:124 msgid "Delete for me" -msgstr "" +msgstr "Cancella per me" #: src/view/screens/ProfileList.tsx:471 msgid "Delete List" @@ -1588,11 +1386,11 @@ msgstr "Elimina la lista" #: src/components/dms/MessageMenu.tsx:147 msgid "Delete message" -msgstr "" +msgstr "Cancella messaggio" #: src/components/dms/MessageMenu.tsx:122 msgid "Delete message for me" -msgstr "" +msgstr "Cancella messaggio per me" #: src/view/com/modals/DeleteAccount.tsx:285 msgid "Delete my account" @@ -1637,15 +1435,9 @@ msgstr "" msgid "Description" msgstr "Descrizione" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" -msgstr "" - -#~ msgid "Dev Server" -#~ msgstr "Server di sviluppo" - -#~ msgid "Developer Tools" -#~ msgstr "Strumenti per sviluppatori" +msgstr "Testo descrittivo alternativo" #: src/view/com/composer/Composer.tsx:264 msgid "Did you want to say anything?" @@ -1657,7 +1449,7 @@ msgstr "Fioco" #: src/components/dms/MessagesNUX.tsx:88 msgid "Direct messages are here!" -msgstr "" +msgstr "I messaggi diretti sono arrivati!" #: src/view/screens/AccessibilitySettings.tsx:94 msgid "Disable autoplay for GIFs" @@ -1674,8 +1466,7 @@ msgstr "Disattiva il feedback tattile" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:124 src/screens/Messages/Settings.tsx:127 #: src/screens/Moderation/index.tsx:341 msgid "Disabled" msgstr "Disabilitato" @@ -1691,8 +1482,7 @@ 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:518 src/screens/Moderation/index.tsx:522 msgid "Discourage apps from showing my account to logged-out users" msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" @@ -1736,9 +1526,6 @@ msgstr "Valore del dominio" msgid "Domain verified!" msgstr "Dominio verificato!" -#~ msgid "Don't have an invite code?" -#~ msgstr "Non hai un codice di invito?" - #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 @@ -1747,8 +1534,8 @@ msgstr "Dominio verificato!" #: src/screens/Onboarding/StepProfile/index.tsx:324 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 +#: src/view/com/modals/AddAppPasswords.tsx:227 +#: src/view/com/modals/AltImage.tsx:140 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 @@ -1866,12 +1653,12 @@ msgid "Edit my profile" msgstr "Modifica il mio profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:176 msgid "Edit profile" msgstr "Modifica il profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit Profile" msgstr "Modifica il Profilo" @@ -1962,9 +1749,6 @@ msgstr "Attiva il contenuto per adulti" msgid "Enable external media" msgstr "Abilita i media esterni" -#~ msgid "Enable External Media" -#~ msgstr "Attiva Media Esterna" - #: src/view/screens/PreferencesExternalEmbeds.tsx:76 msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" @@ -1977,8 +1761,7 @@ msgstr "Abilita questa impostazione per vedere solo le risposte delle persone ch msgid "Enable this source only" msgstr "Abilita solo questa fonte" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 +#: src/screens/Messages/Settings.tsx:115 src/screens/Messages/Settings.tsx:118 #: src/screens/Moderation/index.tsx:339 msgid "Enabled" msgstr "Abilitato" @@ -1987,11 +1770,7 @@ msgstr "Abilitato" msgid "End of feed" msgstr "Fine del feed" -#: src/components/Lists.tsx:52 -#~ msgid "End of list" -#~ msgstr "" - -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:167 msgid "Enter a name for this App Password" msgstr "Inserisci un nome per questa password dell'app" @@ -1999,8 +1778,8 @@ msgstr "Inserisci un nome per questa password dell'app" msgid "Enter a password" msgstr "Inserisci una password" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Inserisci una parola o tag" @@ -2027,9 +1806,6 @@ msgstr "Inserisci l'e-mail che hai utilizzato per creare il tuo account. Ti invi msgid "Enter your birth date" msgstr "Inserisci la tua data di nascita" -#~ msgid "Enter your email" -#~ msgstr "Inserisci la tua email" - #: src/screens/Login/ForgotPasswordForm.tsx:105 #: src/screens/Signup/StepInfo/index.tsx:92 msgid "Enter your email address" @@ -2043,16 +1819,13 @@ msgstr "Inserisci la tua nuova email qui sopra" msgid "Enter your new email address below." msgstr "Inserisci il tuo nuovo indirizzo email qui sotto." -#~ msgid "Enter your phone number" -#~ msgstr "Inserisci il tuo numero di telefono" - #: src/screens/Login/index.tsx:101 msgid "Enter your username and password" msgstr "Inserisci il tuo nome di utente e la tua password" #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" -msgstr "" +msgstr "Un errore รจ avvenuto durante il salvataggio del file" #: src/screens/Signup/StepCaptcha/index.tsx:51 msgid "Error receiving captcha response." @@ -2069,14 +1842,13 @@ msgstr "Tutti" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Everybody can reply" -msgstr "" +msgstr "Tutti possono rispondere" #: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/components/dms/MessagesNUX.tsx:134 src/screens/Messages/Settings.tsx:74 +#: src/screens/Messages/Settings.tsx:77 msgid "Everyone" -msgstr "" +msgstr "Tutti" #: src/lib/moderation/useReportOptions.ts:67 msgid "Excessive mentions or replies" @@ -2084,7 +1856,7 @@ msgstr "Menzioni o risposte eccessive" #: src/lib/moderation/useReportOptions.ts:80 msgid "Excessive or unwanted messages" -msgstr "" +msgstr "Troppi o indesiderati messaggi" #: src/view/com/modals/DeleteAccount.tsx:293 msgid "Exits account deletion process" @@ -2107,9 +1879,6 @@ msgstr "Uscita dalla visualizzazione dell'immagine" msgid "Exits inputting search query" msgstr "Uscita dall'inserzione della domanda di ricerca" -#~ msgid "Exits signing up for waitlist with {email}" -#~ msgstr "Uscita dall'iscrizione alla lista d'attesa con {email}" - #: src/view/com/lightbox/Lightbox.web.tsx:183 msgid "Expand alt text" msgstr "Ampliare il testo alternativo" @@ -2160,8 +1929,8 @@ msgstr "Preferenze multimediali esterni" msgid "External media settings" msgstr "Impostazioni multimediali esterni" +#: src/view/com/modals/AddAppPasswords.tsx:116 #: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 msgid "Failed to create app password." msgstr "Impossibile creare la password dell'app." @@ -2171,7 +1940,7 @@ msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova #: src/components/dms/MessageMenu.tsx:73 msgid "Failed to delete message" -msgstr "" +msgstr "Errore nel cancellare il messaggio" #: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Failed to delete post, please try again" @@ -2184,16 +1953,7 @@ msgstr "Ha fallito il Il caricamento delle GIF's" #: 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 "Non possiamo caricare i feed consigliati" +msgstr "Errore nel caricare i vecchi messaggi" #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Failed to save image: {0}" @@ -2201,21 +1961,16 @@ msgstr "Non รจ possibile salvare l'immagine: {0}" #: src/components/dms/MessageItem.tsx:230 msgid "Failed to send" -msgstr "" +msgstr "Errore nell'invio" -#: src/screens/Messages/Conversation/MessageListError.tsx:29 -#~ msgid "Failed to send message(s)." -#~ msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:224 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "" +msgstr "Errore nel invio dell'appello, si prega di riprovare." -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/components/dms/MessagesNUX.tsx:60 src/screens/Messages/Settings.tsx:34 msgid "Failed to update settings" -msgstr "" +msgstr "Errore nell'aggiornamento delle impostazioni" #: src/Navigation.tsx:203 msgid "Feed" @@ -2265,7 +2020,7 @@ msgstr "Archivia i contenuti" #: src/view/screens/Settings/ExportCarDialog.tsx:42 msgid "File saved successfully!" -msgstr "" +msgstr "File salvata con successo!" #: src/lib/moderation/useLabelBehaviorDescription.ts:66 msgid "Filter from feeds" @@ -2285,23 +2040,10 @@ msgstr "Trova account da seguire" msgid "Find posts and users on Bluesky" msgstr "Trova post e utenti su Bluesky" -#~ msgid "Find users on Bluesky" -#~ msgstr "Trova utenti su Bluesky" - -#~ msgid "Find users with the search tool on the right" -#~ msgstr "Trova gli utenti con lo strumento di ricerca sulla destra" - -#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 -#~ msgid "Finding similar accounts..." -#~ msgstr "Trovare account similiโ€ฆ" - #: src/view/screens/PreferencesFollowingFeed.tsx:110 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 msgid "Fine-tune the discussion threads." msgstr "Ottimizza i la visualizzazione delle discussioni." @@ -2318,8 +2060,7 @@ msgstr "Flessibile" msgid "Flip horizontal" msgstr "Gira in orizzontale" -#: src/view/com/modals/EditImage.tsx:121 -#: src/view/com/modals/EditImage.tsx:288 +#: src/view/com/modals/EditImage.tsx:121 src/view/com/modals/EditImage.tsx:288 msgid "Flip vertically" msgstr "Gira in verticale" @@ -2387,12 +2128,9 @@ msgstr "ti segue" msgid "Followers" msgstr "Followers" -#~ msgid "following" -#~ msgstr "following" - -#: src/components/ProfileHoverCard/index.web.tsx:411 -#: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/components/ProfileHoverCard/index.web.tsx:412 +#: src/components/ProfileHoverCard/index.web.tsx:423 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 #: src/view/screens/Feeds.tsx:683 @@ -2401,7 +2139,7 @@ msgstr "Followers" msgid "Following" msgstr "Following" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 msgid "Following {0}" msgstr "Seguiti {0}" @@ -2413,8 +2151,7 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferenze del Following feed" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 +#: src/Navigation.tsx:269 src/view/com/home/HomeHeaderLayout.web.tsx:64 #: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 @@ -2437,26 +2174,19 @@ 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:233 +#: src/view/com/modals/AddAppPasswords.tsx:210 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." -#~ msgid "Forgot" -#~ msgstr "Dimenticato" - -#~ msgid "Forgot password" -#~ msgstr "Ho dimenticato il password" - -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:129 src/screens/Login/index.tsx:144 msgid "Forgot Password" msgstr "Hai dimenticato la Password" -#: src/screens/Login/LoginForm.tsx:224 +#: src/screens/Login/LoginForm.tsx:221 msgid "Forgot password?" msgstr "Hai dimenticato la password?" -#: src/screens/Login/LoginForm.tsx:235 +#: src/screens/Login/LoginForm.tsx:232 msgid "Forgot?" msgstr "Hai dimenticato?" @@ -2479,7 +2209,7 @@ msgstr "Galleria" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" -msgstr "" +msgstr "Iniziamo" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -2488,7 +2218,7 @@ msgstr "Inizia" #: src/screens/Onboarding/StepProfile/index.tsx:224 msgid "Give your profile a face" -msgstr "" +msgstr "Dai un volto al tuo profilo" #: src/lib/moderation/useReportOptions.ts:38 msgid "Glaring violations of law or terms of service" @@ -2516,9 +2246,8 @@ msgstr "Torna Indietro" #: src/components/dms/ReportDialog.tsx:152 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 -#: src/screens/Onboarding/Layout.tsx:102 -#: src/screens/Onboarding/Layout.tsx:191 +#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/screens/Onboarding/Layout.tsx:102 src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 msgid "Go back to previous step" msgstr "Torna al passaggio precedente" @@ -2537,7 +2266,7 @@ msgstr "Torna Home" #: src/screens/Messages/List/ChatListItem.tsx:208 msgid "Go to conversation with {0}" -msgstr "" +msgstr "Vai alla conversazione con {0}" #: src/screens/Login/ForgotPasswordForm.tsx:172 #: src/view/com/modals/ChangePassword.tsx:168 @@ -2546,11 +2275,11 @@ msgstr "Seguente" #: src/components/dms/ConvoMenu.tsx:167 msgid "Go to profile" -msgstr "" +msgstr "Va al profilo" #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" -msgstr "" +msgstr "Vai al profilo dell'utente" #: src/lib/moderation/useGlobalLabelStrings.ts:46 msgid "Graphic Media" @@ -2587,7 +2316,7 @@ msgstr "Aiuto" #: src/screens/Onboarding/StepProfile/index.tsx:227 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." -msgstr "" +msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o creando un avatar." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 #~ msgid "Here are some accounts for you to follow" @@ -2601,7 +2330,7 @@ msgstr "" #~ 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:204 +#: src/view/com/modals/AddAppPasswords.tsx:154 msgid "Here is your app password." msgstr "Ecco la password dell'app." @@ -2639,9 +2368,6 @@ msgstr "Vuoi nascondere questo post?" msgid "Hide user list" msgstr "Nascondi elenco utenti" -#~ msgid "Hides posts from {0} in your feed" -#~ msgstr "Nasconde i post di {0} nel tuo feed" - #: src/view/com/posts/FeedErrorMessage.tsx:118 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Si รจ verificato un problema durante il contatto con il server del feed. Informa il proprietario del feed del problema." @@ -2678,23 +2404,16 @@ msgstr "Non siamo riusciti a caricare il servizio di moderazione." msgid "Home" msgstr "Home" -#~ msgid "Home Feed Preferences" -#~ msgstr "Preferenze per i feed per la pagina d'inizio" - #: src/view/com/modals/ChangeHandle.tsx:414 msgid "Host:" msgstr "Hosting:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:157 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:154 src/screens/Signup/StepInfo/index.tsx:40 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Servizio di hosting" -#~ msgid "Hosting provider address" -#~ msgstr "Indirizzo del fornitore di hosting" - #: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "How should we open this link?" msgstr "Come dovremmo aprire questo link?" @@ -2716,7 +2435,7 @@ msgstr "Ho il mio dominio" #: src/components/dms/BlockedByListDialog.tsx:56 #: src/components/dms/ReportConversationPrompt.tsx:22 msgid "I understand" -msgstr "" +msgstr "Ho capito" #: src/view/com/lightbox/Lightbox.web.tsx:185 msgid "If alt text is long, toggles alt text expanded state" @@ -2754,20 +2473,17 @@ msgstr "Illegale e Urgente" msgid "Image" msgstr "Immagine" -#: src/view/com/modals/AltImage.tsx:122 +#: src/view/com/modals/AltImage.tsx:121 msgid "Image alt text" msgstr "Testo alternativo dell'immagine" -#~ msgid "Image options" -#~ msgstr "Opzioni per l'immagine" - #: src/lib/moderation/useReportOptions.ts:48 msgid "Impersonation or false claims about identity or affiliation" msgstr "Furto d'identitร  o false affermazioni sull'identitร  o sull'affiliazione" #: src/lib/moderation/useReportOptions.ts:85 msgid "Inappropriate messages or explicit links" -msgstr "" +msgstr "Messaggi inappropriati or link espliciti" #: src/screens/Login/SetNewPasswordForm.tsx:127 msgid "Input code sent to your email for password reset" @@ -2777,13 +2493,7 @@ msgstr "Inserisci il codice inviato alla tua email per reimpostare la password" msgid "Input confirmation code for account deletion" msgstr "Inserisci il codice di conferma per la cancellazione dell'account" -#~ msgid "Input email for Bluesky account" -#~ msgstr "Inserisci l'e-mail per l'account di Bluesky" - -#~ msgid "Input invite code to proceed" -#~ msgstr "Inserisci il codice di invito per procedere" - -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:181 msgid "Input name for app password" msgstr "Inserisci il nome per la password dell'app" @@ -2795,28 +2505,19 @@ msgstr "Inserisci la nuova password" msgid "Input password for account deletion" 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:263 +#: src/screens/Login/LoginForm.tsx:260 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:218 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the password tied to {identifier}" msgstr "Inserisci la password relazionata a {identifier}" -#: src/screens/Login/LoginForm.tsx:191 +#: src/screens/Login/LoginForm.tsx:188 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" -#~ msgid "Input the verification code we have texted to you" -#~ msgstr "Inserisci il codice di verifica che ti abbiamo inviato tramite SMS" - -#~ 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:217 +#: src/screens/Login/LoginForm.tsx:214 msgid "Input your password" msgstr "Inserisci la tua password" @@ -2830,9 +2531,9 @@ msgstr "Inserisci il tuo identificatore" #: src/components/dms/MessagesNUX.tsx:82 msgid "Introducing Direct Messages" -msgstr "" +msgstr "Introduzione ai Messaggi Diretti" -#: src/screens/Login/LoginForm.tsx:132 +#: src/screens/Login/LoginForm.tsx:129 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Codice di conferma 2FA non valido." @@ -2841,13 +2542,10 @@ 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:137 +#: src/screens/Login/LoginForm.tsx:134 msgid "Invalid username or password" msgstr "Nome dell'utente o password errato" -#~ msgid "Invite" -#~ msgstr "Invita" - #: src/view/com/modals/InviteCodes.tsx:94 msgid "Invite a Friend" msgstr "Invita un amico" @@ -2864,9 +2562,6 @@ msgstr "Codice invito non accettato. Controlla di averlo inserito correttamente msgid "Invite codes: {0} available" msgstr "Codici di invito: {0} disponibili" -#~ msgid "Invite codes: {invitesAvailable} available" -#~ msgstr "Codici di invito: {invitesAvailable} disponibili" - #: src/view/com/modals/InviteCodes.tsx:170 msgid "Invite codes: 1 available" msgstr "Codici di invito: 1 disponibile" @@ -2912,15 +2607,11 @@ msgstr "Etichette" msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere utilizzate per nascondere, avvisare e classificare il network." -#: src/components/moderation/LabelsOnMe.tsx:61 -#~ msgid "labels have been placed on this {labelTarget}" -#~ msgstr "le etichette sono state inserite su questo {labelTarget}" - -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "Etichette sul tuo account" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "Etichette sul tuo contenuto" @@ -2949,9 +2640,6 @@ msgstr "Lingue" msgid "Latest" msgstr "Ultime" -#~ msgid "Learn more" -#~ msgstr "Ulteriori informazioni" - #: src/components/moderation/ScreenHider.tsx:136 msgid "Learn More" msgstr "Ulteriori Informazioni" @@ -2976,12 +2664,12 @@ msgstr "Saperne di piรน." #: src/components/dms/LeaveConvoPrompt.tsx:50 msgid "Leave" -msgstr "" +msgstr "Abbandona" #: src/components/dms/MessagesListBlockedFooter.tsx:66 #: src/components/dms/MessagesListBlockedFooter.tsx:73 msgid "Leave chat" -msgstr "" +msgstr "Abbandona la chat" #: src/components/dms/ConvoMenu.tsx:138 #: src/components/dms/ConvoMenu.tsx:141 @@ -2989,7 +2677,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:211 #: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Leave conversation" -msgstr "" +msgstr "Abbandona la conversazione" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 msgid "Leave them all unchecked to see any language." @@ -3007,8 +2695,7 @@ msgstr "mancano." msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'archivio legacy รจ stato cancellato, riattiva la app." -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:130 src/screens/Login/index.tsx:145 msgid "Let's get your password reset!" msgstr "Reimpostazione della password!" @@ -3023,17 +2710,12 @@ msgstr "Andiamo!" msgid "Light" msgstr "Chiaro" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Like" -#~ msgstr "Mi piace" - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:570 msgid "Like this feed" msgstr "Metti mi piace a questo feed" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 +#: src/components/LikesDialog.tsx:87 src/Navigation.tsx:208 #: src/Navigation.tsx:213 msgid "Liked by" msgstr "Piace a" @@ -3113,21 +2795,15 @@ msgstr "Lista sbloccata" msgid "List unmuted" msgstr "Lista non mutata" -#: src/Navigation.tsx:121 -#: src/view/screens/Profile.tsx:192 -#: src/view/screens/Profile.tsx:198 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 -#: src/view/shell/Drawer.tsx:509 +#: src/Navigation.tsx:121 src/view/screens/Profile.tsx:192 +#: src/view/screens/Profile.tsx:198 src/view/shell/desktop/LeftNav.tsx:373 +#: src/view/shell/Drawer.tsx:508 src/view/shell/Drawer.tsx:509 msgid "Lists" msgstr "Liste" #: src/components/dms/BlockedByListDialog.tsx:39 msgid "Lists blocking this user:" -msgstr "" - -#~ msgid "Load more posts" -#~ msgstr "Carica piรน post" +msgstr "Liste che bloccano questo utente:" #: src/view/screens/Notifications.tsx:168 msgid "Load new notifications" @@ -3144,9 +2820,6 @@ msgstr "Carica nuovi posts" msgid "Loading..." msgstr "Caricamento..." -#~ msgid "Local dev server" -#~ msgstr "Server di sviluppo locale" - #: src/Navigation.tsx:228 msgid "Log" msgstr "Log" @@ -3175,47 +2848,34 @@ msgstr "Accedi all'account che non รจ nella lista" msgid "Long press to open tag menu for #{tag}" msgstr "Tieni premutoper aprire il menu dei tag per #{tag}" -#~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" -#~ msgstr "Sembra che questo feed sia disponibile solo per gli utenti con un account Bluesky. Per favore registrati o accedi per visualizzare questo feed!" - #: src/screens/Login/SetNewPasswordForm.tsx:116 msgid "Looks like XXXXX-XXXXX" msgstr "Sembra XXXX-XXXXX" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." -msgstr "" +msgstr "Sembra che tu non abbia salvato nessun feed! Usa le nostre raccomandazioni o cerca qui sotto." #: src/screens/Home/NoFeedsPinned.tsx:96 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" -msgstr "" - -#: src/screens/Feeds/NoFollowingFeed.tsx:38 -#~ msgid "Looks like you're missing a following feed." -#~ msgstr "" +msgstr "Sembra che tu non abbia piรน feed fissati. Ma non ti preoccupare, puoi aggiungerne qualcuno di quelli qui sotto ๐Ÿ˜„" #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "" +msgstr "Sembra che ti manchi un following feed. <0>Clicca qui per aggiungere uno." #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" msgstr "Assicurati che questo sia dove intendi andare!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Gestisci le parole mute e i tags" #: src/components/dms/ConvoMenu.tsx:151 #: src/components/dms/ConvoMenu.tsx:158 msgid "Mark as read" -msgstr "" - -#~ msgid "May not be longer than 253 characters" -#~ msgstr "Non puรฒ contenere piรน di 253 caratteri" - -#~ msgid "May only contain letters and numbers" -#~ msgstr "Puรฒ contenere solo lettere e numeri" +msgstr "Segna come letto" #: src/view/screens/AccessibilitySettings.tsx:89 #: src/view/screens/Profile.tsx:195 @@ -3237,15 +2897,12 @@ msgstr "Menรน" #: src/components/dms/MessageProfileButton.tsx:67 msgid "Message {0}" -msgstr "" +msgstr "Messaggio {0}" #: src/components/dms/MessageMenu.tsx:72 #: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Message deleted" -msgstr "" - -#~ msgid "Message from server" -#~ msgstr "Messaggio dal server" +msgstr "Messaggio cancellato" #: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" @@ -3258,22 +2915,18 @@ msgstr "" #: src/screens/Messages/Conversation/MessageInput.tsx:70 #: src/screens/Messages/Conversation/MessageInput.web.tsx:49 msgid "Message is too long" -msgstr "" +msgstr "Il messaggio รจ troppo lungo" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/List/index.tsx:301 msgid "Message settings" -msgstr "" +msgstr "Impostazione messaggio" #: src/Navigation.tsx:521 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 msgid "Messages" -msgstr "" - -#: src/Navigation.tsx:307 -#~ msgid "Messaging settings" -#~ msgstr "" +msgstr "Messaggi" #: src/lib/moderation/useReportOptions.ts:46 msgid "Misleading Account" @@ -3316,8 +2969,7 @@ msgstr "Lista di moderazione aggiornata" msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:131 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:131 src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liste di Moderazione" @@ -3350,16 +3002,10 @@ msgstr "Altri feed" msgid "More options" msgstr "Altre opzioni" -#~ msgid "More post options" -#~ msgstr "Altre impostazioni per il post" - #: src/view/screens/PreferencesThreads.tsx:82 msgid "Most-liked replies first" msgstr "Dai prioritร  alle risposte con piรน likes" -#~ msgid "Must be at least 3 characters" -#~ msgstr "Deve contenere almeno 3 caratteri" - #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Silenzia" @@ -3384,13 +3030,13 @@ msgstr "Silenzia tutti i post {displayTag}" #: src/components/dms/ConvoMenu.tsx:172 #: src/components/dms/ConvoMenu.tsx:178 msgid "Mute conversation" -msgstr "" +msgstr "Silenzia la conversazione" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Silenzia solo i tags" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "Silenzia nel testo & tags" @@ -3407,14 +3053,11 @@ msgstr "Silenziare la lista" msgid "Mute these accounts?" msgstr "Vuoi silenziare queste liste?" -#~ msgid "Mute this List" -#~ msgstr "Silenzia questa Lista" - -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Silenzia questa parola nel testo e nei tag del post" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "Siilenzia questa parola solo nei tags" @@ -3436,8 +3079,7 @@ msgstr "Silenziato" msgid "Muted accounts" msgstr "Account silenziato" -#: src/Navigation.tsx:136 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:136 src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Accounts Silenziati" @@ -3543,11 +3185,11 @@ msgstr "Nuova" #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" -msgstr "" +msgstr "Nuova chat" #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" -msgstr "" +msgstr "Nuovo messaggio" #: src/view/com/modals/CreateOrEditList.tsx:241 msgid "New Moderation List" @@ -3598,8 +3240,7 @@ msgstr "Notizie" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:308 -#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:305 src/screens/Login/LoginForm.tsx:312 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:220 @@ -3608,11 +3249,6 @@ msgstr "Notizie" msgid "Next" msgstr "Seguente" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 -#~ msgctxt "action" -#~ msgid "Next" -#~ msgstr "Seguente" - #: src/view/com/lightbox/Lightbox.web.tsx:169 msgid "Next image" msgstr "Immagine seguente" @@ -3640,7 +3276,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/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:117 msgid "No longer following {0}" msgstr "Non segui piรน {0}" @@ -3650,22 +3286,21 @@ msgstr "Non piรน di 253 caratteri" #: src/screens/Messages/List/ChatListItem.tsx:105 msgid "No messages yet" -msgstr "" +msgstr "Ancora nessun messaggio" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/List/index.tsx:254 msgid "No more conversations to show" -msgstr "" +msgstr "Nessuna conversazione da visualizzare" #: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Ancora nessuna notifica!" #: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/components/dms/MessagesNUX.tsx:152 src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:95 msgid "No one" -msgstr "" +msgstr "Nessuno" #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 @@ -3674,7 +3309,7 @@ msgstr "Nessun risultato" #: src/components/dms/dialogs/SearchablePeopleList.tsx:202 msgid "No results" -msgstr "" +msgstr "Nessun risultato" #: src/components/Lists.tsx:207 msgid "No results found" @@ -3695,10 +3330,6 @@ msgstr "Nessun risultato trovato per {query}" msgid "No search results found for \"{search}\"." msgstr "Nessun risultato trovato per \"{search}\"." -#: src/components/dms/NewChat.tsx:240 -#~ msgid "No search results found for \"{searchText}\"." -#~ msgstr "" - #: src/components/dialogs/EmbedConsent.tsx:105 #: src/components/dialogs/EmbedConsent.tsx:112 msgid "No thanks" @@ -3710,10 +3341,9 @@ msgstr "Nessuno" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 msgid "Nobody can reply" -msgstr "" +msgstr "Nessuno puo rispondere" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:79 src/components/LikesDialog.tsx:99 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nessuno ha fatto ancora un like. Fai il primo tu!" @@ -3721,12 +3351,7 @@ msgstr "Nessuno ha fatto ancora un like. Fai il primo tu!" msgid "Non-sexual Nudity" msgstr "Nuditร  non sessuale" -#: src/view/com/modals/SelfLabel.tsx:135 -#~ msgid "Not Applicable." -#~ msgstr "Non applicabile." - -#: src/Navigation.tsx:116 -#: src/view/screens/Profile.tsx:100 +#: src/Navigation.tsx:116 src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Non trovato" @@ -3745,31 +3370,30 @@ msgstr "Nota sulla condivisione" 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." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/List/index.tsx:195 msgid "Nothing here" -msgstr "" +msgstr "Nulla qui" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:108 msgid "Notification sounds" -msgstr "" +msgstr "Suoni di notifica" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:105 msgid "Notification Sounds" -msgstr "" +msgstr "Suoni di notifica" #: src/Navigation.tsx:516 #: src/view/screens/Notifications.tsx:126 #: src/view/screens/Notifications.tsx:154 #: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:350 -#: src/view/shell/Drawer.tsx:456 +#: src/view/shell/desktop/LeftNav.tsx:350 src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 msgid "Notifications" msgstr "Notifiche" #: src/components/dms/MessageItem.tsx:175 msgid "Now" -msgstr "" +msgstr "Ora" #: src/view/com/modals/SelfLabel.tsx:104 msgid "Nudity" @@ -3779,13 +3403,6 @@ msgstr "Nuditร " msgid "Nudity or adult content not labeled as such" msgstr "Nuditร  o contenuti per adulti non etichettati come tali" -#~ msgid "Nudity or pornography not labeled as such" -#~ msgstr "Nuditร  o pornografia non etichettata come tale" - -#: src/screens/Signup/index.tsx:145 -#~ msgid "of" -#~ msgstr "spento" - #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" msgstr "Spento" @@ -3822,7 +3439,7 @@ msgstr "A una o piรน immagini manca il testo alternativo." #: src/screens/Onboarding/StepProfile/index.tsx:116 msgid "Only .jpg and .png files are supported" -msgstr "" +msgstr "Solo i file .jpg e .png sono supportati" #: src/view/com/threadgate/WhoCanReply.tsx:100 msgid "Only {0} can reply." @@ -3836,8 +3453,7 @@ msgstr "Contiene solo lettere, numeri e trattini" msgid "Oops, something went wrong!" msgstr "Ops! Qualcosa รจ andato male!" -#: src/components/Lists.tsx:191 -#: src/view/screens/AppPasswords.tsx:69 +#: src/components/Lists.tsx:191 src/view/screens/AppPasswords.tsx:67 #: src/view/screens/Profile.tsx:100 msgid "Oops!" msgstr "Ops!" @@ -3852,12 +3468,12 @@ msgstr "" #: src/screens/Onboarding/StepProfile/index.tsx:276 msgid "Open avatar creator" -msgstr "" +msgstr "Apri il generatore di avatar" #: src/screens/Messages/List/ChatListItem.tsx:214 #: src/screens/Messages/List/ChatListItem.tsx:215 msgid "Open conversation options" -msgstr "" +msgstr "Apri opzioni conversazione" #: src/view/com/composer/Composer.tsx:600 #: src/view/com/composer/Composer.tsx:601 @@ -3874,7 +3490,7 @@ msgstr "Apri i links con il navigatore della app" #: src/components/dms/ActionsWrapper.tsx:87 msgid "Open message options" -msgstr "" +msgstr "Apri opzioni messaggio" #: src/screens/Moderation/index.tsx:227 msgid "Open muted words and tags settings" @@ -3960,9 +3576,6 @@ msgstr "Apre il procedimento per accedere al tuo account esistente di Bluesky" msgid "Opens GIF select dialog" msgstr "Apre la finestra per selezionare i GIF" -#~ msgid "Opens invite code list" -#~ msgstr "Apre la lista dei codici di invito" - #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Apre la lista dei codici di invito" @@ -4002,7 +3615,7 @@ msgstr "Apre il modal per l'utilizzo del dominio personalizzato" msgid "Opens moderation settings" msgstr "Apre le impostazioni di moderazione" -#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Login/LoginForm.tsx:222 msgid "Opens password reset form" msgstr "Apre il modulo di reimpostazione della password" @@ -4026,9 +3639,6 @@ msgstr "Apre le impostazioni della password dell'app" msgid "Opens the Following feed preferences" msgstr "Apre le preferenze del feed Following" -#~ msgid "Opens the home feed preferences" -#~ msgstr "Apre le preferenze del home feed" - #: src/view/com/modals/LinkWarning.tsx:93 msgid "Opens the linked website" msgstr "Apre il sito Web collegato" @@ -4060,7 +3670,7 @@ msgid "Option {0} of {numItems}" msgstr "Opzione {0} di {numItems}" #: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Facoltativamente, fornisci ulteriori informazioni di seguito:" @@ -4093,10 +3703,9 @@ msgstr "Altro..." #: src/screens/Messages/Conversation/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -msgstr "" +msgstr "I nostri moderatori hanno revisionato i report e deciso di disabilitare il tuo accesso ai messaggi su Bluesky." -#: src/components/Lists.tsx:208 -#: src/view/screens/NotFound.tsx:45 +#: src/components/Lists.tsx:208 src/view/screens/NotFound.tsx:45 msgid "Page not found" msgstr "Pagina non trovata" @@ -4104,7 +3713,7 @@ msgstr "Pagina non trovata" msgid "Page Not Found" msgstr "Pagina non trovata" -#: src/screens/Login/LoginForm.tsx:201 +#: src/screens/Login/LoginForm.tsx:198 #: src/screens/Signup/StepInfo/index.tsx:102 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 @@ -4151,9 +3760,6 @@ msgstr "L'autorizzazione per accedere la cartella delle immagini รจ stata negata msgid "Pets" msgstr "Animali di compagnia" -#~ msgid "Phone number" -#~ msgstr "Numero di telefono" - #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Immagini per adulti." @@ -4173,7 +3779,7 @@ msgstr "Feeds Fissi" #: src/view/screens/ProfileList.tsx:289 msgid "Pinned to your feeds" -msgstr "" +msgstr "Fissa ai tuoi feed" #: src/view/com/util/post-embeds/GifEmbed.tsx:36 msgid "Play" @@ -4183,11 +3789,6 @@ msgstr "Play" msgid "Play {0}" msgstr "Riproduci {0}" -#: src/screens/Messages/Settings.tsx:97 -#: src/screens/Messages/Settings.tsx:104 -#~ msgid "Play notification sounds" -#~ msgstr "" - #: src/view/com/util/post-embeds/GifEmbed.tsx:35 msgid "Play or pause the GIF" msgstr "Riproduci o pausa la GIF" @@ -4217,27 +3818,18 @@ msgstr "Si prega di completare il captcha di verifica." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Conferma la tua email prima di cambiarla. Si tratta di un requisito temporaneo durante l'aggiunta degli strumenti di aggiornamento della posta elettronica e verrร  presto rimosso." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:91 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Inserisci un nome per la password dell'app. Tutti gli spazi non sono consentiti." -#~ 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:146 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." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Inserisci una parola, un tag o una frase valida da silenziare" -#~ msgid "Please enter the code you received by SMS." -#~ msgstr "Inserisci il codice che hai ricevuto via SMS." - -#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." -#~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}." - #: src/screens/Signup/state.ts:213 msgid "Please enter your email." msgstr "Inserisci la tua email." @@ -4246,24 +3838,18 @@ msgstr "Inserisci la tua email." msgid "Please enter your password as well:" msgstr "Inserisci anche la tua password:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Spiega perchรฉ ritieni che questa etichetta sia stata applicata in modo errato da {0}" #: src/screens/Messages/Conversation/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" -msgstr "" +msgstr "Per favore spiega perchรฉ pensi che i tuoi messaggi siano stati erroneamente disabiltiati" #: src/lib/hooks/useAccountSwitcher.ts:48 #: src/lib/hooks/useAccountSwitcher.ts:58 msgid "Please sign in as @{0}" -msgstr "" - -#~ msgid "Please tell us why you think this content warning was incorrectly applied!" -#~ msgstr "Spiegaci perchรฉ ritieni che questo avviso sui contenuti sia stato applicato in modo errato!" - -#~ msgid "Please tell us why you think this decision was incorrect." -#~ msgstr "Per favore spiegaci perchรฉ ritieni che questa decisione sia stata sbagliata." +msgstr "Accedi come @{0}" #: src/view/com/modals/VerifyEmail.tsx:109 msgid "Please Verify Your Email" @@ -4302,9 +3888,7 @@ msgstr "Post" msgid "Post by {0}" msgstr "Pubblicato da {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:183 src/Navigation.tsx:190 src/Navigation.tsx:197 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" @@ -4312,7 +3896,7 @@ msgstr "Pubblicato da @{0}" msgid "Post deleted" msgstr "Post eliminato" -#: src/view/com/post-thread/PostThread.tsx:193 +#: src/view/com/post-thread/PostThread.tsx:157 msgid "Post hidden" msgstr "Post nascosto" @@ -4334,8 +3918,8 @@ msgstr "Lingua del post" msgid "Post Languages" msgstr "Lingue del post" -#: src/view/com/post-thread/PostThread.tsx:188 -#: src/view/com/post-thread/PostThread.tsx:200 +#: src/view/com/post-thread/PostThread.tsx:152 +#: src/view/com/post-thread/PostThread.tsx:164 msgid "Post not found" msgstr "Post non trovato" @@ -4347,7 +3931,7 @@ msgstr "post" msgid "Posts" msgstr "Post" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "I post possono essere silenziati โ€‹โ€‹in base al testo, ai tag o entrambi." @@ -4361,24 +3945,18 @@ msgstr "Link potenzialmente fuorviante" #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" -msgstr "" +msgstr "Premere per tentare di riconnetterti" #: src/components/forms/HostingProvider.tsx:46 msgid "Press to change hosting provider" msgstr "Premi per cambiare provider di hosting" -#: src/components/Error.tsx:85 -#: src/components/Lists.tsx:93 +#: src/components/Error.tsx:85 src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 #: src/screens/Signup/index.tsx:200 msgid "Press to retry" msgstr "Premere per riprovare" -#: src/screens/Messages/Conversation/MessagesList.tsx:47 -#: src/screens/Messages/Conversation/MessagesList.tsx:53 -#~ msgid "Press to Retry" -#~ msgstr "" - #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Immagine precedente" @@ -4396,8 +3974,7 @@ msgstr "Dai prioritร  a quelli che segui" msgid "Privacy" msgstr "Privacy" -#: src/Navigation.tsx:238 -#: src/screens/Signup/StepInfo/Policies.tsx:56 +#: src/Navigation.tsx:238 src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 #: src/view/shell/Drawer.tsx:284 @@ -4406,22 +3983,19 @@ msgstr "Informativa sulla privacy" #: src/components/dms/MessagesNUX.tsx:91 msgid "Privately chat with other users." -msgstr "" +msgstr "Messaggia privatamente con altri utenti." #: src/screens/Login/ForgotPasswordForm.tsx:156 msgid "Processing..." msgstr "Elaborazione in corsoโ€ฆ" -#: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:345 +#: src/view/screens/DebugMod.tsx:889 src/view/screens/Profile.tsx:345 msgid "profile" msgstr "profilo" #: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:381 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 -#: src/view/shell/Drawer.tsx:542 +#: src/view/shell/desktop/LeftNav.tsx:381 src/view/shell/Drawer.tsx:78 +#: src/view/shell/Drawer.tsx:541 src/view/shell/Drawer.tsx:542 msgid "Profile" msgstr "Profilo" @@ -4470,9 +4044,6 @@ msgstr "Cita il post" #~ msgid "Quote Post" #~ msgstr "Cita il post" -#~ msgid "Quote Post" -#~ msgstr "Cita il post" - #: src/view/screens/PreferencesThreads.tsx:86 msgid "Random (aka \"Poster's Roulette\")" msgstr "Selezione a caso (nota anche come \"Poster's Roulette\")" @@ -4487,31 +4058,19 @@ msgstr "" #: src/components/dms/ReportDialog.tsx:172 msgid "Reason:" -msgstr "" - -#: src/components/dms/MessageReportDialog.tsx:149 -#~ msgid "Reason: {0}" -#~ msgstr "" +msgstr "Motivazione:" #: src/view/screens/Search/Search.tsx:973 msgid "Recent Searches" msgstr "Ricerche recenti" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 -#~ msgid "Recommended Feeds" -#~ msgstr "Feeds consigliati" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 -#~ msgid "Recommended Users" -#~ msgstr "Utenti consigliati" - #: src/screens/Messages/Conversation/MessageListError.tsx:20 msgid "Reconnect" -msgstr "" +msgstr "Riconnetti" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/List/index.tsx:180 msgid "Reload conversations" -msgstr "" +msgstr "Ricarica conversazioni" #: src/components/dialogs/MutedWords.tsx:288 #: src/view/com/feeds/FeedSourceCard.tsx:296 @@ -4522,9 +4081,6 @@ msgstr "" msgid "Remove" msgstr "Rimuovi" -#~ msgid "Remove {0} from my feeds?" -#~ msgstr "Rimuovere {0} dai miei feeds?" - #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" msgstr "Rimuovi l'account" @@ -4571,7 +4127,7 @@ msgstr "Rimuovi l'immagine" msgid "Remove image preview" msgstr "Rimuovi l'anteprima dell'immagine" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Rimuovi la parola silenziata dalla tua lista" @@ -4585,23 +4141,17 @@ msgstr "" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:238 msgid "Remove quote" -msgstr "" +msgstr "Rimuovi citazione" #: src/view/com/util/post-ctrls/RepostButton.tsx:90 #: src/view/com/util/post-ctrls/RepostButton.tsx:106 msgid "Remove repost" msgstr "Rimuovi la ripubblicazione" -#~ msgid "Remove this feed from my feeds?" -#~ msgstr "Rimuovere questo feed dai miei feeds?" - #: 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 feeds salvati?" - #: src/view/com/modals/ListAddRemoveUsers.tsx:199 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" @@ -4623,12 +4173,12 @@ msgstr "Elimina la miniatura predefinita da {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" -msgstr "" +msgstr "Rimuovi post citato" #: src/view/com/posts/FeedShutdownMsg.tsx:126 #: src/view/com/posts/FeedShutdownMsg.tsx:130 msgid "Replace with Discover" -msgstr "" +msgstr "Sostituisci con Discover" #: src/view/screens/Profile.tsx:194 msgid "Replies" @@ -4661,15 +4211,7 @@ msgstr "Rispondi a <0><1/>" #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "Report" -msgstr "" - -#~ msgid "Report {collectionName}" -#~ msgstr "Segnala {collectionName}" - -#: src/components/dms/ConvoMenu.tsx:146 -#: src/components/dms/ConvoMenu.tsx:150 -#~ msgid "Report account" -#~ msgstr "" +msgstr "Segnala" #: src/view/com/profile/ProfileMenu.tsx:321 #: src/view/com/profile/ProfileMenu.tsx:324 @@ -4680,14 +4222,13 @@ msgstr "Segnala l'account" #: src/components/dms/ConvoMenu.tsx:200 #: src/components/dms/ReportConversationPrompt.tsx:18 msgid "Report conversation" -msgstr "" +msgstr "Segnala la conversazione" #: src/components/ReportDialog/index.tsx:49 msgid "Report dialog" msgstr "Segnala il dialogo" -#: src/view/screens/ProfileFeed.tsx:347 -#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:347 src/view/screens/ProfileFeed.tsx:349 msgid "Report feed" msgstr "Segnala il feed" @@ -4697,7 +4238,7 @@ msgstr "Segnala la lista" #: src/components/dms/MessageMenu.tsx:130 msgid "Report message" -msgstr "" +msgstr "Segnala il messaggio" #: src/view/com/util/forms/PostDropdownBtn.tsx:407 #: src/view/com/util/forms/PostDropdownBtn.tsx:409 @@ -4720,7 +4261,7 @@ msgstr "Segnala questa lista" #: src/components/dms/ReportDialog.tsx:140 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" -msgstr "" +msgstr "Segnala questo messaggio" #: src/components/ReportDialog/SelectReportOptionView.tsx:50 msgid "Report this post" @@ -4748,9 +4289,6 @@ msgstr "Ripubblicare" msgid "Repost or quote post" msgstr "Ripubblica o cita il post" -#~ msgid "Reposted by" -#~ msgstr "Repost di" - #: src/view/screens/PostRepostedBy.tsx:27 msgid "Reposted By" msgstr "Ripubblicato da" @@ -4843,7 +4381,7 @@ msgstr "Reimposta lo stato dell'incorporazione" msgid "Resets the preferences state" msgstr "Reimposta lo stato delle preferenze" -#: src/screens/Login/LoginForm.tsx:289 +#: src/screens/Login/LoginForm.tsx:286 msgid "Retries login" msgstr "Ritenta l'accesso" @@ -4879,17 +4417,13 @@ msgstr "Ritorna alla pagina precedente" msgid "Returns to home page" msgstr "Ritorna su Home" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/NotFound.tsx:58 src/view/screens/ProfileFeed.tsx:112 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" -#~ msgid "SANDBOX. Posts and accounts are not permanent." -#~ msgstr "SANDBOX. I post e gli account non sono permanenti." - #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4902,7 +4436,7 @@ msgctxt "action" msgid "Save" msgstr "Salva" -#: src/view/com/modals/AltImage.tsx:132 +#: src/view/com/modals/AltImage.tsx:131 msgid "Save alt text" msgstr "Salva il testo alternativo" @@ -4922,8 +4456,7 @@ msgstr "Salva la modifica del tuo identificatore" msgid "Save image crop" msgstr "Salva il ritaglio dell'immagine" -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:331 src/view/screens/ProfileFeed.tsx:337 msgid "Save to my feeds" msgstr "Salva nei miei feed" @@ -4933,7 +4466,7 @@ msgstr "Canali salvati" #: src/view/com/lightbox/Lightbox.tsx:82 msgid "Saved to your camera roll" -msgstr "" +msgstr "Salvata nella tua galleria" #: src/view/com/lightbox/Lightbox.tsx:81 #~ msgid "Saved to your camera roll." @@ -4958,7 +4491,7 @@ msgstr "Salva le impostazioni di ritaglio dell'immagine" #: src/components/dms/ChatEmptyPill.tsx:33 msgid "Say hello!" -msgstr "" +msgstr "Di ciao!" #: src/screens/Onboarding/index.tsx:33 msgid "Science" @@ -4978,10 +4511,8 @@ msgstr "Scorri verso l'alto" #: src/view/screens/Search/Search.tsx:825 #: src/view/screens/Search/Search.tsx:853 #: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:343 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 +#: src/view/shell/desktop/LeftNav.tsx:343 src/view/shell/desktop/Search.tsx:194 +#: src/view/shell/desktop/Search.tsx:203 src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Cerca" @@ -4992,7 +4523,7 @@ msgstr "Cerca \"{query}\"" #: src/view/screens/Search/Search.tsx:909 msgid "Search for \"{searchText}\"" -msgstr "" +msgstr "Cerca \"{searchText}\"" #: src/components/TagMenu/index.tsx:145 msgid "Search for all posts by @{authorHandle} with tag {displayTag}" @@ -5002,12 +4533,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/components/dms/NewChat.tsx:226 -#~ msgid "Search for someone to start a conversation with." -#~ msgstr "" - -#: src/view/com/auth/LoggedOut.tsx:105 -#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:105 src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cerca utenti" @@ -5020,7 +4546,7 @@ msgstr "Cerca i Gif" #: src/components/dms/dialogs/SearchablePeopleList.tsx:524 #: src/components/dms/dialogs/SearchablePeopleList.tsx:525 msgid "Search profiles" -msgstr "" +msgstr "Cerca profili" #: src/components/dialogs/GifSelect.ios.tsx:160 #: src/components/dialogs/GifSelect.tsx:170 @@ -5056,16 +4582,13 @@ msgstr "Vedi <0>{displayTag} posts di questo utente" msgid "See this guide" msgstr "Consulta questa guida" -#~ msgid "See what's next" -#~ msgstr "Scopri cosa c'รจ dopo" - #: src/view/com/util/Selector.tsx:106 msgid "Select {item}" msgstr "Seleziona {item}" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" -msgstr "" +msgstr "Scegli un colore" #: src/screens/Login/ChooseAccountForm.tsx:85 msgid "Select account" @@ -5073,14 +4596,11 @@ msgstr "Seleziona l'account" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" -msgstr "" +msgstr "Scegli un avatar" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" -msgstr "" - -#~ msgid "Select Bluesky Social" -#~ msgstr "Seleziona Bluesky Social" +msgstr "Scegli un emoji" #: src/screens/Login/index.tsx:120 msgid "Select from an existing account" @@ -5106,18 +4626,15 @@ msgstr "Seleziona moderatore" msgid "Select option {i} of {numItems}" msgstr "Seleziona l'opzione {i} di {numItems}" -#~ msgid "Select service" -#~ msgstr "Selecciona el servei" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 #~ msgid "Select some accounts below to follow" #~ msgstr "Seleziona alcuni account da seguire qui giรน" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" -msgstr "" +msgstr "Scegli la {emojiName} emoji come tuo avatar" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "Seleziona il/i servizio/i di moderazione per fare la segnalazione" @@ -5169,7 +4686,7 @@ msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed." #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" -msgstr "" +msgstr "Consiglia un sito!" #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 @@ -5185,18 +4702,14 @@ msgctxt "action" msgid "Send Email" msgstr "Invia email" -#~ msgid "Send Email" -#~ msgstr "Envia Email" - -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:328 src/view/shell/Drawer.tsx:349 msgid "Send feedback" msgstr "Invia feedback" #: src/screens/Messages/Conversation/MessageInput.tsx:163 #: src/screens/Messages/Conversation/MessageInput.web.tsx:155 msgid "Send message" -msgstr "" +msgstr "Invia messaggio" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "Send post to..." @@ -5204,14 +4717,11 @@ msgstr "" #: src/components/dms/ReportDialog.tsx:232 #: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Invia la segnalazione" -#~ msgid "Send Report" -#~ msgstr "Invia segnalazione" - #: src/components/ReportDialog/SelectLabelerView.tsx:44 msgid "Send report to {0}" msgstr "Invia la segnalazione a {0}" @@ -5234,39 +4744,14 @@ msgstr "Invia un'email con il codice di conferma per la cancellazione dell'accou msgid "Server address" msgstr "Indirizzo del server" -#~ msgid "Set {value} for {labelGroup} content moderation policy" -#~ msgstr "Imposta {value} per la politica di moderazione dei contenuti di {labelGroup}" - -#~ msgctxt "action" -#~ msgid "Set Age" -#~ msgstr "Imposta l'etร " - #: src/screens/Moderation/index.tsx:304 msgid "Set birthdate" msgstr "Imposta la data di nascita" -#~ msgid "Set color theme to dark" -#~ msgstr "Imposta il colore del tema scuro" - -#~ msgid "Set color theme to light" -#~ msgstr "Imposta il colore del tema su chiaro" - -#~ msgid "Set color theme to system setting" -#~ msgstr "Imposta il colore del tema basato sulle impostazioni del tuo sistema" - -#~ msgid "Set dark theme to the dark theme" -#~ msgstr "Imposta il tema scuro sul tema scuro" - -#~ msgid "Set dark theme to the dim theme" -#~ msgstr "Imposta il tema scuro sul tema scuro" - #: src/screens/Login/SetNewPasswordForm.tsx:102 msgid "Set new password" msgstr "Imposta una nuova password" -#~ msgid "Set password" -#~ msgstr "Imposta la password" - #: src/view/screens/PreferencesFollowingFeed.tsx:224 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." @@ -5283,9 +4768,6 @@ msgstr "Seleziona \"No\" per nascondere tutte le ripubblicazioni dal tuo feed." 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 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." @@ -5322,9 +4804,6 @@ msgstr "Imposta il tema scuro sul tema semi fosco" msgid "Sets email for password reset" msgstr "Imposta l'email per la reimpostazione della password" -#~ msgid "Sets hosting provider for password reset" -#~ msgstr "Imposta il provider del hosting per la reimpostazione della password" - #: src/view/com/modals/crop-image/CropImage.web.tsx:146 msgid "Sets image aspect ratio to square" msgstr "Imposta le proporzioni quadrate sull'immagine" @@ -5372,11 +4851,11 @@ msgstr "Condividi" #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" -msgstr "" +msgstr "Condividi una storia interessante!" #: src/components/dms/ChatEmptyPill.tsx:36 msgid "Share a fun fact!" -msgstr "" +msgstr "Condividi un fatto divertente!" #: src/view/com/profile/ProfileMenu.tsx:375 #: src/view/com/util/forms/PostDropdownBtn.tsx:464 @@ -5384,8 +4863,7 @@ msgstr "" msgid "Share anyway" msgstr "Condividi comunque" -#: src/view/screens/ProfileFeed.tsx:357 -#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:357 src/view/screens/ProfileFeed.tsx:359 msgid "Share feed" msgstr "Condividi il feed" @@ -5396,7 +4874,7 @@ msgstr "Condividi il link" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" -msgstr "" +msgstr "Condividi il tuo feed preferito!" #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" @@ -5409,13 +4887,9 @@ msgstr "Condivide il sito Web nel link" msgid "Show" msgstr "Mostra" -#: src/view/screens/PreferencesFollowingFeed.tsx:68 -#~ msgid "Show all replies" -#~ msgstr "Mostra tutte le repliche" - #: src/view/com/util/post-embeds/GifEmbed.tsx:167 msgid "Show alt text" -msgstr "" +msgstr "Mostra testo alternativo" #: src/components/moderation/ScreenHider.tsx:169 #: src/components/moderation/ScreenHider.tsx:172 @@ -5431,10 +4905,7 @@ msgstr "Mostra badge" msgid "Show badge and filter from feeds" msgstr "Mostra badge e filtra dai feed" -#~ msgid "Show embeds from {0}" -#~ msgstr "Mostra incorporamenti di {0}" - -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:212 msgid "Show follows similar to {0}" msgstr "Mostra follows simile a {0}" @@ -5445,7 +4916,7 @@ msgstr "" #: src/view/com/util/forms/PostDropdownBtn.tsx:349 #: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" -msgstr "" +msgstr "Mostra meno come questo" #: src/view/com/post-thread/PostThreadItem.tsx:538 #: src/view/com/post/Post.tsx:227 @@ -5498,10 +4969,6 @@ msgstr "Mostra le risposte delle persone che segui prima delle altre risposte." #~ msgid "Show replies in Following feed" #~ msgstr "Mostra le risposte nel feed Seguiti" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#~ msgid "Show replies with at least {value} {0}" -#~ msgstr "Mostra risposte con almeno {value} {0}" - #: src/view/screens/PreferencesFollowingFeed.tsx:187 msgid "Show Reposts" msgstr "Mostra ripubblicazioni" @@ -5527,19 +4994,13 @@ msgstr "Mostra avviso" msgid "Show warning and filter from feeds" msgstr "Mostra avviso e filtra dai feed" -#~ msgid "Shows a list of users similar to this user." -#~ msgstr "Mostra un elenco di utenti simili a questo utente." - #: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Shows posts from {0} in your feed" msgstr "Mostra i post di {0} nel tuo feed" -#: src/components/dialogs/Signin.tsx:97 -#: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:154 -#: src/view/com/auth/SplashScreen.tsx:63 +#: src/components/dialogs/Signin.tsx:97 src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:100 src/screens/Login/index.tsx:119 +#: src/screens/Login/LoginForm.tsx:151 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 @@ -5549,15 +5010,11 @@ msgstr "Mostra i post di {0} nel tuo feed" #: src/view/shell/bottom-bar/BottomBarWeb.tsx:181 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 +#: src/view/shell/NavSignupCard.tsx:69 src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 msgid "Sign in" msgstr "Accedi" -#~ msgid "Sign In" -#~ msgstr "Accedi" - #: src/components/AccountList.tsx:114 msgid "Sign in as {0}" msgstr "Accedi come... {0}" @@ -5570,9 +5027,6 @@ msgstr "Accedi come..." msgid "Sign in or create your account to join the conversation!" msgstr "Accedi o crea il tuo account per partecipare alla conversazione!" -#~ msgid "Sign into" -#~ msgstr "Accedere a" - #: src/components/dialogs/Signin.tsx:46 msgid "Sign into Bluesky or create a new account" msgstr "Accedi a Bluesky o crea un nuovo account" @@ -5588,8 +5042,7 @@ msgstr "Disconnetta" #: src/view/shell/bottom-bar/BottomBarWeb.tsx:171 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 +#: src/view/shell/NavSignupCard.tsx:60 src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 msgid "Sign up" msgstr "Iscrizione" @@ -5632,14 +5085,11 @@ msgstr "Sviluppo Software" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Some people can reply" -msgstr "" +msgstr "Solo alcune persone possono rispondere" #: src/screens/Messages/Conversation/index.tsx:94 msgid "Something went wrong" -msgstr "" - -#~ msgid "Something went wrong and we're not sure what." -#~ msgstr "Qualcosa รจ andato storto ma non siamo sicuri di cosa." +msgstr "Qualcosa รจ andato storto" #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 @@ -5652,11 +5102,7 @@ msgstr "" msgid "Something went wrong, please try again." 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:85 -#: src/App.web.tsx:74 +#: src/App.native.tsx:85 src/App.web.tsx:73 msgid "Sorry! Your session expired. Please log in again." msgstr "Scusa! La tua sessione รจ scaduta. Per favore accedi di nuovo." @@ -5668,13 +5114,9 @@ msgstr "Ordina le risposte" msgid "Sort replies to the same post by:" msgstr "Ordina le risposte allo stesso post per:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Origine:" - -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" -msgstr "" +msgstr "Fonte: <0>{0}" #: src/lib/moderation/useReportOptions.ts:66 #: src/lib/moderation/useReportOptions.ts:79 @@ -5698,15 +5140,15 @@ msgstr "Quadrato" #: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" -msgstr "" +msgstr "Avvia una nuova conversazione" #: src/components/dms/dialogs/SearchablePeopleList.tsx:371 msgid "Start chat with {displayName}" -msgstr "" +msgstr "Avvia conversazione con {displayName}" #: src/components/dms/MessagesNUX.tsx:161 msgid "Start chatting" -msgstr "" +msgstr "Iniza a conversare" #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" @@ -5714,18 +5156,11 @@ msgstr "" #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" -msgstr "" - -#: src/screens/Signup/index.tsx:145 -#~ msgid "Step" -#~ msgstr "Passo" +msgstr "Pagina di stato" #: src/screens/Signup/index.tsx:154 msgid "Step {0} of {1}" -msgstr "" - -#~ msgid "Step {0} of {numSteps}" -#~ msgstr "Passo {0} di {numSteps}" +msgstr "Step {0} di {1}" #: src/view/screens/Settings/index.tsx:304 msgid "Storage cleared, you need to restart the app now." @@ -5736,8 +5171,8 @@ msgstr "Spazio di archiviazione eliminato. Riavvia l'app." msgid "Storybook" msgstr "Cronologia" +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5780,15 +5215,11 @@ msgstr "Suggerito per te" msgid "Suggestive" msgstr "Suggestivo" -#: src/Navigation.tsx:233 -#: src/view/screens/Support.tsx:30 +#: src/Navigation.tsx:233 src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Supporto" -#~ msgid "Swipe up to see more" -#~ msgstr "Scorri verso l'alto per vedere di piรน" - #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 msgid "Switch Account" @@ -5810,7 +5241,7 @@ msgstr "Sistema" msgid "System log" msgstr "Registro di sistema" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "tag" @@ -5832,7 +5263,7 @@ msgstr "Tecnologia" #: src/components/dms/ChatEmptyPill.tsx:35 msgid "Tell a joke!" -msgstr "" +msgstr "Racconta una barzalletta!" #: src/view/shell/desktop/RightNav.tsx:86 msgid "Terms" @@ -5852,17 +5283,17 @@ msgstr "Termini di servizio" msgid "Terms used violate community standards" msgstr "I termini utilizzati violano gli standard della comunitร " -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "testo" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:255 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo di testo" #: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Grazie. La tua segnalazione รจ stata inviata." @@ -5879,10 +5310,6 @@ msgstr "Questo handle รจ giร  stato preso." msgid "The account will be able to interact with you after unblocking." msgstr "L'account sarร  in grado di interagire con te dopo lo sblocco." -#: src/components/moderation/ModerationDetailsDialog.tsx:127 -#~ msgid "the author" -#~ msgstr "l'autore" - #: src/view/screens/CommunityGuidelines.tsx:36 msgid "The Community Guidelines have been moved to <0/>" msgstr "Le Linee guida della community sono state spostate a<0/>" @@ -5893,13 +5320,13 @@ msgstr "La politica sul copyright รจ stata spostata a <0/>" #: src/view/com/posts/FeedShutdownMsg.tsx:66 msgid "The feed has been replaced with Discover." -msgstr "" +msgstr "Questo feed รจ stato sostituito con Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "Al tuo account sono state applicate le seguenti etichette." -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "Ai tuoi contenuti sono state applicate le seguenti etichette." @@ -5907,8 +5334,8 @@ msgstr "Ai tuoi contenuti sono state applicate le seguenti etichette." msgid "The following steps will help customize your Bluesky experience." msgstr "I passaggi seguenti ti aiuteranno a personalizzare la tua esperienza con Bluesky." -#: src/view/com/post-thread/PostThread.tsx:189 -#: src/view/com/post-thread/PostThread.tsx:201 +#: src/view/com/post-thread/PostThread.tsx:153 +#: src/view/com/post-thread/PostThread.tsx:165 msgid "The post may have been deleted." msgstr "Il post potrebbe essere stato cancellato." @@ -5920,9 +5347,6 @@ msgstr "La politica sulla privacy รจ stata spostata a <0/><0/>" msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Il modulo di supporto รจ stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." -#~ msgid "The support form has been moved. If you need help, please<0/> or visit {HELP_DESK_URL} to get in touch with us." -#~ msgstr "Il modulo di supporto รจ stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." - #: src/view/screens/TermsOfService.tsx:33 msgid "The Terms of Service have been moved to" msgstr "I Termini di Servizio sono stati spostati a" @@ -5991,7 +5415,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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/ReportDialog/SubmitView.tsx:82 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." @@ -5999,13 +5423,13 @@ msgstr "Si รจ verificato un problema durante l'invio della segnalazione. Per fav #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Si รจ verificato un problema durante la sincronizzazione delle tue preferenze con il server" -#: src/view/screens/AppPasswords.tsx:70 +#: src/view/screens/AppPasswords.tsx:68 msgid "There was an issue with fetching your app passwords" msgstr "Si รจ verificato un problema durante il recupero delle password dell'app" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:104 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:140 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -6034,16 +5458,10 @@ msgstr "Si รจ verificato un problema imprevisto nell'applicazione. Per favore fa msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "C'รจ stata un'ondata di nuovi utenti su Bluesky! Attiveremo il tuo account il prima possibile." -#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -#~ msgstr "C'รจ qualcosa di sbagliato in questo numero. Scegli il tuo Paese e inserisci il tuo numero di telefono completo!" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #~ msgid "These are popular accounts you might like:" #~ msgstr "Questi sono gli account popolari che potrebbero piacerti:" -#~ msgid "This {0} has been labeled." -#~ msgstr "Questo {0} รจ stato etichettato." - #: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Questa {screenDescription} รจ stata segnalata:" @@ -6054,23 +5472,19 @@ msgstr "Questo account ha richiesto agli utenti di accedere Bluesky per visualiz #: 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 "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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:240 msgid "This appeal will be sent to <0>{0}." msgstr "Questo ricorso verrร  inviato a <0>{0}." #: src/screens/Messages/Conversation/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." -msgstr "" +msgstr "Questo appello verrร  inviato al servizio di moderazione Bluesky." #: src/screens/Messages/Conversation/MessageListError.tsx:18 msgid "This chat was disconnected" -msgstr "" - -#: src/screens/Messages/Conversation/MessageListError.tsx:26 -#~ msgid "This chat was disconnected due to a network error." -#~ msgstr "" +msgstr "Questa chat รจ stata disconnessa" #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." @@ -6116,7 +5530,7 @@ msgstr "Questo feed รจ vuoto! Prova a seguire piรน utenti o ottimizza le imposta #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." -msgstr "" +msgstr "Questo feed non รจ piรน online. Stiamo mostrando <0>Discover al suo posto." #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "This information is not shared with other users." @@ -6126,28 +5540,17 @@ msgstr "Queste informazioni non vengono condivise con altri utenti." msgid "This is important in case you ever need to change your email or reset your password." msgstr "Questo รจ importante nel caso in cui avessi bisogno di modificare la tua email o reimpostare la password." -#~ msgid "This is the service that keeps you online." -#~ msgstr "Questo รจ il servizio che ti mantiene online." - -#: src/components/moderation/ModerationDetailsDialog.tsx:124 -#~ msgid "This label was applied by {0}." -#~ msgstr "Questa etichetta รจ stata applicata da {0}." - #: src/components/moderation/ModerationDetailsDialog.tsx:127 msgid "This label was applied by <0>{0}." -msgstr "" +msgstr "Questa etichetta รจ stata applicata da <0>{0}." #: src/components/moderation/ModerationDetailsDialog.tsx:125 msgid "This label was applied by the author." -msgstr "" +msgstr "Questa etichetta รจ stata applicata dall'autore." -#: src/components/moderation/LabelsOnMeDialog.tsx:165 -#~ msgid "This label was applied by you" -#~ msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." -msgstr "" +msgstr "Questa etichetta รจ stata applicata da te." #: src/screens/Profile/Sections/Labels.tsx:188 msgid "This labeler hasn't declared what labels it publishes, and may not be active." @@ -6165,7 +5568,7 @@ msgstr "La lista รจ vuota!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Questo servizio di moderazione non รจ disponibile. Vedi giรน per ulteriori dettagli. Se il problema persiste, contattaci." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:107 msgid "This name is already in use" msgstr "Questo nome รจ giร  in uso" @@ -6200,7 +5603,7 @@ msgstr "Questo utente non ha follower." #: src/components/dms/MessagesListBlockedFooter.tsx:60 msgid "This user has blocked you" -msgstr "" +msgstr "Questo utente ti ha bloccato" #: src/components/moderation/ModerationDetailsDialog.tsx:72 #: src/lib/moderation/useModerationCauseDescription.ts:70 @@ -6211,12 +5614,6 @@ msgstr "Questo utente ti ha bloccato. Non รจ possibile visualizzare il suo conte msgid "This user has requested that their content only be shown to signed-in users." msgstr "Questo utente ha richiesto che i suoi contenuti vengano mostrati solo agli utenti che hanno effettuato l'accesso." -#~ msgid "This user is included in the <0/> list which you have blocked." -#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai bloccato." - -#~ msgid "This user is included in the <0/> list which you have muted." -#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai disattivato." - #: src/components/moderation/ModerationDetailsDialog.tsx:55 msgid "This user is included in the <0>{0} list which you have blocked." msgstr "Questo utente รจ incluso nell'elenco <0>{0} che hai bloccato." @@ -6225,18 +5622,11 @@ msgstr "Questo utente รจ incluso nell'elenco <0>{0} che hai bloccato." msgid "This user is included in the <0>{0} list which you have muted." 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/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." msgstr "Questo utente non sta seguendo nessuno." -#: src/view/com/modals/SelfLabel.tsx:137 -#~ msgid "This warning is only available for posts with media attached." -#~ msgstr "Questo avviso รจ disponibile solo per i post con contenuti multimediali allegati." - -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Questo eliminerร  {0} dalle parole disattivate. Puoi sempre aggiungerla nuovamente in seguito." @@ -6266,13 +5656,13 @@ msgstr "Per disabilitare il metodo 2FA via e-mail, verifica il tuo accesso all'i #: src/components/dms/ReportConversationPrompt.tsx:20 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" +msgstr "Per segnalare una conversazione, segnala uno dei messaggi nella schermata della conversazione. Questo permetterร  ai nostri moderatori di capire il contesto del problema." #: src/components/ReportDialog/SelectLabelerView.tsx:33 msgid "To whom would you like to send this report?" msgstr "A chi desideri inviare questo report?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Alterna tra le opzioni delle parole silenziate." @@ -6316,7 +5706,7 @@ msgstr "Autenticazione a due fattori" #: src/screens/Messages/Conversation/MessageInput.tsx:139 msgid "Type your message here" -msgstr "" +msgstr "Scrivi il tuo messaggio qui" #: src/view/com/modals/ChangeHandle.tsx:422 msgid "Type:" @@ -6350,7 +5740,7 @@ msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessi msgid "Unblock" msgstr "Sblocca" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:194 msgctxt "action" msgid "Unblock" msgstr "Sblocca" @@ -6358,7 +5748,7 @@ msgstr "Sblocca" #: src/components/dms/ConvoMenu.tsx:188 #: src/components/dms/ConvoMenu.tsx:192 msgid "Unblock account" -msgstr "" +msgstr "Sblocca l'account" #: src/view/com/profile/ProfileMenu.tsx:301 #: src/view/com/profile/ProfileMenu.tsx:307 @@ -6385,7 +5775,7 @@ msgstr "Smetti di seguire" msgid "Unfollow" msgstr "Smetti di seguire" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 msgid "Unfollow {0}" msgstr "Smetti di seguire {0}" @@ -6394,13 +5784,6 @@ msgstr "Smetti di seguire {0}" msgid "Unfollow Account" msgstr "Smetti di seguire questo account" -#~ msgid "Unfortunately, you do not meet the requirements to create an account." -#~ msgstr "Sfortunatamente, non soddisfi i requisiti per creare un account." - -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Unlike" -#~ msgstr "Togli Mi piace" - #: src/view/screens/ProfileFeed.tsx:570 msgid "Unlike this feed" msgstr "Togli il like a questo feed" @@ -6425,11 +5808,7 @@ msgstr "Riattiva tutti i post di {displayTag}" #: src/components/dms/ConvoMenu.tsx:176 msgid "Unmute conversation" -msgstr "" - -#: src/components/dms/ConvoMenu.tsx:140 -#~ msgid "Unmute notifications" -#~ msgstr "" +msgstr "Riattiva conversazione" #: src/view/com/util/forms/PostDropdownBtn.tsx:365 #: src/view/com/util/forms/PostDropdownBtn.tsx:370 @@ -6451,10 +5830,7 @@ msgstr "Stacca la lista di moderazione" #: src/view/screens/ProfileList.tsx:290 msgid "Unpinned from your feeds" -msgstr "" - -#~ msgid "Unsave" -#~ msgstr "Rimuovi" +msgstr "Sblocca dai tuoi feed" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Unsubscribe" @@ -6464,10 +5840,6 @@ msgstr "Annulla l'iscrizione" msgid "Unsubscribe from this labeler" msgstr "Annulla l'iscrizione a questo/a labeler" -#: src/lib/moderation/useReportOptions.ts:85 -#~ msgid "Unwanted sexual content" -#~ msgstr "" - #: src/lib/moderation/useReportOptions.ts:71 #: src/lib/moderation/useReportOptions.ts:84 msgid "Unwanted Sexual Content" @@ -6477,9 +5849,6 @@ msgstr "Contenuti Sessuali Indesiderati" msgid "Update {displayName} in Lists" msgstr "Aggiorna {displayName} negli elenchi" -#~ msgid "Update Available" -#~ msgstr "Aggiornamento disponibile" - #: src/view/com/modals/ChangeHandle.tsx:502 msgid "Update to {handle}" msgstr "Aggiorna a {handle}" @@ -6490,7 +5859,7 @@ msgstr "In aggiornamento..." #: src/screens/Onboarding/StepProfile/index.tsx:280 msgid "Upload a photo instead" -msgstr "" +msgstr "Alternativamente carica una foto" #: src/view/com/modals/ChangeHandle.tsx:448 msgid "Upload a text file to:" @@ -6519,7 +5888,7 @@ msgstr "Carica dalla Libreria" msgid "Use a file on your server" msgstr "Utilizza un file sul tuo server" -#: src/view/screens/AppPasswords.tsx:200 +#: src/view/screens/AppPasswords.tsx:197 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Utilizza le password dell'app per accedere ad altri client Bluesky senza fornire l'accesso completo al tuo account o alla tua password." @@ -6543,19 +5912,16 @@ msgstr "Utilizza il mio browser predefinito" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 msgid "Use recommended" -msgstr "" +msgstr "Usa consigliati" #: src/view/com/modals/ChangeHandle.tsx:394 msgid "Use the DNS panel" msgstr "Utilizza il pannello DNS" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:156 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." -#~ msgid "Use your domain as your Bluesky client service provider" -#~ msgstr "Utilizza il tuo dominio come provider di servizi clienti Bluesky" - #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usato da:" @@ -6571,7 +5937,7 @@ msgstr "Utente bloccato da \"{0}\"" #: src/components/dms/BlockedByListDialog.tsx:27 msgid "User blocked by list" -msgstr "" +msgstr "Utente bloccato dalla lista" #: src/components/moderation/ModerationDetailsDialog.tsx:53 msgid "User Blocked by List" @@ -6615,7 +5981,7 @@ msgstr "Lista aggiornata" msgid "User Lists" msgstr "Liste publiche" -#: src/screens/Login/LoginForm.tsx:174 +#: src/screens/Login/LoginForm.tsx:171 msgid "Username or email address" msgstr "Nome utente o indirizzo Email" @@ -6628,11 +5994,10 @@ msgid "users followed by <0/>" msgstr "utenti seguiti da <0/>" #: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/components/dms/MessagesNUX.tsx:143 src/screens/Messages/Settings.tsx:83 +#: src/screens/Messages/Settings.tsx:86 msgid "Users I follow" -msgstr "" +msgstr "Utenti che seguo" #: src/view/com/modals/Threadgate.tsx:107 msgid "Users in \"{0}\"" @@ -6646,16 +6011,9 @@ msgstr "Utenti a cui รจ piaciuto questo contenuto o profilo" msgid "Value:" msgstr "Valore:" -#~ msgid "Verification code" -#~ msgstr "Codice di verifica" - -#: src/view/com/modals/ChangeHandle.tsx:510 -#~ msgid "Verify {0}" -#~ msgstr "Verifica {0}" - #: src/view/com/modals/ChangeHandle.tsx:504 msgid "Verify DNS Record" -msgstr "" +msgstr "Verifica record DNS" #: src/view/screens/Settings/index.tsx:982 msgid "Verify email" @@ -6688,7 +6046,7 @@ msgstr "Verifica la tua email" #: src/view/screens/Settings/index.tsx:935 msgid "Version {appVersion} {bundleInfo}" -msgstr "" +msgstr "Versione {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 msgid "Video Games" @@ -6760,16 +6118,13 @@ msgstr "Avvisa il contenuto" msgid "Warn content and filter from feeds" msgstr "Avvisa i contenuti e filtra dai feed" -#~ msgid "We also think you'll like \"For You\" by Skygaze:" -#~ msgstr "Pensiamo che ti piacerร  anche \"Per Te\" di Skygaze:" - #: src/screens/Hashtag.tsx:210 msgid "We couldn't find any results for that hashtag." msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag." #: src/screens/Messages/Conversation/index.tsx:95 msgid "We couldn't load this conversation" -msgstr "" +msgstr "Non riusciamo a caricare questa conversazione" #: src/screens/SignupQueued.tsx:139 msgid "We estimate {estimatedTime} until your account is ready." @@ -6783,7 +6138,7 @@ msgstr "Speriamo di darti dei momenti dei bei momenti. Ricorda, Bluesky รจ:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Abbiamo esaurito i posts dei tuoi follower. Ecco le ultime novitร  da <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Ti consigliamo di evitare usare parole comuni che compaiono in molti post, perchรจ ciรฒ potrebbe comportare la mancata visualizzazione dei post." @@ -6816,7 +6171,7 @@ msgstr "Lo useremo per personalizzare la tua esperienza." #: src/components/dms/dialogs/SearchablePeopleList.tsx:90 msgid "We're having network issues, try again" -msgstr "" +msgstr "Stiamo riscontrando problemi di rete, riprova" #: src/screens/Signup/index.tsx:142 msgid "We're so excited to have you join us!" @@ -6826,7 +6181,7 @@ msgstr "Siamo felici che tu ti unisca a noi!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il problema persiste, contatta il creatore della lista, @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Siamo spiacenti, ma al momento non siamo riusciti a caricare le parole silenziate. Per favore riprova si nuovo." @@ -6834,8 +6189,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/components/Lists.tsx:212 -#: src/view/screens/NotFound.tsx:48 +#: src/components/Lists.tsx:212 src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." @@ -6855,12 +6209,6 @@ msgstr "" msgid "What are your interests?" msgstr "Quali sono i tuoi interessi?" -#~ msgid "What is the issue with this {collectionName}?" -#~ msgstr "Qual รจ il problema con questo {collectionName}?" - -#~ msgid "What's next?" -#~ msgstr "Qual รจ il prossimo?" - #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 #: src/view/com/composer/Composer.tsx:340 @@ -6878,16 +6226,16 @@ msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feeds?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 msgid "Who can message you?" -msgstr "" +msgstr "Chi puoi inviarti messaggi?" #: src/view/com/modals/Threadgate.tsx:67 msgid "Who can reply" msgstr "Chi puรฒ rispondere" #: src/screens/Home/NoFeedsPinned.tsx:92 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/List/index.tsx:165 msgid "Whoops!" -msgstr "" +msgstr "Ops!" #: src/components/ReportDialog/SelectReportOptionView.tsx:44 msgid "Why should this content be reviewed?" @@ -6903,7 +6251,7 @@ msgstr "Perchรฉ questa lista dovrebbe essere revisionata?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this message be reviewed?" -msgstr "" +msgstr "Perchรฉ questo messaggio dovrebbe essere revisionato?" #: src/components/ReportDialog/SelectReportOptionView.tsx:51 msgid "Why should this post be reviewed?" @@ -6920,7 +6268,7 @@ msgstr "Largo" #: src/screens/Messages/Conversation/MessageInput.tsx:140 #: src/screens/Messages/Conversation/MessageInput.web.tsx:134 msgid "Write a message" -msgstr "" +msgstr "Scrivi un messaggio" #: src/view/com/composer/Composer.tsx:534 msgid "Write post" @@ -6935,9 +6283,6 @@ msgstr "Scrivi la tua risposta" msgid "Writers" msgstr "Scrittori" -#~ msgid "XXXXXX" -#~ msgstr "XXXXXX" - #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 #: src/view/screens/PreferencesFollowingFeed.tsx:128 #: src/view/screens/PreferencesFollowingFeed.tsx:200 @@ -6959,7 +6304,7 @@ msgstr "" #: src/components/dms/MessageItem.tsx:188 msgid "Yesterday, {time}" -msgstr "" +msgstr "Ieri, {time}" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -6987,14 +6332,9 @@ msgstr "" #: src/components/dms/MessagesNUX.tsx:119 msgid "You can change this at any time." -msgstr "" +msgstr "Puoi modificarlo in qualsiasi momento." -#: src/screens/Messages/Settings.tsx:111 -msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "" - -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:158 src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "You can now sign in with your new password." msgstr "Adesso puoi accedere con la tua nuova password." @@ -7022,13 +6362,13 @@ msgstr "Non hai fissato nessun feed." msgid "You don't have any saved feeds." msgstr "Non hai salvato nessun feed." -#: src/view/com/post-thread/PostThread.tsx:195 +#: src/view/com/post-thread/PostThread.tsx:159 msgid "You have blocked the author or you have been blocked by the author." msgstr "Hai bloccato l'autore o sei stato bloccato dall'autore." #: src/components/dms/MessagesListBlockedFooter.tsx:58 msgid "You have blocked this user" -msgstr "" +msgstr "Hai bloccato questo utente" #: src/components/moderation/ModerationDetailsDialog.tsx:66 #: src/lib/moderation/useModerationCauseDescription.ts:52 @@ -7060,12 +6400,9 @@ msgstr "Hai silenziato questo account." msgid "You have muted this user" msgstr "Hai silenziato questo utente" -#~ msgid "You have muted this user." -#~ msgstr "Hai disattivato questo utente." - -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/List/index.tsx:205 msgid "You have no conversations yet. Start one!" -msgstr "" +msgstr "Non hai ancora nessuna conversazione. Avviane una!" #: src/view/com/feeds/ProfileFeedgens.tsx:141 msgid "You have no feeds." @@ -7076,18 +6413,11 @@ msgstr "Non hai feeds." msgid "You have no lists." msgstr "Non hai liste." -#: src/screens/Messages/List/index.tsx:200 -#~ msgid "You have no messages yet. Start a conversation with someone!" -#~ msgstr "" - #: src/view/screens/ModerationBlockedAccounts.tsx:134 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Non hai ancora bloccato nessun account. Per bloccare un account, vai sul profilo e seleziona \"Blocca account\" dal menu dell'account." -#~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." -#~ msgstr "Non hai ancora bloccato nessun conto. Per bloccare un conto, vai al profilo e seleziona \"Blocca conto\" dal menu del suo conto." - -#: src/view/screens/AppPasswords.tsx:91 +#: src/view/screens/AppPasswords.tsx:89 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Non hai ancora creato alcuna password per l'app. Puoi crearne uno premendo il pulsante qui sotto." @@ -7095,22 +6425,19 @@ msgstr "Non hai ancora creato alcuna password per l'app. Puoi crearne uno premen msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai al suo profilo e seleziona \"Silenzia account\" dal menu dell' account." -#~ msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." -#~ msgstr "Non hai ancora disattivato alcun account. Per disattivare un account, vai al suo profilo e seleziona \"Disattiva account\" dal menu del account." - #: src/components/Lists.tsx:52 msgid "You have reached the end" -msgstr "" +msgstr "Hai raggiunto la fine" -#: src/components/dialogs/MutedWords.tsx:250 +#: 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" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." -msgstr "" +msgstr "Ti puoi appellare alle etichette se pensi che sia stata applicata per errore." -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 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." @@ -7118,14 +6445,11 @@ msgstr "Puoi presentare ricorso contro queste etichette se ritieni che siano sta msgid "You must be 13 years of age or older to sign up." msgstr "Per iscriverti devi avere almeno 13 anni." -#~ msgid "You must be 18 or older to enable adult content." -#~ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti." - #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 #~ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "รˆ necessario selezionare almeno un'etichettatore per un report" @@ -7147,7 +6471,7 @@ msgstr "Riceverai un'email con un \"codice di reset\". Inserisci il codice qui, #: src/screens/Messages/List/ChatListItem.tsx:113 msgid "You: {0}" -msgstr "" +msgstr "Tu: {0}" #: src/screens/Messages/List/ChatListItem.tsx:142 msgid "You: {defaultEmbeddedContentMessage}" @@ -7203,7 +6527,7 @@ msgstr "La tua data di nascita" #: src/screens/Messages/Conversation/ChatDisabled.tsx:25 msgid "Your chats have been disabled" -msgstr "" +msgstr "Le tue conversazioni sonos state disabiltate" #: src/view/com/modals/InAppBrowserConsent.tsx:47 msgid "Your choice will be saved, but can be changed later in settings." @@ -7219,9 +6543,6 @@ msgstr "La tua scelta verrร  salvata, ma potrร  essere modificata successivament msgid "Your email appears to be invalid." msgstr "Your email appears to be invalid." -#~ msgid "Your email has been saved! We'll be in touch soon." -#~ msgstr "La tua email รจ stata salvata! Ci metteremo in contatto al piรน presto." - #: src/view/com/modals/ChangeEmail.tsx:120 msgid "Your email has been updated but not verified. As a next step, please verify your new email." msgstr "La tua email รจ stata aggiornata ma non verificata. Come passo successivo, verifica la tua nuova email." @@ -7242,13 +6563,7 @@ msgstr "Il tuo nome di utente completo sarร " msgid "Your full handle will be <0>@{0}" msgstr "Il tuo nome di utente completo sarร  <0>@{0}" -#~ msgid "Your hosting provider" -#~ msgstr "Il tuo fornitore di hosting" - -#~ msgid "Your invite codes are hidden when logged in using an App Password" -#~ msgstr "I tuoi codici di invito vengono celati quando accedi utilizzando una password per l'app" - -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Le tue parole silenziate" @@ -7278,8 +6593,712 @@ msgstr "La tua risposta รจ stata pubblicata" #: src/components/dms/ReportDialog.tsx:160 msgid "Your report will be sent to the Bluesky Moderation Service" -msgstr "" +msgstr "La tua segnalazione verrร  inviata al Servizio Moderazione di Bluesky" #: src/screens/Signup/index.tsx:166 msgid "Your user handle" msgstr "Il tuo handle utente" + +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# codice d'invito disponibile} other {# codici d'inviti disponibili}}" + +#~ msgid "{0}" +#~ msgstr "{0}" + +#~ msgid "{0} {purposeLabel} List" +#~ msgstr "Lista {purposeLabel} {0}" + +#~ msgid "{0} your feeds" +#~ msgstr "{0} tuoi feed" + +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Codici d'invito: # available} other {Codici d'invito: # available}}" + +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} codice d'invito disponibile" + +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} codici d'invito disponibili" + +#~ msgid "{message}" +#~ msgstr "{message}" + +#~ msgid "<0>{0} following" +#~ msgstr "<0>{0} following" + +#~ msgid "<0>{followers} <1>{pluralizedFollowers}" +#~ msgstr "<0>{followers} <1>{pluralizedFollowers}" + +#~ msgid "<0>{following} <1>following" +#~ msgstr "<0>{following} <1>following" + +#~ msgid "<0>Choose your<1>Recommended<2>Feeds" +#~ msgstr "<0>Scegli i tuoi<1>feeds<2>consigliati" + +#~ msgid "<0>Follow some<1>Recommended<2>Users" +#~ msgstr "<0>Segui alcuni<1>utenti<2>consigliati" + +#~ msgid "<0>Welcome to<1>Bluesky" +#~ msgstr "<0>Ti diamo il benvenuto su<1>Bluesky" + +#~ msgid "A content warning has been applied to this {0}." +#~ msgstr "A questo post รจ stato applicato un avviso di contenuto {0}." + +#~ 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." + +#~ msgid "account" +#~ msgstr "account" + +#~ msgid "Add ALT text" +#~ msgstr "Agguingo del testo descrittivo" + +#~ msgid "Add details" +#~ msgstr "Aggiungi i dettagli" + +#~ msgid "Add details to report" +#~ msgstr "Aggiungi dettagli da segnalare" + +#~ msgid "Add link card" +#~ msgstr "Aggiungi anteprima del link" + +#~ msgid "Add link card:" +#~ msgstr "Aggiungi anteprima del link:" + +#~ msgid "Added" +#~ msgstr "Aggiunto" + +#~ 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/>." + +#~ 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" + +#~ msgid "App passwords" +#~ msgstr "Passwords dell'app" + +#~ msgid "Appeal content warning" +#~ msgstr "Ricorso contro l'avviso sui contenuti" + +#~ msgid "Appeal Content Warning" +#~ msgstr "Ricorso contro l'Avviso sui Contenuti" + +#~ msgid "Appeal Decision" +#~ msgstr "Decisiรณn de apelaciรณn" + +#~ msgid "Appeal submitted." +#~ msgstr "Ricorso presentato." + +#~ msgid "Appeal this decision." +#~ msgstr "Appella contro questa decisione." + +#~ msgid "Are you sure? This cannot be undone." +#~ msgstr "Vuoi proseguire? Questa operazione non puรฒ essere annullata." + +#~ msgctxt "action" +#~ msgid "Back" +#~ msgstr "Indietro" + +#~ msgid "Block this List" +#~ msgstr "Blocca questa Lista" + +#~ msgid "Bluesky is flexible." +#~ msgstr "Bluesky รจ flessibile." + +#~ msgid "Bluesky is open." +#~ msgstr "Bluesky รจ aperto." + +#~ msgid "Bluesky is public." +#~ msgstr "Bluesky รจ pubblico." + +#~ 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." + +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" + +#~ msgid "Build version {0} {1}" +#~ msgstr "Versione {0} {1}" + +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "Pulsante disabilitato. Inserisci il dominio personalizzato per procedere." + +#~ msgid "by {0}" +#~ msgstr "di {0}" + +#~ msgid "Cancel add image alt text" +#~ msgstr "Cancelยทla afegir text a la imatge" + +#~ msgid "Cancel waitlist signup" +#~ msgstr "Annulla l'iscrizione alla lista d'attesa" + +#~ msgid "Change your Bluesky password" +#~ msgstr "Cambia la tua password di Bluesky" + +#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." +#~ msgstr "Dai un'occhiata ad alcuni feed consigliati. Clicca + per aggiungerli al tuo elenco dei feed." + +#~ msgid "Check out some recommended users. Follow them to see similar users." +#~ msgstr "Scopri alcuni utenti consigliati. Seguili per vedere utenti simili." + +#~ msgid "Choose a new Bluesky username or create" +#~ msgstr "Scegli un nuovo nome utente Bluesky o creane uno" + +#~ msgid "Choose the algorithms that power your experience with custom feeds." +#~ msgstr "Scegli gli algoritmi che migliorano la tua esperienza con i feed personalizzati." + +#~ msgid "Click here to open tag menu for #{tag}" +#~ msgstr "Clicca qui per aprire il menu per #{tag}" + +#~ msgctxt "action" +#~ msgid "Confirm" +#~ msgstr "Conferma" + +#~ msgid "Confirm your age to enable adult content." +#~ msgstr "Conferma la tua etร  per abilitare i contenuti per adulti." + +#~ msgid "Confirms signing up {email} to the waitlist" +#~ msgstr "Conferma l'iscrizione di {email} alla lista d'attesa" + +#~ msgid "content" +#~ msgstr "contenuto" + +#~ msgid "Content filtering" +#~ msgstr "Filtro dei contenuti" + +#~ msgid "Content Filtering" +#~ msgstr "Filtro dei Contenuti" + +#~ msgid "Copy link to profile" +#~ msgstr "Copia il link al profilo" + +#~ msgid "Country" +#~ msgstr "Paese" + +#~ msgid "Created by <0/>" +#~ msgstr "Creato da <0/>" + +#~ msgid "Created by you" +#~ msgstr "Creato da te" + +#~ msgid "Creates a card with a thumbnail. The card links to {url}" +#~ msgstr "Crea una scheda con una miniatura. La scheda si collega a {url}" + +#~ msgid "Danger Zone" +#~ msgstr "Zona di Pericolo" + +#~ msgid "Delete Account" +#~ msgstr "Elimina l'Account" + +#~ msgid "Delete my accountโ€ฆ" +#~ msgstr "Cancella il mio accountโ€ฆ" + +#~ msgid "Dev Server" +#~ msgstr "Server di sviluppo" + +#~ msgid "Developer Tools" +#~ msgstr "Strumenti per sviluppatori" + +#~ msgid "Discard draft" +#~ msgstr "Scarta la bozza" + +#~ msgid "Discover new feeds" +#~ msgstr "Scopri nuovi feeds" + +#~ msgid "Don't have an invite code?" +#~ msgstr "Non hai un codice di invito?" + +#~ msgid "Double tap to sign in" +#~ msgstr "Usa il doppio tocco per accedere" + +#~ msgid "Download Bluesky account data (repository)" +#~ msgstr "Scarica i dati dell'account Bluesky (archivio)" + +#~ msgid "Enable External Media" +#~ msgstr "Attiva Media Esterna" + +#~ msgid "Enter the address of your provider:" +#~ msgstr "Inserisci l'indirizzo del tuo provider:" + +#~ msgid "Enter your email" +#~ msgstr "Inserisci la tua email" + +#~ msgid "Enter your phone number" +#~ msgstr "Inserisci il tuo numero di telefono" + +#~ msgid "Exits signing up for waitlist with {email}" +#~ msgstr "Uscita dall'iscrizione alla lista d'attesa con {email}" + +#~ msgid "Failed to load recommended feeds" +#~ msgstr "Non possiamo caricare i feed consigliati" + +#~ msgid "Feed Preferences" +#~ msgstr "Preferenze del feed" + +#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." +#~ msgstr "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni feed che ritieni interessanti." + +#~ msgid "Find users on Bluesky" +#~ msgstr "Trova utenti su Bluesky" + +#~ msgid "Find users with the search tool on the right" +#~ msgstr "Trova gli utenti con lo strumento di ricerca sulla destra" + +#~ msgid "Finding similar accounts..." +#~ msgstr "Trovare account similiโ€ฆ" + +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ottimizza il contenuto che vedi nella pagina d'inizio." + +#~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." +#~ msgstr "Segui alcuni utenti per iniziare. Possiamo consigliarti piรน utenti in base a chi trovi interessante." + +#~ msgid "following" +#~ msgstr "following" + +#~ msgid "Forgot" +#~ msgstr "Dimenticato" + +#~ msgid "Forgot password" +#~ msgstr "Ho dimenticato il password" + +#~ msgid "Go to @{queryMaybeHandle}" +#~ msgstr "Vai a @{queryMaybeHandle}" + +#~ msgid "Hides posts from {0} in your feed" +#~ msgstr "Nasconde i post di {0} nel tuo feed" + +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferenze per i feed per la pagina d'inizio" + +#~ msgid "Hosting provider address" +#~ msgstr "Indirizzo del fornitore di hosting" + +#~ msgid "Image options" +#~ msgstr "Opzioni per l'immagine" + +#~ msgid "Input email for Bluesky account" +#~ msgstr "Inserisci l'e-mail per l'account di Bluesky" + +#~ msgid "Input invite code to proceed" +#~ msgstr "Inserisci il codice di invito per procedere" + +#~ msgid "Input phone number for SMS verification" +#~ msgstr "Inserisci il numero di telefono per la verifica via SMS" + +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "Inserisci il codice di verifica che ti abbiamo inviato tramite SMS" + +#~ msgid "Input your email to get on the Bluesky waitlist" +#~ msgstr "Inserisci la tua email per entrare nella lista d'attesa di Bluesky" + +#~ msgid "Invite" +#~ msgstr "Invita" + +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Codici di invito: {invitesAvailable} disponibili" + +#~ msgid "Join the waitlist" +#~ msgstr "Iscriviti alla lista d'attesa" + +#~ msgid "Join the waitlist." +#~ msgstr "Iscriviti alla lista d'attesa." + +#~ msgid "Join Waitlist" +#~ msgstr "Iscriviti alla Lista d'Attesa" + +#~ msgid "label has been placed on this {labelTarget}" +#~ msgstr "l'etichetta รจ stata inserita su questo {labelTarget}" + +#~ msgid "labels have been placed on this {labelTarget}" +#~ msgstr "le etichette sono state inserite su questo {labelTarget}" + +#~ msgid "Last step!" +#~ msgstr "Ultimo passo!" + +#~ msgid "Learn more" +#~ msgstr "Ulteriori informazioni" + +#~ msgid "Library" +#~ msgstr "Biblioteca" + +#~ msgid "Like" +#~ msgstr "Mi piace" + +#~ msgid "Liked by {0} {1}" +#~ msgstr "Piace a {0} {1}" + +#~ msgid "Liked by {count} {0}" +#~ msgstr "รˆ piaciuto a {count} {0}" + +#~ msgid "Liked by {likeCount} {0}" +#~ msgstr "Piace a {likeCount} {0}" + +#~ msgid "liked your custom feed{0}" +#~ msgstr "piace il feed personalizzato{0}" + +#~ msgid "Load more posts" +#~ msgstr "Carica piรน post" + +#~ msgid "Local dev server" +#~ msgstr "Server di sviluppo locale" + +#~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" +#~ msgstr "Sembra che questo feed sia disponibile solo per gli utenti con un account Bluesky. Per favore registrati o accedi per visualizzare questo feed!" + +#~ msgid "May not be longer than 253 characters" +#~ msgstr "Non puรฒ contenere piรน di 253 caratteri" + +#~ msgid "May only contain letters and numbers" +#~ msgstr "Puรฒ contenere solo lettere e numeri" + +#~ msgid "Message from server" +#~ msgstr "Messaggio dal server" + +#~ msgid "More post options" +#~ msgstr "Altre impostazioni per il post" + +#~ msgid "Must be at least 3 characters" +#~ msgstr "Deve contenere almeno 3 caratteri" + +#~ msgid "Mute this List" +#~ msgstr "Silenzia questa Lista" + +#~ msgid "my-server.com" +#~ msgstr "my-server.com" + +#~ msgid "Never load embeds from {0}" +#~ msgstr "Non caricare mai gli inserimenti di {0}" + +#~ msgid "Never lose access to your followers and data." +#~ msgstr "Non perdere mai l'accesso ai tuoi follower e ai tuoi dati." + +#~ msgid "New Post" +#~ msgstr "Nuovo Post" + +#~ msgctxt "action" +#~ msgid "Next" +#~ msgstr "Seguente" + +#~ msgid "Not Applicable." +#~ msgstr "Non applicabile." + +#~ msgid "Nudity or pornography not labeled as such" +#~ msgstr "Nuditร  o pornografia non etichettata come tale" + +#~ msgid "of" +#~ msgstr "spento" + +#~ 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" + +#~ msgid "Opens followers list" +#~ msgstr "Apre la lista dei followers" + +#~ msgid "Opens following list" +#~ msgstr "Apre la lista di chi segui" + +#~ msgid "Opens invite code list" +#~ msgstr "Apre la lista dei codici di invito" + +#~ 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." + +#~ msgid "Opens the app password settings page" +#~ msgstr "Apre la pagina delle impostazioni della password dell'app" + +#~ msgid "Opens the home feed preferences" +#~ msgstr "Apre le preferenze del home feed" + +#~ msgid "Other service" +#~ msgstr "Altro servizio" + +#~ msgid "Phone number" +#~ msgstr "Numero di telefono" + +#~ 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." + +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "Inserisci il codice che hai ricevuto via SMS." + +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}." + +#~ msgid "Please tell us why you think this content warning was incorrectly applied!" +#~ msgstr "Spiegaci perchรฉ ritieni che questo avviso sui contenuti sia stato applicato in modo errato!" + +#~ msgid "Please tell us why you think this decision was incorrect." +#~ msgstr "Per favore spiegaci perchรฉ ritieni che questa decisione sia stata sbagliata." + +#~ msgid "Pornography" +#~ msgstr "Pornografia" + +#~ msgid "Post" +#~ msgstr "Post" + +#~ msgid "Quote Post" +#~ msgstr "Cita il post" + +#~ msgid "Recommended Feeds" +#~ msgstr "Feeds consigliati" + +#~ msgid "Recommended Users" +#~ msgstr "Utenti consigliati" + +#~ msgid "Remove {0} from my feeds?" +#~ msgstr "Rimuovere {0} dai miei feeds?" + +#~ msgid "Remove this feed from my feeds?" +#~ msgstr "Rimuovere questo feed dai miei feeds?" + +#~ msgid "Remove this feed from your saved feeds?" +#~ msgstr "Elimina questo feed dai feeds salvati?" + +#~ msgctxt "description" +#~ msgid "Reply to <0/>" +#~ msgstr "In risposta a <0/>" + +#~ msgid "Report {collectionName}" +#~ msgstr "Segnala {collectionName}" + +#~ msgid "Reposted by" +#~ msgstr "Repost di" + +#~ msgid "Reposted by {0})" +#~ msgstr "Repost di {0})" + +#~ msgid "Reposted by <0/>" +#~ msgstr "Repost di <0/>" + +#~ msgid "Request code" +#~ msgstr "Richiedi un codice" + +#~ msgid "Reset onboarding" +#~ msgstr "Reimposta l'incorporazione" + +#~ msgid "Reset preferences" +#~ msgstr "Reimposta le preferenze" + +#~ msgid "Retry." +#~ msgstr "Riprova." + +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "SANDBOX. I post e gli account non sono permanenti." + +#~ msgid "Saved to your camera roll." +#~ msgstr "Salvato nel rullino fotografico." + +#~ msgid "See what's next" +#~ msgstr "Scopri cosa c'รจ dopo" + +#~ msgid "Select Bluesky Social" +#~ msgstr "Seleziona Bluesky Social" + +#~ msgid "Select service" +#~ msgstr "Selecciona el servei" + +#~ 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" + +#~ msgid "Select your phone's country" +#~ msgstr "Seleziona il Paese del tuo cellulare" + +#~ msgid "Send Email" +#~ msgstr "Envia Email" + +#~ msgid "Send Report" +#~ msgstr "Invia segnalazione" + +#~ msgid "Set {value} for {labelGroup} content moderation policy" +#~ msgstr "Imposta {value} per la politica di moderazione dei contenuti di {labelGroup}" + +#~ msgctxt "action" +#~ msgid "Set Age" +#~ msgstr "Imposta l'etร " + +#~ msgid "Set color theme to dark" +#~ msgstr "Imposta il colore del tema scuro" + +#~ msgid "Set color theme to light" +#~ msgstr "Imposta il colore del tema su chiaro" + +#~ msgid "Set color theme to system setting" +#~ msgstr "Imposta il colore del tema basato sulle impostazioni del tuo sistema" + +#~ msgid "Set dark theme to the dark theme" +#~ msgstr "Imposta il tema scuro sul tema scuro" + +#~ msgid "Set dark theme to the dim theme" +#~ msgstr "Imposta il tema scuro sul tema scuro" + +#~ msgid "Set password" +#~ msgstr "Imposta la password" + +#~ 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." + +#~ msgid "Sets hosting provider for password reset" +#~ msgstr "Imposta il provider del hosting per la reimpostazione della password" + +#~ msgid "Sets server for the Bluesky client" +#~ msgstr "Imposta il server per il client Bluesky" + +#~ msgid "Show all replies" +#~ msgstr "Mostra tutte le repliche" + +#~ msgid "Show embeds from {0}" +#~ msgstr "Mostra incorporamenti di {0}" + +#~ msgid "Show replies with at least {value} {0}" +#~ msgstr "Mostra risposte con almeno {value} {0}" + +#~ msgid "Shows a list of users similar to this user." +#~ msgstr "Mostra un elenco di utenti simili a questo utente." + +#~ msgid "Sign In" +#~ msgstr "Accedi" + +#~ msgid "Sign into" +#~ msgstr "Accedere a" + +#~ msgid "Signs {0} out of Bluesky" +#~ msgstr "{0} esce da Bluesky" + +#~ msgid "SMS verification" +#~ msgstr "Verifica tramite SMS" + +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "Qualcosa รจ andato storto ma non siamo sicuri di cosa." + +#~ msgid "Something went wrong. Check your email and try again." +#~ msgstr "Qualcosa รจ andato storto. Controlla la tua email e riprova." + +#~ msgid "Source:" +#~ msgstr "Origine:" + +#~ msgid "Staging" +#~ msgstr "Allestimento" + +#~ msgid "Status page" +#~ msgstr "Pagina di stato" + +#~ msgid "Step" +#~ msgstr "Passo" + +#~ msgid "Step {0} of {numSteps}" +#~ msgstr "Passo {0} di {numSteps}" + +#~ msgid "Swipe up to see more" +#~ msgstr "Scorri verso l'alto per vedere di piรน" + +#~ msgid "the author" +#~ msgstr "l'autore" + +#~ msgid "The support form has been moved. If you need help, please<0/> or visit {HELP_DESK_URL} to get in touch with us." +#~ msgstr "Il modulo di supporto รจ stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." + +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "C'รจ qualcosa di sbagliato in questo numero. Scegli il tuo Paese e inserisci il tuo numero di telefono completo!" + +#~ msgid "This {0} has been labeled." +#~ msgstr "Questo {0} รจ stato etichettato." + +#~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +#~ msgstr "Questa funzionalitร  รจ in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni dell' archivio in <0>questo post del blog." + +#~ msgid "This is the service that keeps you online." +#~ msgstr "Questo รจ il servizio che ti mantiene online." + +#~ msgid "This label was applied by {0}." +#~ msgstr "Questa etichetta รจ stata applicata da {0}." + +#~ msgid "This user is included in the <0/> list which you have blocked." +#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai bloccato." + +#~ msgid "This user is included in the <0/> list which you have muted." +#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai disattivato." + +#~ msgid "This user is included the <0/> list which you have muted." +#~ msgstr "Questo utente รจ incluso nella lista <0/> che hai silenziato." + +#~ msgid "This warning is only available for posts with media attached." +#~ msgstr "Questo avviso รจ disponibile solo per i post con contenuti multimediali allegati." + +#~ msgid "This will hide this post from your feeds." +#~ msgstr "Questo nasconderร  il post dai tuoi feeds." + +#~ msgid "Try again" +#~ msgstr "Provalo di nuovo" + +#~ msgid "Unfortunately, you do not meet the requirements to create an account." +#~ msgstr "Sfortunatamente, non soddisfi i requisiti per creare un account." + +#~ msgid "Unlike" +#~ msgstr "Togli Mi piace" + +#~ msgid "Unsave" +#~ msgstr "Rimuovi" + +#~ msgid "Update Available" +#~ msgstr "Aggiornamento disponibile" + +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "Utilizza il tuo dominio come provider di servizi clienti Bluesky" + +#~ msgid "User handle" +#~ msgstr "Handle dell'utente" + +#~ msgid "Verification code" +#~ msgstr "Codice di verifica" + +#~ msgid "Verify {0}" +#~ msgstr "Verifica {0}" + +#~ msgid "Version {0}" +#~ msgstr "Versione {0}" + +#~ msgid "We also think you'll like \"For You\" by Skygaze:" +#~ msgstr "Pensiamo che ti piacerร  anche \"Per Te\" di Skygaze:" + +#~ msgid "We'll look into your appeal promptly." +#~ msgstr "Esamineremo il tuo ricorso al piรน presto." + +#~ msgid "Welcome to <0>Bluesky" +#~ msgstr "Ti diamo il benvenuto a <0>Bluesky" + +#~ msgid "What is the issue with this {collectionName}?" +#~ msgstr "Qual รจ il problema con questo {collectionName}?" + +#~ msgid "What's next?" +#~ msgstr "Qual รจ il prossimo?" + +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" + +#~ msgid "You can change hosting providers at any time." +#~ msgstr "Puoi cambiare provider di hosting in qualsiasi momento." + +#~ msgid "You don't have any saved feeds!" +#~ msgstr "Non hai salvato nessun feed!" + +#~ msgid "You have muted this user." +#~ msgstr "Hai disattivato questo utente." + +#~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." +#~ msgstr "Non hai ancora bloccato nessun conto. Per bloccare un conto, vai al profilo e seleziona \"Blocca conto\" dal menu del suo conto." + +#~ msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." +#~ msgstr "Non hai ancora disattivato alcun account. Per disattivare un account, vai al suo profilo e seleziona \"Disattiva account\" dal menu del account." + +#~ msgid "You must be 18 or older to enable adult content." +#~ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti." + +#~ msgid "Your email has been saved! We'll be in touch soon." +#~ msgstr "La tua email รจ stata salvata! Ci metteremo in contatto al piรน presto." + +#~ msgid "Your hosting provider" +#~ msgstr "Il tuo fornitore di hosting" + +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "I tuoi codici di invito vengono celati quando accedi utilizzando una password per l'app" From bb0a6a4b6c4e86c62d599c424dae35c9ee9d200d Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 11 Jun 2024 17:42:28 -0500 Subject: [PATCH 13/86] Add KnownFollowers component to standard profile header (#4420) * Add KnownFollowers component to standard profile header * Prep for known followers screen * Add known followers screen * Tighten space * Add pressed state * Edit title * Vertically center * Don't show if no known followers * Bump sdk * Use actual followers.length to show * Updates to show logic, space * Prevent fresh data from applying to cached screens * Tighten space * Better label * Oxford comma * Fix count logic * Add bskyweb route * Useless ternary * Minor spacing tweak --------- Co-authored-by: Paul Frazee --- bskyweb/cmd/bskyweb/server.go | 1 + package.json | 2 +- src/Navigation.tsx | 8 + src/components/KnownFollowers.tsx | 200 ++++++++++++++++++ src/lib/routes/types.ts | 1 + src/routes.ts | 1 + .../Profile/Header/ProfileHeaderStandard.tsx | 14 ++ src/screens/Profile/Header/Shell.tsx | 2 +- src/screens/Profile/KnownFollowers.tsx | 134 ++++++++++++ src/state/queries/known-followers.ts | 34 +++ yarn.lock | 8 +- 11 files changed, 399 insertions(+), 6 deletions(-) create mode 100644 src/components/KnownFollowers.tsx create mode 100644 src/screens/Profile/KnownFollowers.tsx create mode 100644 src/state/queries/known-followers.ts diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index e1b009646a..bb81e780f5 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -207,6 +207,7 @@ func serve(cctx *cli.Context) error { e.GET("/profile/:handleOrDID", server.WebProfile) e.GET("/profile/:handleOrDID/follows", server.WebGeneric) e.GET("/profile/:handleOrDID/followers", server.WebGeneric) + e.GET("/profile/:handleOrDID/known-followers", server.WebGeneric) e.GET("/profile/:handleOrDID/lists/:rkey", server.WebGeneric) e.GET("/profile/:handleOrDID/feed/:rkey", server.WebGeneric) e.GET("/profile/:handleOrDID/feed/:rkey/liked-by", server.WebGeneric) diff --git a/package.json b/package.json index 1ba0ab2ec8..5f9a898fc9 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.16", + "@atproto/api": "^0.12.18", "@bam.tech/react-native-image-resizer": "^3.0.4", "@braintree/sanitize-url": "^6.0.2", "@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet", diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 8f8855d67f..67b89e2627 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -41,6 +41,7 @@ import {PreferencesThreads} from 'view/screens/PreferencesThreads' import {SavedFeeds} from 'view/screens/SavedFeeds' import HashtagScreen from '#/screens/Hashtag' import {ModerationScreen} from '#/screens/Moderation' +import {ProfileKnownFollowersScreen} from '#/screens/Profile/KnownFollowers' import {ProfileLabelerLikedByScreen} from '#/screens/Profile/ProfileLabelerLikedBy' import {init as initAnalytics} from './lib/analytics/analytics' import {useWebScrollRestoration} from './lib/hooks/useWebScrollRestoration' @@ -169,6 +170,13 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { title: title(msg`People followed by @${route.params.name}`), })} /> + ProfileKnownFollowersScreen} + options={({route}) => ({ + title: title(msg`Followers of @${route.params.name} that you know`), + })} + /> ProfileListScreen} diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx new file mode 100644 index 0000000000..b99fe3398e --- /dev/null +++ b/src/components/KnownFollowers.tsx @@ -0,0 +1,200 @@ +import React from 'react' +import {View} from 'react-native' +import {AppBskyActorDefs, moderateProfile, ModerationOpts} from '@atproto/api' +import {msg, plural, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {makeProfileLink} from '#/lib/routes/links' +import {sanitizeDisplayName} from 'lib/strings/display-names' +import {UserAvatar} from '#/view/com/util/UserAvatar' +import {atoms as a, useTheme} from '#/alf' +import {Link} from '#/components/Link' +import {Text} from '#/components/Typography' + +const AVI_SIZE = 30 +const AVI_BORDER = 1 + +/** + * Shared logic to determine if `KnownFollowers` should be shown. + * + * Checks the # of actual returned users instead of the `count` value, because + * `count` includes blocked users and `followers` does not. + */ +export function shouldShowKnownFollowers( + knownFollowers?: AppBskyActorDefs.KnownFollowers, +) { + return knownFollowers && knownFollowers.followers.length > 0 +} + +export function KnownFollowers({ + profile, + moderationOpts, +}: { + profile: AppBskyActorDefs.ProfileViewDetailed + moderationOpts: ModerationOpts +}) { + const cache = React.useRef>( + new Map(), + ) + + /* + * Results for `knownFollowers` are not sorted consistently, so when + * revalidating we can see a flash of this data updating. This cache prevents + * this happening for screens that remain in memory. When pushing a new + * screen, or once this one is popped, this cache is empty, so new data is + * displayed. + */ + if (profile.viewer?.knownFollowers && !cache.current.has(profile.did)) { + cache.current.set(profile.did, profile.viewer.knownFollowers) + } + + const cachedKnownFollowers = cache.current.get(profile.did) + + if (cachedKnownFollowers && shouldShowKnownFollowers(cachedKnownFollowers)) { + return ( + + ) + } + + return null +} + +function KnownFollowersInner({ + profile, + moderationOpts, + cachedKnownFollowers, +}: { + profile: AppBskyActorDefs.ProfileViewDetailed + moderationOpts: ModerationOpts + cachedKnownFollowers: AppBskyActorDefs.KnownFollowers +}) { + const t = useTheme() + const {_} = useLingui() + + const textStyle = [ + a.flex_1, + a.text_sm, + a.leading_snug, + t.atoms.text_contrast_medium, + ] + + // list of users, minus blocks + const returnedCount = cachedKnownFollowers.followers.length + // db count, includes blocks + const fullCount = cachedKnownFollowers.count + // knownFollowers can return up to 5 users, but will exclude blocks + // therefore, if we have less 5 users, use whichever count is lower + const count = + returnedCount < 5 ? Math.min(fullCount, returnedCount) : fullCount + + const slice = cachedKnownFollowers.followers.slice(0, 3).map(f => { + const moderation = moderateProfile(f, moderationOpts) + return { + profile: { + ...f, + displayName: sanitizeDisplayName( + f.displayName || f.handle, + moderation.ui('displayName'), + ), + }, + moderation, + } + }) + + return ( + + {({hovered, pressed}) => ( + <> + + {slice.map(({profile: prof, moderation}, i) => ( + + + + ))} + + + + Followed by{' '} + {count > 2 ? ( + <> + {slice.slice(0, 2).map(({profile: prof}, i) => ( + + {prof.displayName} + {i === 0 && ', '} + + ))} + {', '} + {plural(count - 2, { + one: 'and # other', + other: 'and # others', + })} + + ) : count === 2 ? ( + slice.map(({profile: prof}, i) => ( + + {prof.displayName} {i === 0 ? _(msg`and`) + ' ' : ''} + + )) + ) : ( + + {slice[0].profile.displayName} + + )} + + + )} + + ) +} diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index caa861b6e5..403c2bb675 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -15,6 +15,7 @@ export type CommonNavigatorParams = { Profile: {name: string; hideBackButton?: boolean} ProfileFollowers: {name: string} ProfileFollows: {name: string} + ProfileKnownFollowers: {name: string} ProfileList: {name: string; rkey: string} PostThread: {name: string; rkey: string} PostLikedBy: {name: string; rkey: string} diff --git a/src/routes.ts b/src/routes.ts index 6845cccd0f..de711f5dc2 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -15,6 +15,7 @@ export const router = new Router({ Profile: ['/profile/:name', '/profile/:name/rss'], ProfileFollowers: '/profile/:name/followers', ProfileFollows: '/profile/:name/follows', + ProfileKnownFollowers: '/profile/:name/known-followers', ProfileList: '/profile/:name/lists/:rkey', PostThread: '/profile/:name/post/:rkey', PostLikedBy: '/profile/:name/post/:rkey/liked-by', diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index f4b8d77052..f8a87a68e4 100644 --- a/src/screens/Profile/Header/ProfileHeaderStandard.tsx +++ b/src/screens/Profile/Header/ProfileHeaderStandard.tsx @@ -30,6 +30,10 @@ import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {MessageProfileButton} from '#/components/dms/MessageProfileButton' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' +import { + KnownFollowers, + shouldShowKnownFollowers, +} from '#/components/KnownFollowers' import * as Prompt from '#/components/Prompt' import {RichText} from '#/components/RichText' import {ProfileHeaderDisplayName} from './DisplayName' @@ -268,6 +272,16 @@ let ProfileHeaderStandard = ({ /> ) : undefined} + + {!isMe && + shouldShowKnownFollowers(profile.viewer?.knownFollowers) && ( + + + + )} )} diff --git a/src/screens/Profile/Header/Shell.tsx b/src/screens/Profile/Header/Shell.tsx index 553b38a3bb..82cba1704d 100644 --- a/src/screens/Profile/Header/Shell.tsx +++ b/src/screens/Profile/Header/Shell.tsx @@ -83,7 +83,7 @@ let ProfileHeaderShell = ({ {!isPlaceholderProfile && ( {isMe ? ( diff --git a/src/screens/Profile/KnownFollowers.tsx b/src/screens/Profile/KnownFollowers.tsx new file mode 100644 index 0000000000..5cb45a11e1 --- /dev/null +++ b/src/screens/Profile/KnownFollowers.tsx @@ -0,0 +1,134 @@ +import React from 'react' +import {View} from 'react-native' +import {AppBskyActorDefs} from '@atproto/api' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {useFocusEffect} from '@react-navigation/native' + +import {cleanError} from '#/lib/strings/errors' +import {logger} from '#/logger' +import {useProfileKnownFollowersQuery} from '#/state/queries/known-followers' +import {useResolveDidQuery} from '#/state/queries/resolve-uri' +import {useSetMinimalShellMode} from '#/state/shell' +import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender' +import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' +import {ProfileCardWithFollowBtn} from '#/view/com/profile/ProfileCard' +import {List} from '#/view/com/util/List' +import {ViewHeader} from '#/view/com/util/ViewHeader' +import { + ListFooter, + ListHeaderDesktop, + ListMaybePlaceholder, +} from '#/components/Lists' + +function renderItem({item}: {item: AppBskyActorDefs.ProfileViewBasic}) { + return +} + +function keyExtractor(item: AppBskyActorDefs.ProfileViewBasic) { + return item.did +} + +type Props = NativeStackScreenProps< + CommonNavigatorParams, + 'ProfileKnownFollowers' +> +export const ProfileKnownFollowersScreen = ({route}: Props) => { + const {_} = useLingui() + const setMinimalShellMode = useSetMinimalShellMode() + const initialNumToRender = useInitialNumToRender() + + const {name} = route.params + + const [isPTRing, setIsPTRing] = React.useState(false) + const { + data: resolvedDid, + isLoading: isDidLoading, + error: resolveError, + } = useResolveDidQuery(route.params.name) + const { + data, + isLoading: isFollowersLoading, + isFetchingNextPage, + hasNextPage, + fetchNextPage, + error, + refetch, + } = useProfileKnownFollowersQuery(resolvedDid) + + const onRefresh = React.useCallback(async () => { + setIsPTRing(true) + try { + await refetch() + } catch (err) { + logger.error('Failed to refresh followers', {message: err}) + } + setIsPTRing(false) + }, [refetch, setIsPTRing]) + + const onEndReached = React.useCallback(async () => { + if (isFetchingNextPage || !hasNextPage || !!error) return + try { + await fetchNextPage() + } catch (err) { + logger.error('Failed to load more followers', {message: err}) + } + }, [isFetchingNextPage, hasNextPage, error, fetchNextPage]) + + const followers = React.useMemo(() => { + if (data?.pages) { + return data.pages.flatMap(page => page.followers) + } + return [] + }, [data]) + + const isError = Boolean(resolveError || error) + + useFocusEffect( + React.useCallback(() => { + setMinimalShellMode(false) + }, [setMinimalShellMode]), + ) + + if (followers.length < 1) { + return ( + + ) + } + + return ( + + + + } + ListFooterComponent={ + + } + // @ts-ignore our .web version only -prf + desktopFixedHeight + initialNumToRender={initialNumToRender} + windowSize={11} + /> + + ) +} diff --git a/src/state/queries/known-followers.ts b/src/state/queries/known-followers.ts new file mode 100644 index 0000000000..adcbf4b502 --- /dev/null +++ b/src/state/queries/known-followers.ts @@ -0,0 +1,34 @@ +import {AppBskyGraphGetKnownFollowers} from '@atproto/api' +import {InfiniteData, QueryKey, useInfiniteQuery} from '@tanstack/react-query' + +import {useAgent} from '#/state/session' + +const PAGE_SIZE = 50 +type RQPageParam = string | undefined + +const RQKEY_ROOT = 'profile-known-followers' +export const RQKEY = (did: string) => [RQKEY_ROOT, did] + +export function useProfileKnownFollowersQuery(did: string | undefined) { + const agent = useAgent() + return useInfiniteQuery< + AppBskyGraphGetKnownFollowers.OutputSchema, + Error, + InfiniteData, + QueryKey, + RQPageParam + >({ + queryKey: RQKEY(did || ''), + async queryFn({pageParam}: {pageParam: RQPageParam}) { + const res = await agent.app.bsky.graph.getKnownFollowers({ + actor: did!, + limit: PAGE_SIZE, + cursor: pageParam, + }) + return res.data + }, + initialPageParam: undefined, + getNextPageParam: lastPage => lastPage.cursor, + enabled: !!did, + }) +} diff --git a/yarn.lock b/yarn.lock index 321cd746dc..c56a56b28e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -34,10 +34,10 @@ jsonpointer "^5.0.0" leven "^3.1.0" -"@atproto/api@^0.12.16": - version "0.12.16" - resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.16.tgz#f5b5e06d75d379dafe79521d727ed8ad5516d3fc" - integrity sha512-v3lA/m17nkawDXiqgwXyaUSzJPeXJBMH8QKOoYxcDqN+8yG9LFlGe2ecGarXcbGQjYT0GJTAAW3Y/AaCOEwuLg== +"@atproto/api@^0.12.18": + version "0.12.18" + resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.18.tgz#490a6f22966a3b605c22154fe7befc78bf640821" + integrity sha512-Ii3J/uzmyw1qgnfhnvAsmuXa8ObRSCHelsF8TmQrgMWeXCbfypeS/VESm++1Z9+xHK7bHPOwSek3RmWB0cqEbQ== dependencies: "@atproto/common-web" "^0.3.0" "@atproto/lexicon" "^0.4.0" From 6736384ff4a0bc90580ee279cb773fa196ec93a4 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 11 Jun 2024 16:20:26 -0700 Subject: [PATCH 14/86] Release 1.86 prep (#4490) * Test updates * Run intl extract --- __e2e__/flows/feed-reorder.yml | 19 +- __e2e__/flows/home-screen.yml | 2 + __e2e__/flows/thread-screen.yml | 4 +- src/locale/locales/ca/messages.po | 807 +++---- src/locale/locales/de/messages.po | 807 +++---- src/locale/locales/en/messages.po | 807 +++---- src/locale/locales/es/messages.po | 807 +++---- src/locale/locales/fi/messages.po | 807 +++---- src/locale/locales/fr/messages.po | 790 +++---- src/locale/locales/ga/messages.po | 2890 ++++++++++++++++---------- src/locale/locales/hi/messages.po | 807 +++---- src/locale/locales/id/messages.po | 807 +++---- src/locale/locales/it/messages.po | 2176 +++++++++---------- src/locale/locales/ja/messages.po | 807 +++---- src/locale/locales/ko/messages.po | 680 +++--- src/locale/locales/pt-BR/messages.po | 807 +++---- src/locale/locales/tr/messages.po | 807 +++---- src/locale/locales/uk/messages.po | 807 +++---- src/locale/locales/zh-CN/messages.po | 807 +++---- src/locale/locales/zh-TW/messages.po | 807 +++---- src/view/screens/Feeds.tsx | 1 + 21 files changed, 9252 insertions(+), 7801 deletions(-) diff --git a/__e2e__/flows/feed-reorder.yml b/__e2e__/flows/feed-reorder.yml index 4b96a201ce..34df679ce7 100644 --- a/__e2e__/flows/feed-reorder.yml +++ b/__e2e__/flows/feed-reorder.yml @@ -36,12 +36,15 @@ appId: xyz.blueskyweb.app id: "viewHeaderDrawerBtn" - tapOn: id: "menuItemButton-Feeds" -- tapOn: "Edit Saved Feeds" +- tapOn: + id: "editFeedsBtn" - tapOn: label: "Tap on down arrow" point: "79%,23%" - tapOn: - id: "bottomBarHomeBtn" + id: "viewHeaderDrawerBtn" +- tapOn: + id: "viewHeaderDrawerBtn" - assertVisible: id: "homeScreenFeedTabs-selector-0" text: "alice-favs" @@ -54,11 +57,15 @@ appId: xyz.blueskyweb.app id: "viewHeaderDrawerBtn" - tapOn: id: "menuItemButton-Feeds" +- tapOn: + id: "editFeedsBtn" - tapOn: label: "Tap on down arrow" point: "79%,23%" - tapOn: - id: "bottomBarHomeBtn" + id: "viewHeaderDrawerBtn" +- tapOn: + id: "viewHeaderDrawerBtn" - assertVisible: id: "homeScreenFeedTabs-selector-0" text: "Following" @@ -71,11 +78,15 @@ appId: xyz.blueskyweb.app id: "viewHeaderDrawerBtn" - tapOn: id: "menuItemButton-Feeds" +- tapOn: + id: "editFeedsBtn" - tapOn: label: "Tap on unpin" point: "91%,23%" - tapOn: - id: "bottomBarHomeBtn" + id: "viewHeaderDrawerBtn" +- tapOn: + id: "viewHeaderDrawerBtn" - assertVisible: id: "homeScreenFeedTabs-selector-0" text: "alice-favs" diff --git a/__e2e__/flows/home-screen.yml b/__e2e__/flows/home-screen.yml index f39aceebc5..9c2d540ebb 100644 --- a/__e2e__/flows/home-screen.yml +++ b/__e2e__/flows/home-screen.yml @@ -28,6 +28,8 @@ appId: xyz.blueskyweb.app - tapOn: "Pin to Home" - tapOn: id: "bottomBarHomeBtn" +- tapOn: + id: "viewHeaderDrawerBtn" - assertNotVisible: "Feeds โœจ" - tapOn: diff --git a/__e2e__/flows/thread-screen.yml b/__e2e__/flows/thread-screen.yml index 22f71345db..fdc732596b 100644 --- a/__e2e__/flows/thread-screen.yml +++ b/__e2e__/flows/thread-screen.yml @@ -58,7 +58,7 @@ appId: xyz.blueskyweb.app id: "repostBtn" childOf: id: "postThreadItem-by-bob.test" -- tapOn: "Undo repost" +- tapOn: "Remove repost" - assertNotVisible: id: "repostCount-expanded" @@ -77,7 +77,7 @@ appId: xyz.blueskyweb.app id: "repostBtn" childOf: id: "postThreadItem-by-carla.test" -- tapOn: "Undo repost" +- tapOn: "Remove repost" - assertNotVisible: id: "repostCount" childOf: diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index bfaafa053b..60639340c6 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -16,7 +16,7 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -48,10 +48,14 @@ msgstr "{0, plural, one {# etiqueta s'ha aplicat a aquest compte} other {# etiqu msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {# etiqueta s'ha aplicat a aquest contingut} other {# etiquetes s'han aplicat a aquest contingut}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# republicaciรณ} other {# republicacions}}" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -66,11 +70,11 @@ msgstr "{0, plural, one {seguint} other {seguint}}" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Like (# m'agrada)} other {Like (# m'agrades)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {m'agrada} other {m'agrades}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: 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}}" @@ -82,7 +86,7 @@ msgstr "{0, plural, one {publicaciรณ} other {publicacions}}" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Resposta per (# reply)} other {Resposta per (# replies)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicaciรณ} other {republicacions}}" @@ -151,7 +155,7 @@ msgstr "{likeCount, plural, one {Li ha agradat a # user} other {Li ha agradat a #~ msgid "{message}" #~ msgstr "{missatge}" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} no llegides" @@ -216,12 +220,12 @@ msgstr "Confirmaciรณ 2FA" #~ 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." -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Accedeix als enllaรงos de navegaciรณ i configuraciรณ" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Accedeix al perfil i altres enllaรงos de navegaciรณ" @@ -234,7 +238,7 @@ msgstr "Accessibilitat" msgid "Accessibility settings" msgstr "Configuraciรณ d'accessibilitat" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Configuraciรณ d'accessibilitat" @@ -278,7 +282,7 @@ msgstr "Opcions del compte" msgid "Account removed from quick access" msgstr "Compte eliminat de l'accรฉs rร pid" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Compte desbloquejat" @@ -291,7 +295,7 @@ msgstr "Compte no seguit" msgid "Account unmuted" msgstr "Compte no silenciat" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -313,9 +317,9 @@ msgstr "Afegeix un usuari a aquesta llista" msgid "Add account" msgstr "Afegeix un compte" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -349,15 +353,15 @@ msgstr "Afegeix una contrasenya d'aplicaciรณ" #~ msgid "Add link card:" #~ msgstr "Afegeix una targeta a l'enllaรง:" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Afegeix paraula silenciada a la configuraciรณ" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Afegeix les paraules i etiquetes silenciades" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Afegeix els canals recomanats" @@ -374,7 +378,7 @@ msgstr "Afegeix el segรผent registre DNS al teu domini:" msgid "Add to Lists" msgstr "Afegeix a les llistes" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Afegeix als meus canals" @@ -387,7 +391,7 @@ msgstr "Afegeix als meus canals" msgid "Added to list" msgstr "Afegit a la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Afegit als meus canals" @@ -413,12 +417,12 @@ msgstr "El contingut per a adults estร  deshabilitat." msgid "Advanced" msgstr "Avanรงat" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -441,13 +445,13 @@ msgstr "Ja tens un codi?" msgid "Already signed in as @{0}" msgstr "Ja estร s registrat com a @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -495,6 +499,7 @@ msgstr "Hi ha hagut un problema, prova-ho de nou." msgid "an unknown error occurred" msgstr "hi ha hagut un problema desconegut" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -520,11 +525,11 @@ msgstr "Idioma de l'aplicaciรณ" msgid "App password deleted" msgstr "Contrasenya de l'aplicaciรณ esborrada" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "La contrasenya de l'aplicaciรณ nomรฉs pot estar formada per lletres, nรบmeros, espais, guions i guions baixos." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 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." @@ -536,18 +541,18 @@ msgstr "Configuraciรณ de la contrasenya d'aplicaciรณ" #~ msgid "App passwords" #~ msgstr "Contrasenyes de l'aplicaciรณ" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Contrasenyes de l'aplicaciรณ" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Apelยทla" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Apelยทla \"{0}\" etiqueta" @@ -563,7 +568,7 @@ msgstr "Apelยทla \"{0}\" etiqueta" #~ msgid "Appeal Decision" #~ msgstr "Decisiรณn de apelaciรณn" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Apelยทlaciรณ enviada" @@ -588,7 +593,7 @@ msgid "Appearance" msgstr "Aparenรงa" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "Aplica els canals recomanats per defecte" @@ -612,15 +617,15 @@ msgstr "Estร s segur que vols esborrar aquest missatge? El missatge s'esborrarร  msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Estร s segur que vols abandonar aquesta conversa? Els missatge s'esborraran per a tu, perรฒ no per a l'altre participant." -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confirmes que vols eliminar {0} dels teus canals?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "Confirmes que vols descartar aquest esborrany?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Ho confirmes?" @@ -645,8 +650,8 @@ msgid "At least 3 characters" msgstr "Almenys 3 carร cters" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -659,7 +664,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:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Endarrere" @@ -684,7 +689,7 @@ msgstr "Aniversari" msgid "Birthday:" msgstr "Aniversari:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Bloqueja" @@ -728,7 +733,7 @@ msgstr "Bloquejada" msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Comptes bloquejats" @@ -809,8 +814,8 @@ msgstr "Difumina les imatges i filtra-ho dels canals" msgid "Books" msgstr "Llibres" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "Explora altres canals" @@ -826,7 +831,7 @@ msgstr "Negocis" #~ msgid "Button disabled. Input custom domain to proceed." #~ msgstr "Botรณ deshabilitat. Entra el domini personalitzat per a continuar." -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "per -" @@ -842,7 +847,7 @@ msgstr "Per {0}" #~ msgid "by @{0}" #~ msgstr "per @{0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "per <0/>" @@ -850,7 +855,7 @@ msgstr "per <0/>" msgid "By creating an account you agree to the {els}." msgstr "Creant el compte indiques que estร s d'acord amb {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "per tu" @@ -858,7 +863,7 @@ msgstr "per tu" msgid "Camera" msgstr "Cร mera" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "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." @@ -867,8 +872,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -884,8 +889,8 @@ msgstr "Nomรฉs pot tenir lletres, nรบmeros, espais, guions i guions baixos. Ha d #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Cancelยทla" @@ -918,7 +923,7 @@ msgstr "Cancelยทla la retallada de la imatge" msgid "Cancel profile editing" msgstr "Cancelยทla l'ediciรณ del perfil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Cancelยทla la citaciรณ de la publicaciรณ" @@ -982,7 +987,7 @@ msgstr "Canvia l'idioma de la publicaciรณ a {0}" msgid "Change Your Email" msgstr "Canvia el teu correu" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -994,7 +999,7 @@ msgstr "Xat silenciat" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -1084,7 +1089,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Esborra totes les dades emmagatzemades (i desprรฉs reinicia)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Esborra la cerca" @@ -1192,7 +1197,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:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "Tanca l'editor de la publicaciรณ i descarta l'esborrany" @@ -1216,7 +1221,7 @@ msgstr "Comรจdia" msgid "Comics" msgstr "Cรฒmics" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrius de la comunitat" @@ -1229,7 +1234,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:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Crea publicacions de fins a {MAX_GRAPHEME_LENGTH} carร cters" @@ -1360,7 +1365,7 @@ 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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continua" @@ -1368,8 +1373,12 @@ msgstr "Continua" msgid "Continue as {0} (currently signed in)" msgstr "Continua com a {0} (sessiรณ actual)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Continua" @@ -1382,7 +1391,7 @@ msgstr "Continua" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Continua sense seguir cap compte" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "Conversa esborrada" @@ -1390,7 +1399,7 @@ msgstr "Conversa esborrada" msgid "Cooking" msgstr "Cuina" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiat" @@ -1400,10 +1409,10 @@ msgid "Copied build version to clipboard" msgstr "Nรบmero de versiรณ copiat en memรฒria" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "Copiat en memรฒria" @@ -1411,11 +1420,11 @@ msgstr "Copiat en memรฒria" msgid "Copied!" msgstr "Copiat" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Copia la contrasenya d'aplicaciรณ" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copia" @@ -1432,8 +1441,8 @@ msgstr "Copia el codi" msgid "Copy link to list" msgstr "Copia l'enllaรง a la llista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Copia l'enllaรง a la publicaciรณ" @@ -1446,12 +1455,12 @@ msgstr "Copia l'enllaรง a la publicaciรณ" msgid "Copy message text" msgstr "Copia el text del missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Copia el text de la publicaciรณ" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Polรญtica de drets d'autor" @@ -1502,11 +1511,11 @@ msgstr "Crea un compte" msgid "Create an account" msgstr "Crea un compte" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "Enlloc d'aixรฒ, crea un avatar" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Crea una contrasenya d'aplicaciรณ" @@ -1548,7 +1557,7 @@ msgstr "Personalitzat" msgid "Custom domain" msgstr "Domini personalitzat" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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ร ." @@ -1595,7 +1604,7 @@ msgid "Debug panel" msgstr "Panell de depuraciรณ" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1654,8 +1663,8 @@ msgstr "Elimina el meu compte" msgid "Delete My Accountโ€ฆ" msgstr "Elimina el meu compteโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Elimina la publicaciรณ" @@ -1663,7 +1672,7 @@ msgstr "Elimina la publicaciรณ" msgid "Delete this list?" msgstr "Vols eliminar aquesta llista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Vols eliminar aquesta publicaciรณ?" @@ -1686,7 +1695,7 @@ msgstr "Suprimeix el registre de declaraciรณ de xat" msgid "Description" msgstr "Descripciรณ" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "Text alternatiu descriptiu" @@ -1698,7 +1707,7 @@ msgstr "Text alternatiu descriptiu" #~ msgid "Developer Tools" #~ msgstr "Eines de desenvolupador" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Vols dir alguna cosa?" @@ -1739,7 +1748,7 @@ msgstr "Desactiva la retroalimentaciรณ hร ptica" msgid "Disabled" msgstr "Deshabilitat" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Descarta" @@ -1747,7 +1756,7 @@ msgstr "Descarta" #~ msgid "Discard draft" #~ msgstr "Descarta l'esborrany" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "Vols descartar l'esborrany?" @@ -1756,8 +1765,8 @@ 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Descobreix nous canals personalitzats" @@ -1765,7 +1774,7 @@ msgstr "Descobreix nous canals personalitzats" #~ msgid "Discover new feeds" #~ msgstr "Descobreix nous canals" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Descobreix nous canals" @@ -1805,11 +1814,11 @@ msgstr "Domini verificat!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1896,6 +1905,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1919,8 +1933,9 @@ msgstr "Edita els detalls de la llista" msgid "Edit Moderation List" msgstr "Edita la llista de moderaciรณ" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Edita els meus canals" @@ -1930,19 +1945,19 @@ msgid "Edit my profile" msgstr "Edita el meu perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Edita el perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "Edita el perfil" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "Edita els meus canals guardats" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Edita els meus canals guardats" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1995,8 +2010,8 @@ msgid "Embed HTML code" msgstr "Incrusta el codi HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "Incrusta la publicaciรณ" @@ -2056,7 +2071,7 @@ msgstr "Fi del canal" #~ msgid "End of list" #~ msgstr "Fi de la llista" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Posa un nom a aquesta contrasenya d'aplicaciรณ" @@ -2064,8 +2079,8 @@ msgstr "Posa un nom a aquesta contrasenya d'aplicaciรณ" msgid "Enter a password" msgstr "Introdueix una contrasenya" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Introdueix una lletra o etiqueta" @@ -2127,7 +2142,7 @@ msgid "Error receiving captcha response." msgstr "Error en rebre la resposta al captcha." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Error:" @@ -2219,7 +2234,7 @@ msgstr "Contingut extern" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "El contingut extern pot permetre que algunes webs recullin informaciรณ sobre tu i el teu dispositiu. No s'envia ni es demana cap informaciรณ fins que premis el botรณ \"reproduir\"." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2229,8 +2244,8 @@ msgstr "Preferรจncia del contingut extern" msgid "External media settings" msgstr "Configuraciรณ del contingut extern" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "No s'ha pogut crear la contrasenya d'aplicaciรณ." @@ -2242,7 +2257,7 @@ msgstr "No s'ha pogut crear la llista. Comprova la teva connexiรณ a internet i t msgid "Failed to delete message" msgstr "No s'ha pogut esborrar el missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicaciรณ, torna-ho a provar" @@ -2276,7 +2291,7 @@ msgstr "No s'ha pogut enviar" #~ msgid "Failed to send message(s)." #~ msgstr "Error en enviar missatge(s)." -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: 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." @@ -2286,15 +2301,15 @@ msgstr "No s'ha pogut enviar l'apelยทlaciรณ, torna-ho a provar." msgid "Failed to update settings" msgstr "No s'ha pogut actualitzar la configuraciรณ" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Canal" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Canal per {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Canal fora de lรญnia" @@ -2303,17 +2318,16 @@ msgstr "Canal fora de lรญnia" #~ msgstr "Preferรจncies del canal" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Comentaris" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Canals" @@ -2346,12 +2360,12 @@ msgid "Finalizing" msgstr "Finalitzant" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Troba comptes per a seguir" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Troba publicacions i usuaris a Bluesky" @@ -2398,7 +2412,7 @@ msgstr "Gira verticalment" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2409,7 +2423,7 @@ msgctxt "action" msgid "Follow" msgstr "Segueix" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Segueix {0}" @@ -2439,6 +2453,10 @@ msgstr "Segueix" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "Segueix a alguns usuaris per a comenรงar. Te'n podem recomanar mรฉs basant-nos en els que trobes interessants." +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Seguit per {0}" @@ -2460,22 +2478,31 @@ msgstr "et segueix" msgid "Followers" msgstr "Seguidors" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/view/com/profile/ProfileHeader.tsx:624 #~ msgid "following" #~ msgstr "seguint" #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Seguint" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Seguint {0}" @@ -2487,9 +2514,7 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferรจncies del canal Seguint" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2511,7 +2536,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2562,7 +2587,7 @@ msgstr "Comenรงa" msgid "Get Started" msgstr "Comenรงa" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "Posa una cara al teu perfil" @@ -2590,9 +2615,9 @@ msgstr "Ves enrere" msgid "Go Back" msgstr "Ves enrere" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2612,7 +2637,7 @@ msgstr "Ves a l'inici" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Ves a @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "Ves a la conversa amb {0}" @@ -2645,7 +2670,7 @@ msgstr "Hร ptics" msgid "Harassment, trolling, or intolerance" msgstr "Assetjament, troleig o intolerร ncia" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Etiqueta" @@ -2662,11 +2687,11 @@ msgid "Having trouble?" msgstr "Tens problemes?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un avatar." @@ -2682,7 +2707,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Aquรญ tens la teva contrasenya d'aplicaciรณ." @@ -2693,7 +2718,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Amaga" @@ -2702,8 +2727,8 @@ msgctxt "action" msgid "Hide" msgstr "Amaga" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Amaga l'entrada" @@ -2712,7 +2737,7 @@ msgstr "Amaga l'entrada" msgid "Hide the content" msgstr "Amaga el contingut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" @@ -2724,23 +2749,23 @@ msgstr "Amaga la llista d'usuaris" #~ msgid "Hides posts from {0} in your feed" #~ msgstr "Amaga les publicacions de {0} al teu canal" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "S'ha produรฏt algun error quan s'intentava connectar amb el servidor del canal. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Sembla que el servidor del canal estร  mal configurat. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Sembla que el servidor del canal estร  sense connexiรณ. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "El servidor del canal ha donat una resposta incorrecta. Avisa al propietari del canal d'aquest problema." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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." @@ -2752,11 +2777,11 @@ 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:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Inici" @@ -2822,7 +2847,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "Si esborres aquesta publicaciรณ no la podrร s recuperar." @@ -2875,7 +2900,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Introdueix un nom per la contrasenya d'aplicaciรณ" @@ -2932,7 +2957,7 @@ msgstr "Presentaciรณ dels missatges directes" msgid "Invalid 2FA confirmation code." msgstr "El codi de confirmaciรณ 2FA no รฉs vร lid." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Registre de publicaciรณ no vร lid o no admรจs" @@ -3017,11 +3042,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "Etiquetes al teu compte" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "Etiquetes al teu contingut" @@ -3033,7 +3058,7 @@ msgstr "Tria l'idioma" msgid "Language settings" msgstr "Configuraciรณ d'idioma" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Configuraciรณ d'idioma" @@ -3047,7 +3072,7 @@ msgstr "Idiomes" #~ msgstr "รšltim pas" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "El mรฉs recent" @@ -3138,8 +3163,8 @@ msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Li ha agradat a" @@ -3179,11 +3204,11 @@ msgstr "li ha agradat la teva publicaciรณ" msgid "Likes" msgstr "M'agrades" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "M'agrades a aquesta publicaciรณ" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Llista" @@ -3195,7 +3220,7 @@ msgstr "Avatar de la llista" msgid "List blocked" msgstr "Llista bloquejada" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Llista per {0}" @@ -3219,12 +3244,12 @@ msgstr "Llista desbloquejada" msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Llistes" @@ -3237,7 +3262,7 @@ msgstr "Llistes que bloquegen aquest usuari:" #~ msgid "Load more posts" #~ msgstr "Carrega mรฉs publicacions" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Carrega noves notificacions" @@ -3256,7 +3281,7 @@ msgstr "Carregantโ€ฆ" #~ msgid "Local dev server" #~ msgstr "Servidor de desenvolupament local" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Registre" @@ -3295,7 +3320,7 @@ msgstr "Tรฉ l'aspecte XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "Sembla que no has desat cap canal encara, utilitza els que recomanem o explora'n d'altres aquรญ sota." -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "Sembla que has deixat tots els teus canals sense fixar. No passa res, en pots afegir mรฉs aquรญ sota ๐Ÿ˜„" @@ -3311,7 +3336,7 @@ msgstr "Sembla que et falta el canal del Seguits. <0>Clica aquรญ per a afegir-ne msgid "Make sure this is where you intend to go!" msgstr "Assegura't que รฉs aquรญ on vols anar!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Gestiona les teves etiquetes i paraules silenciades" @@ -3341,8 +3366,8 @@ msgstr "usuaris mencionats" msgid "Mentioned users" msgstr "Usuaris mencionats" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menรบ" @@ -3351,7 +3376,7 @@ msgid "Message {0}" msgstr "Missatge {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "Missatge esborrat" @@ -3359,7 +3384,7 @@ msgstr "Missatge esborrat" #~ msgid "Message from server" #~ msgstr "Missatge del servidor" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Missatge del servidor: {0}" @@ -3376,7 +3401,7 @@ msgstr "El missatge รฉs massa llarg" msgid "Message settings" msgstr "Configuraciรณ dels missatges" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3391,7 +3416,7 @@ msgstr "Missatges" msgid "Misleading Account" msgstr "Compte enganyรณs" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3428,7 +3453,7 @@ msgstr "S'ha actualitzat la llista de moderaciรณ" msgid "Moderation lists" msgstr "Llistes de moderaciรณ" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Llistes de moderaciรณ" @@ -3437,7 +3462,7 @@ msgstr "Llistes de moderaciรณ" msgid "Moderation settings" msgstr "Configuraciรณ de moderaciรณ" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "Estats de moderaciรณ" @@ -3450,7 +3475,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Mรฉs" @@ -3504,11 +3529,11 @@ msgstr "Silencia totes les publicacions {displayTag}" msgid "Mute conversation" msgstr "Silencia la conversa" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Silencia nomรฉs a les etiquetes" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "Silencia a les etiquetes i al text" @@ -3529,21 +3554,21 @@ msgstr "Vols silenciar aquests comptes?" #~ msgid "Mute this List" #~ msgstr "Silencia aquesta llista" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Silencia aquesta paraula en el text de les publicacions i a les etiquetes" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "Silencia aquesta paraula nomรฉs a les etiquetes" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Silencia el fil de debat" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Silencia paraules i etiquetes" @@ -3555,7 +3580,7 @@ msgstr "Silenciada" msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Comptes silenciats" @@ -3581,7 +3606,7 @@ msgstr "Silenciar รฉs privat. Els comptes silenciats poden interactuar amb tu, p msgid "My Birthday" msgstr "El meu aniversari" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Els meus canals" @@ -3601,7 +3626,7 @@ msgstr "Els meus canals desats" #~ msgid "my-server.com" #~ msgstr "el-meu-servidor.com" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nom" @@ -3692,8 +3717,8 @@ msgctxt "action" msgid "New post" msgstr "Nova publicaciรณ" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3767,7 +3792,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/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" @@ -3775,7 +3800,7 @@ msgstr "Ja no segueixes a {0}" msgid "No longer than 253 characters" msgstr "No pot tenir mรฉs de 253 carร cters" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "Encara no tens cap missatge" @@ -3783,7 +3808,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:118 msgid "No notifications yet!" msgstr "Encara no tens cap notificaciรณ" @@ -3794,6 +3819,10 @@ msgstr "Encara no tens cap notificaciรณ" msgid "No one" msgstr "Ningรบ" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3807,13 +3836,13 @@ msgstr "Cap resultat" msgid "No results found" msgstr "No s'han trobat resultats" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "No s'han trobat resultats per {query}" @@ -3852,7 +3881,7 @@ msgstr "Nuesa no sexual" #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "No s'ha trobat" @@ -3863,7 +3892,7 @@ msgid "Not right now" msgstr "Ara mateix no" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -3884,13 +3913,13 @@ msgstr "Sons de les notificacions" msgid "Notification Sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Notificacions" @@ -3944,11 +3973,11 @@ msgstr "Respostes mรฉs antigues primer" msgid "Onboarding reset" msgstr "Restableix la incorporaciรณ" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o mรฉs imatges." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "Nomรฉs s'accepten fitxers .jpg i .png" @@ -3978,7 +4007,7 @@ msgstr "Obre" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "Obre el creador d'avatars" @@ -3986,13 +4015,13 @@ msgstr "Obre el creador d'avatars" #~ msgid "Open content filtering settings" #~ msgstr "Obre la configuraciรณ del filtre de contingut" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "Obre les opcions de les converses" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Obre el selector d'emojis" @@ -4016,11 +4045,11 @@ msgstr "Obre la configuraciรณ de les paraules i etiquetes silenciades" #~ msgid "Open muted words settings" #~ msgstr "Obre la configuraciรณ de les paraules silenciades" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Obre la navegaciรณ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Obre el menรบ de les opcions de publicaciรณ" @@ -4149,8 +4178,8 @@ msgstr "Obre el formulari de restabliment de la contrasenya" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "Obre pantalla per a editar els canals desats" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "Obre pantalla per a editar els canals desats" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -4202,8 +4231,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Opciรณ {0} de {numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Opcionalment, proporciona informaciรณ addicional a continuaciรณ:" @@ -4271,15 +4300,15 @@ msgstr "Contrasenya actualitzada!" msgid "Pause" msgstr "Posa en pausa" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "Gent" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Persones seguint a @{0}" @@ -4362,7 +4391,7 @@ msgstr "Completa el captcha de verificaciรณ." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Confirma el teu correu abans de canviar-lo. Aquest รฉs un requisit temporal mentre no s'afegeixin eines per a actualitzar el correu. Aviat no serร  necessari." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Introdueix un nom per a la contrasenya de la vostra aplicaciรณ. No es permeten tot en espais." @@ -4370,11 +4399,11 @@ 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Introdueix un nom รบnic per aquesta contrasenya d'aplicaciรณ o fes servir un nom generat aleatรฒriament." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Introdueix una paraula, una etiqueta o una frase vร lida per a silenciar" @@ -4394,7 +4423,7 @@ msgstr "Introdueix el teu correu." msgid "Please enter your password as well:" msgstr "Introdueix la teva contrasenya tambรฉ:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 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}" @@ -4419,7 +4448,7 @@ msgstr "Inicia sessiรณ com a @{0}" msgid "Please Verify Your Email" msgstr "Verifica el teu correu" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Espera que es generi la targeta de l'enllaรง" @@ -4435,13 +4464,13 @@ msgstr "Pornografia" #~ msgid "Pornography" #~ msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Publica" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Publicaciรณ" @@ -4452,17 +4481,17 @@ msgstr "Publicaciรณ" #~ msgid "Post" #~ msgstr "Publicaciรณ" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Publicaciรณ per {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Publicaciรณ per @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Publicaciรณ eliminada" @@ -4501,11 +4530,11 @@ msgstr "publicacions" msgid "Posts" msgstr "Publicacions" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "Les publicacions es poder silenciar segons el seu text, etiquetes o ambdues." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Publicacions amagades" @@ -4533,6 +4562,10 @@ msgstr "Prem per a tornar-ho a provar" #~ msgid "Press to Retry" #~ msgstr "Prem per a tornar-ho a provar" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Imatge anterior" @@ -4550,11 +4583,11 @@ msgstr "Prioritza els usuaris que segueixes" msgid "Privacy" msgstr "Privacitat" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Polรญtica de privacitat" @@ -4574,8 +4607,8 @@ msgstr "perfil" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Perfil" @@ -4599,16 +4632,16 @@ 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:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Publica" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Publica la resposta" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4640,7 +4673,7 @@ msgstr "Proporcions" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "Raรณ:" @@ -4648,7 +4681,7 @@ msgstr "Raรณ:" #~ msgid "Reason: {0}" #~ msgstr "Raรณ: {0}" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "Cerques recents" @@ -4668,12 +4701,12 @@ msgstr "Torna a connectar" msgid "Reload conversations" msgstr "Carrega les converses de nou" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Elimina" @@ -4697,25 +4730,25 @@ msgstr "Elimina el bร ner" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Elimina el canal" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "Vols eliminar el canal?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Vols eliminar-lo dels teus canals?" @@ -4727,15 +4760,15 @@ msgstr "Elimina la imatge" msgid "Remove image preview" msgstr "Elimina la visualitzaciรณ prรจvia de la imatge" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Elimina la paraula silenciada de la teva llista" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4743,8 +4776,8 @@ msgstr "" msgid "Remove quote" msgstr "Elimina la citaciรณ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Elimina la republicaciรณ" @@ -4752,7 +4785,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:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "Elimina aquest canal dels meus canals" @@ -4765,7 +4798,7 @@ msgstr "Elimina aquest canal dels meus canals" msgid "Removed from list" msgstr "Elimina de la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Eliminat dels meus canals" @@ -4796,7 +4829,7 @@ msgstr "Respostes" msgid "Replies to this thread are disabled" msgstr "Les respostes a aquest fil de debat estan deshabilitades" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Respon" @@ -4860,8 +4893,8 @@ msgstr "Informa de la llista" msgid "Report message" msgstr "Informa del missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Informa de la publicaciรณ" @@ -4877,8 +4910,8 @@ msgstr "Informa d'aquest canal" msgid "Report this list" msgstr "Informa d'aquesta llista" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "Informa d'aquest missatge" @@ -4891,9 +4924,9 @@ msgstr "Informa d'aquesta publicaciรณ" msgid "Report this user" msgstr "Informa d'aquest usuari" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Republica" @@ -4903,7 +4936,7 @@ msgstr "Republica" msgid "Repost" msgstr "Republica" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4937,7 +4970,7 @@ msgstr "Republicat per <0><1/>" msgid "reposted your post" msgstr "ha republicat la teva publicaciรณ" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Republicacions d'aquesta publicaciรณ" @@ -5056,8 +5089,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/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -5137,20 +5170,20 @@ msgid "Scroll to top" msgstr "Desplaรงa't cap a dalt" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Cerca" @@ -5158,7 +5191,7 @@ msgstr "Cerca" msgid "Search for \"{query}\"" msgstr "Cerca per \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "Cerca per \"{searchText}\"" @@ -5305,7 +5338,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:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "Selecciona els serveis de moderaciรณ als quals voleu informar" @@ -5379,8 +5412,8 @@ msgstr "Envia correu" #~ msgid "Send Email" #~ msgstr "Envia correu" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Envia comentari" @@ -5389,14 +5422,14 @@ msgstr "Envia comentari" msgid "Send message" msgstr "Envia el missatge" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Envia informe" @@ -5413,8 +5446,8 @@ msgstr "Envia informe a {0}" msgid "Send verification email" msgstr "Envia un correu de verificaciรณ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -5545,11 +5578,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:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Configuraciรณ" @@ -5568,8 +5601,8 @@ msgstr "Comparteix" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5584,7 +5617,7 @@ msgid "Share a fun fact!" msgstr "Comparteix una dada divertida!" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Comparteix de totes maneres" @@ -5640,7 +5673,7 @@ msgstr "Mostra la insรญgnia i filtra-ho dels canals" #~ msgid "Show embeds from {0}" #~ msgstr "Mostra els incrustats de {0}" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Mostra seguidors semblants a {0}" @@ -5648,19 +5681,19 @@ msgstr "Mostra seguidors semblants a {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "Mostra'n menys com aquest" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Mostra mรฉs" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "Mostra'n mรฉs com aquest" @@ -5753,9 +5786,9 @@ msgstr "Mostra les publicacions de {0} al teu canal" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5796,9 +5829,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5847,7 +5880,7 @@ msgstr "Desenvolupament de programari" msgid "Some people can reply" msgstr "Algunes persones poden respondre" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Alguna cosa ha fallat" @@ -5891,7 +5924,7 @@ msgstr "Ordena les respostes a la mateixa publicaciรณ per:" #~ msgid "Source:" #~ msgstr "Font:" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "Font: <0>{0}" @@ -5952,13 +5985,13 @@ msgstr "Pas {0} de {1}" 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:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Historial" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5989,7 +6022,7 @@ msgstr "Subscriu-te a aquest etiquetador" msgid "Subscribe to this list" msgstr "Subscriure's a la llista" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Usuaris suggerits per a seguir" @@ -6001,7 +6034,7 @@ msgstr "Suggeriments per tu" msgid "Suggestive" msgstr "Suggerent" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6032,7 +6065,7 @@ msgstr "Sistema" msgid "System log" msgstr "Registres del sistema" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "etiqueta" @@ -6064,11 +6097,11 @@ msgstr "Explica un acudit!" msgid "Terms" msgstr "Condicions" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Condicions del servei" @@ -6078,17 +6111,17 @@ msgstr "Condicions del servei" msgid "Terms used violate community standards" msgstr "Els termes utilitzats infringeixen els estร ndards de la comunitat" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "text" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Camp d'introducciรณ de text" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Grร cies. El teu informe s'ha enviat." @@ -6100,7 +6133,7 @@ msgstr "Aixรฒ contรฉ els segรผents:" msgid "That handle is already taken." msgstr "Aquest identificador ja estร  agafat." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "El compte podrร  interactuar amb tu desprรฉs del desbloqueig." @@ -6121,11 +6154,11 @@ msgstr "La polรญtica de drets d'autoria ha estat traslladada a <0/>" msgid "The feed has been replaced with Discover." msgstr "S'ha canviat el canal per Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 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:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "Les segรผents etiquetes s'han aplicat als teus continguts." @@ -6167,7 +6200,7 @@ msgstr "" 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Hi ha hagut un problema per a eliminar aquest canal, comprova la teva connexiรณ a internet i torna-ho a provar." @@ -6195,12 +6228,12 @@ msgstr "Hi ha hagut un problema per a connectar amb Tenor." msgid "There was an issue contacting the server" msgstr "Hi ha hagut un problema per a contactar amb el servidor" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 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." @@ -6217,8 +6250,8 @@ msgstr "Hi ha hagut un problema en obtenir la llista. Toca aquรญ per a tornar-ho 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 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." @@ -6230,9 +6263,9 @@ msgstr "S'ha produรฏt un problema en enviar el teu informe. Comprova la teva con msgid "There was an issue with fetching your app passwords" msgstr "Hi ha hagut un problema en obtenir les teves contrasenyes d'aplicaciรณ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -6284,7 +6317,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "Aquesta apelยทlaciรณ s'enviarร  a <0>{0}." @@ -6317,10 +6350,14 @@ msgstr "Aquest contingut estร  allotjat a {0}. Vols habilitat els continguts ext msgid "This content is not available because one of the users involved has blocked the other." msgstr "Aquest contingut no estร  disponible per culpa de que un dels usuaris involucrats ha bloquejat a l'altre." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Aquest contingut no es pot veure sense un compte de Bluesky." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:75 #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "Aquesta funcionalitat estร  en beta. En <0>aquesta entrada al blog tens mรฉs informaciรณ." @@ -6329,20 +6366,25 @@ msgstr "Aquest contingut no es pot veure sense un compte de Bluesky." msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Aquesta funciรณ estร  en versiรณ beta. Podeu obtenir mรฉs informaciรณ sobre les exportacions de repositoris en <0>aquesta entrada de bloc." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Aquest canal estร  rebent moltes visites actualment i estร  temporalment inactiu. Prova-ho mรฉs tard." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Aquest canal estร  buit!" +#~ msgid "This feed is empty!" +#~ msgstr "Aquest canal estร  buit!" #: 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 "Aquest canal estร  buit! Necessites seguir mรฉs usuaris o modificar la teva configuraciรณ d'idiomes." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 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." @@ -6375,7 +6417,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:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "Aquesta etiqueta ha estat aplicada per tu." @@ -6395,20 +6437,20 @@ msgstr "Aquesta llista estร  buida!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Aquest servei de moderaciรณ no estร  disponible. Mira a continuaciรณ per a obtenir mรฉs detalls. Si aquest problema persisteix, posa't en contacte amb nosaltres." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Aquest nom ja estร  en รบs" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Aquesta publicaciรณ ha estat esborrada." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "Aquesta publicaciรณ no es mostrarร  als canals." @@ -6469,7 +6511,7 @@ msgstr "Aquest usuari no segueix a ningรบ." #~ msgid "This warning is only available for posts with media attached." #~ msgstr "Aquesta advertรจncia nomรฉs estร  disponible per publicacions amb contingut adjuntat." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Aixรฒ suprimirร  {0} de les teves paraules silenciades. Sempre la pots tornar a afegir mรฉs tard." @@ -6490,7 +6532,7 @@ msgstr "Preferรจncies dels fils de debat" msgid "Threaded Mode" msgstr "Mode fils de debat" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Preferรจncies dels fils de debat" @@ -6506,7 +6548,7 @@ msgstr "Per informar d'una conversa, informa d'un dels seus missatges a travรฉs msgid "To whom would you like to send this report?" msgstr "A qui vols enviar aquest informe?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Commuta entre les opcions de paraules silenciades." @@ -6519,7 +6561,7 @@ msgid "Toggle to enable or disable adult content" msgstr "Commuta per a habilitar o deshabilitar el contingut per a adults" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "Superior" @@ -6529,10 +6571,10 @@ msgstr "Transformacions" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Tradueix" @@ -6578,14 +6620,14 @@ msgstr "No es pot contactar amb el teu servei. Comprova la teva connexiรณ a inte #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Desbloqueja" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Desbloqueja" @@ -6600,12 +6642,12 @@ msgstr "Desbloqueja el compte" msgid "Unblock Account" msgstr "Desbloqueja el compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "Vols desbloquejar el compte?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -6620,7 +6662,7 @@ msgstr "Deixa de seguir" msgid "Unfollow" msgstr "Deixa de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" @@ -6671,8 +6713,8 @@ msgstr "Deixa de silenciar la conversa" #~ msgid "Unmute notifications" #~ msgstr "Deixa de silenciar les notificacions" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" @@ -6730,7 +6772,7 @@ msgstr "Actualitza a {handle}" msgid "Updating..." msgstr "Actualitzantโ€ฆ" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "Enlloc d'aixรฒ, penja una foto" @@ -6791,7 +6833,7 @@ msgstr "Utilitza els recomanats" msgid "Use the DNS panel" msgstr "Utilitza el panell de DNS" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -6970,11 +7012,11 @@ msgstr "Mostra informaciรณ sobre aquestes etiquetes" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Veure el perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Veure l'avatar" @@ -6986,6 +7028,11 @@ msgstr "Veure el servei d'etiquetatge proporcionat per @{0}" msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -7013,7 +7060,7 @@ msgstr "Adverteix del contingut i filtra-ho dels canals" msgid "We couldn't find any results for that hashtag." msgstr "No hem trobat cap resultat per a aquest hashtag." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "No hem pogut carregar aquesta conversa" @@ -7029,7 +7076,7 @@ msgstr "Esperem que t'ho passis pipa. Recorda que Bluesky รฉs:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Ja no hi ha mรฉs publicacions dels usuaris que segueixes. Aquรญ n'hi ha altres de <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Recomanem evitar les paraules habituals que apareixen en moltes publicacions, ja que pot provocar que no es mostri cap publicaciรณ." @@ -7073,14 +7120,18 @@ msgstr "Ens fa molta ilยทlusiรณ que t'uneixis a nosaltres!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Ho sentim, perรฒ no hem pogut resoldre aquesta llista. Si aixรฒ continua, posa't en contacte amb el creador de la llista, @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ho sentim, perรฒ no hem pogut carregar les teves paraules silenciades en aquest moment. Torna-ho a provar." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -7111,7 +7162,7 @@ msgstr "Quins sรณn els teus interessos?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Quรจ hi ha de nou" @@ -7132,7 +7183,7 @@ msgstr "Qui et pot enviar missatges?" msgid "Who can reply" msgstr "Qui hi pot respondre" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "Vaja!" @@ -7170,11 +7221,11 @@ msgstr "Amplada" msgid "Write a message" msgstr "Escriu un missatge" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Escriu una publicaciรณ" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Escriu la teva resposta" @@ -7218,8 +7269,8 @@ msgstr "Estร s a la cua." msgid "You are not following anyone." msgstr "No segueixes a ningรบ." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Tambรฉ pots descobrir nous canals personalitzats per a seguir." @@ -7256,6 +7307,10 @@ msgstr "" msgid "You do not have any followers." msgstr "No tens cap seguidor." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Encara no tens codis d'invitaciรณ! Te n'enviarem quan portis una mica mรฉs de temps a Bluesky." @@ -7355,15 +7410,15 @@ 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/dialogs/MutedWords.tsx:250 +#: 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" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 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:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 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." @@ -7379,7 +7434,7 @@ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "Has d'escollir almenys un etiquetador per a un informe" @@ -7387,11 +7442,11 @@ msgstr "Has d'escollir almenys un etiquetador per a un informe" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Ja no rebrร s mรฉs notificacions d'aquest debat" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Ara rebrร s notificacions d'aquest debat" @@ -7399,15 +7454,15 @@ msgstr "Ara rebrร s notificacions d'aquest debat" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Rebrร s un correu amb un \"codi de restabliment\". Introdueix aquรญ el codi i desprรฉs la teva contrasenya nova." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "Tu: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -7435,7 +7490,7 @@ msgstr "Ja estร  tot llest!" msgid "You've chosen to hide a word or tag within this post." msgstr "Has triat amagar una paraula o una etiqueta d'aquesta publicaciรณ." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -7485,7 +7540,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -7507,7 +7562,7 @@ msgstr "El teu identificador complet serร  <0>@{0}" #~ msgid "Your invite codes are hidden when logged in using an App Password" #~ msgstr "Els teus codis d'invitaciรณ no es mostren quan has iniciat sessiรณ amb una contrasenya d'aplicaciรณ" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Les teves paraules silenciades" @@ -7515,7 +7570,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "S'ha publicat" @@ -7531,11 +7586,11 @@ 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 "" -#: src/view/com/composer/Composer.tsx:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "S'ha publicat la teva resposta" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "El teu informe s'enviarร  al servei de moderaciรณ de Bluesky" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index 4ba96a35e9..6207ff62d9 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: Translators in PR 2319, PythooonUser, cdfzo\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -41,10 +41,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -59,11 +63,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -75,7 +79,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} ungelesen" @@ -183,12 +187,12 @@ msgstr "" #~ 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." -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Zugriff auf Navigationslinks und Einstellungen" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Zugang zum Profil und anderen Navigationslinks" @@ -201,7 +205,7 @@ msgstr "Barrierefreiheit" msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "" @@ -245,7 +249,7 @@ msgstr "Kontoeinstellungen" msgid "Account removed from quick access" msgstr "Konto aus dem Schnellzugriff entfernt" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Konto entblockiert" @@ -258,7 +262,7 @@ msgstr "Konto entfolgt" msgid "Account unmuted" msgstr "Stummschaltung fรผr Konto aufgehoben" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -280,9 +284,9 @@ msgstr "Einen Nutzer zu dieser Liste hinzufรผgen" msgid "Add account" msgstr "Konto hinzufรผgen" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -316,15 +320,15 @@ msgstr "App-Passwort hinzufรผgen" #~ msgid "Add link card:" #~ msgstr "Link-Karte hinzufรผgen:" -#: src/components/dialogs/MutedWords.tsx:158 +#: 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:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Fรผge stummgeschaltete Wรถrter und Tags hinzu" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" @@ -341,7 +345,7 @@ msgstr "Fรผge den folgenden DNS-Eintrag zu deiner Domain hinzu:" msgid "Add to Lists" msgstr "Zu Listen hinzufรผgen" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Zu meinen Feeds hinzufรผgen" @@ -354,7 +358,7 @@ msgstr "Zu meinen Feeds hinzufรผgen" msgid "Added to list" msgstr "Zur Liste hinzugefรผgt" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Zu meinen Feeds hinzugefรผgt" @@ -380,12 +384,12 @@ msgstr "" msgid "Advanced" msgstr "Erweitert" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -408,13 +412,13 @@ msgstr "Hast du bereits einen Code?" msgid "Already signed in as @{0}" msgstr "Bereits angemeldet als @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -462,6 +466,7 @@ msgstr "Es ist ein Problem aufgetreten, bitte versuche es erneut." msgid "an unknown error occurred" msgstr "" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -487,11 +492,11 @@ msgstr "App-Sprache" msgid "App password deleted" msgstr "App-Passwort gelรถscht" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "App-Passwortnamen dรผrfen nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche enthalten." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "App-Passwortnamen mรผssen mindestens 4 Zeichen lang sein." @@ -499,18 +504,18 @@ msgstr "App-Passwortnamen mรผssen mindestens 4 Zeichen lang sein." msgid "App password settings" msgstr "App-Passwort-Einstellungen" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "App-Passwรถrter" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Kennzeichnung \"{0}\" anfechten" @@ -523,7 +528,7 @@ msgstr "Kennzeichnung \"{0}\" anfechten" #~ msgid "Appeal Content Warning" #~ msgstr "Inhaltswarnungseinspruch" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -548,7 +553,7 @@ msgid "Appearance" msgstr "Erscheinungsbild" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "" @@ -572,15 +577,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 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/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "Bist du sicher, dass du diesen Entwurf verwerfen mรถchtest?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Bist du sicher?" @@ -605,8 +610,8 @@ msgid "At least 3 characters" msgstr "Mindestens 3 Zeichen" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -619,7 +624,7 @@ msgstr "Mindestens 3 Zeichen" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Zurรผck" @@ -644,7 +649,7 @@ msgstr "Geburtstag" msgid "Birthday:" msgstr "Geburtstag:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Blockieren" @@ -688,7 +693,7 @@ msgstr "Blockiert" msgid "Blocked accounts" msgstr "Blockierte Konten" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Blockierte Konten" @@ -761,8 +766,8 @@ msgstr "Bilder verwischen und aus Feeds herausfiltern" msgid "Books" msgstr "Bรผcher" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "" @@ -774,7 +779,7 @@ msgstr "" msgid "Business" msgstr "Business" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "von โ€”" @@ -790,7 +795,7 @@ msgstr "Von {0}" #~ msgid "by @{0}" #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "von <0/>" @@ -798,7 +803,7 @@ msgstr "von <0/>" msgid "By creating an account you agree to the {els}." msgstr "Mit dem Erstellen des Kontos akzeptierst du die {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "von dir" @@ -806,7 +811,7 @@ msgstr "von dir" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche enthalten. Muss mindestens 4 Zeichen lang sein, darf aber nicht lรคnger als 32 Zeichen sein." @@ -815,8 +820,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -832,8 +837,8 @@ msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Abbrechen" @@ -862,7 +867,7 @@ msgstr "Bildbeschneidung abbrechen" msgid "Cancel profile editing" msgstr "Profilbearbeitung abbrechen" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Beitrag zitieren abbrechen" @@ -922,7 +927,7 @@ msgstr "Beitragssprache in {0} รคndern" msgid "Change Your Email" msgstr "Deine E-Mail รคndern" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -934,7 +939,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -1024,7 +1029,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Alle Speicherdaten lรถschen (danach neu starten)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Suchanfrage lรถschen" @@ -1132,7 +1137,7 @@ msgstr "SchlieรŸt die untere Navigationsleiste" msgid "Closes password update alert" msgstr "SchlieรŸt die Kennwortaktualisierungsmeldung" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "SchlieรŸt den Beitragsverfasser und verwirft den Beitragsentwurf" @@ -1156,7 +1161,7 @@ msgstr "Komรถdie" msgid "Comics" msgstr "Comics" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Community-Richtlinien" @@ -1169,7 +1174,7 @@ msgstr "SchlieรŸe das Onboarding ab und nutze dein Konto" msgid "Complete the challenge" msgstr "Beende die Herausforderung" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 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" @@ -1296,7 +1301,7 @@ 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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Fortfahren" @@ -1304,8 +1309,12 @@ msgstr "Fortfahren" msgid "Continue as {0} (currently signed in)" msgstr "Fortfahren mit {0} (aktuell angemeldet)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Weiter zum nรคchsten Schritt" @@ -1318,7 +1327,7 @@ msgstr "Weiter zum nรคchsten Schritt" #~ 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:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1326,7 +1335,7 @@ msgstr "" msgid "Cooking" msgstr "Kochen" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Kopiert" @@ -1336,10 +1345,10 @@ msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "In die Zwischenablage kopiert" @@ -1347,11 +1356,11 @@ msgstr "In die Zwischenablage kopiert" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Kopiert das App-Passwort" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Kopieren" @@ -1368,8 +1377,8 @@ msgstr "" msgid "Copy link to list" msgstr "Link zur Liste kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Link zum Beitrag kopieren" @@ -1382,12 +1391,12 @@ msgstr "Link zum Beitrag kopieren" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Beitragstext kopieren" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Urheberrechtsbestimmungen" @@ -1434,11 +1443,11 @@ msgstr "Konto erstellen" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "App-Passwort erstellen" @@ -1480,7 +1489,7 @@ msgstr "Benutzerdefiniert" msgid "Custom domain" msgstr "Benutzerdefinierte Domain" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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." @@ -1523,7 +1532,7 @@ msgid "Debug panel" msgstr "Debug-Panel" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1578,8 +1587,8 @@ msgstr "Mein Konto lรถschen" msgid "Delete My Accountโ€ฆ" msgstr "Mein Konto Lรถschenโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Beitrag lรถschen" @@ -1587,7 +1596,7 @@ msgstr "Beitrag lรถschen" msgid "Delete this list?" msgstr "Diese Liste lรถschen?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Diesen Beitrag lรถschen?" @@ -1610,11 +1619,11 @@ msgstr "" msgid "Description" msgstr "Beschreibung" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Wolltest du etwas sagen?" @@ -1655,7 +1664,7 @@ msgstr "" msgid "Disabled" msgstr "Deaktiviert" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Verwerfen" @@ -1663,7 +1672,7 @@ msgstr "Verwerfen" #~ msgid "Discard draft" #~ msgstr "Entwurf verwerfen" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "Entwurf lรถschen?" @@ -1672,12 +1681,12 @@ 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Entdecke neue benutzerdefinierte Feeds" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Entdecke neue Feeds" @@ -1713,11 +1722,11 @@ msgstr "Domain verifiziert!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1804,6 +1813,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1827,8 +1841,9 @@ msgstr "Details der Liste bearbeiten" msgid "Edit Moderation List" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" @@ -1838,19 +1853,19 @@ msgid "Edit my profile" msgstr "Mein Profil bearbeiten" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Profil bearbeiten" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 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" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Gespeicherte Feeds bearbeiten" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1903,8 +1918,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "" @@ -1964,7 +1979,7 @@ msgstr "Ende des Feeds" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: 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" @@ -1972,8 +1987,8 @@ msgstr "Gebe einen Namen fรผr dieses App-Passwort ein" msgid "Enter a password" msgstr "Gib ein Passwort ein" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Gib ein Wort oder einen Tag ein" @@ -2023,7 +2038,7 @@ msgid "Error receiving captcha response." msgstr "Fehler beim Empfang der Captcha-Antwort." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Fehler:" @@ -2111,7 +2126,7 @@ msgstr "Externe Medien" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe Medien kรถnnen es Websites ermรถglichen, Informationen รผber dich und dein Gerรคt zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltflรคche \"Abspielen\" drรผckst." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2121,8 +2136,8 @@ msgstr "Externe Medienprรคferenzen" msgid "External media settings" msgstr "Externe Medienprรคferenzen" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Das App-Passwort konnte nicht erstellt werden." @@ -2134,7 +2149,7 @@ msgstr "Die Liste konnte nicht erstellt werden. รœberprรผfe deine Internetverbin msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "Beitrag konnte nicht gelรถscht werden, bitte versuche es erneut" @@ -2168,7 +2183,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -2178,30 +2193,29 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed von {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Feed offline" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Feeds" @@ -2234,12 +2248,12 @@ msgid "Finalizing" msgstr "AbschlieรŸen" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Konten zum Folgen finden" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "" @@ -2282,7 +2296,7 @@ msgstr "Vertikal drehen" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2293,7 +2307,7 @@ msgctxt "action" msgid "Follow" msgstr "Folgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "{0} folgen" @@ -2323,6 +2337,10 @@ msgstr "Zurรผckfolgen" #~ 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 "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Gefolgt von {0}" @@ -2344,18 +2362,27 @@ msgstr "folgte dir" msgid "Followers" msgstr "Follower" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Folge ich" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "ich folge {0}" @@ -2367,9 +2394,7 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2391,7 +2416,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2442,7 +2467,7 @@ msgstr "" msgid "Get Started" msgstr "Los geht's" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "" @@ -2470,9 +2495,9 @@ msgstr "Gehe zurรผck" msgid "Go Back" msgstr "Gehe zurรผck" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2492,7 +2517,7 @@ msgstr "" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Gehe zu @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2525,7 +2550,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Hashtag" @@ -2538,11 +2563,11 @@ msgid "Having trouble?" msgstr "Hast du Probleme?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Hilfe" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2558,7 +2583,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Hier ist dein App-Passwort." @@ -2569,7 +2594,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Ausblenden" @@ -2578,8 +2603,8 @@ msgctxt "action" msgid "Hide" msgstr "Ausblenden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Beitrag ausblenden" @@ -2588,7 +2613,7 @@ msgstr "Beitrag ausblenden" msgid "Hide the content" msgstr "Den Inhalt ausblenden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Diesen Beitrag ausblenden?" @@ -2600,23 +2625,23 @@ msgstr "Benutzerliste ausblenden" #~ msgid "Hides posts from {0} in your feed" #~ msgstr "Blendet Beitrรคge von {0} in Deinem Feed aus" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, beim Kontakt mit dem Feed-Server ist ein Problem aufgetreten. Bitte informiere den Eigentรผmer des Feeds รผber dieses Problem." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, der Feed-Server scheint falsch konfiguriert zu sein. Bitte informiere den Eigentรผmer des Feeds รผber dieses Problem." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, der Feed-Server scheint offline zu sein. Bitte informiere den Eigentรผmer des Feeds รผber dieses Problem." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informiere den Eigentรผmer des Feeds รผber dieses Problem." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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." @@ -2628,11 +2653,11 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Home" @@ -2686,7 +2711,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 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." @@ -2739,7 +2764,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Namen fรผr das App-Passwort eingeben" @@ -2784,7 +2809,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Ungรผltiger oder nicht unterstรผtzter Beitragrekord" @@ -2848,11 +2873,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "" @@ -2864,7 +2889,7 @@ msgstr "Sprachauswahl" msgid "Language settings" msgstr "Spracheinstellungen" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Spracheinstellungen" @@ -2878,7 +2903,7 @@ msgstr "Sprachen" #~ msgstr "Letzter Schritt!" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "" @@ -2969,8 +2994,8 @@ msgid "Like this feed" msgstr "Diesen Feed liken" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Geliked von" @@ -3006,11 +3031,11 @@ msgstr "hat deinen Beitrag geliked" msgid "Likes" msgstr "Likes" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Likes fรผr diesen Beitrag" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Liste" @@ -3022,7 +3047,7 @@ msgstr "Listenbild" msgid "List blocked" msgstr "Liste blockiert" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Liste von {0}" @@ -3046,12 +3071,12 @@ msgstr "Liste entblockiert" msgid "List unmuted" msgstr "Listenstummschaltung aufgehoben" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Listen" @@ -3064,7 +3089,7 @@ msgstr "" #~ msgid "Load more posts" #~ msgstr "Mehr Beitrรคge laden" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Neue Mitteilungen laden" @@ -3079,7 +3104,7 @@ msgstr "Neue Beitrรคge laden" msgid "Loading..." msgstr "Wird geladen..." -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Systemprotokoll" @@ -3115,7 +3140,7 @@ msgstr "Im Format XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "" @@ -3131,7 +3156,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "Vergewissere dich, dass du auch wirklich dorthin gehen willst!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Verwalte deine stummgeschalteten Wรถrter und Tags" @@ -3161,8 +3186,8 @@ msgstr "erwรคhnte Benutzer" msgid "Mentioned users" msgstr "Erwรคhnte Benutzer" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menรผ" @@ -3171,11 +3196,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Nachricht vom Server: {0}" @@ -3192,7 +3217,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3207,7 +3232,7 @@ msgstr "" msgid "Misleading Account" msgstr "Irrefรผhrender Account" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3244,7 +3269,7 @@ msgstr "Moderationsliste aktualisiert" msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderationslisten" @@ -3253,7 +3278,7 @@ msgstr "Moderationslisten" msgid "Moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "" @@ -3266,7 +3291,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Mehr" @@ -3312,11 +3337,11 @@ msgstr "Alle {displayTag}-Beitrรคge stummschalten" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Nur in Tags stummschalten" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "In Text und Tags stummschalten" @@ -3337,21 +3362,21 @@ msgstr "Diese Konten stummschalten?" #~ msgid "Mute this List" #~ msgstr "Diese Liste stummschalten" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Dieses Wort in Beitragstexten und Tags stummschalten" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "Dieses Wort nur in Tags stummschalten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Thread stummschalten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Wรถrter und Tags stummschalten" @@ -3363,7 +3388,7 @@ msgstr "Stummgeschaltet" msgid "Muted accounts" msgstr "Stummgeschaltete Konten" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Stummgeschaltete Konten" @@ -3389,7 +3414,7 @@ msgstr "Stummschaltung ist privat. Stummgeschaltete Konten kรถnnen mit dir inter msgid "My Birthday" msgstr "Mein Geburtstag" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Meine Feeds" @@ -3409,7 +3434,7 @@ msgstr "Meine gespeicherten Feeds" #~ msgid "my-server.com" #~ msgstr "mein-server.de" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Name" @@ -3500,8 +3525,8 @@ msgctxt "action" msgid "New post" msgstr "Neuer Beitrag" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3571,7 +3596,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "{0} wird nicht mehr gefolgt" @@ -3579,7 +3604,7 @@ msgstr "{0} wird nicht mehr gefolgt" msgid "No longer than 253 characters" msgstr "Nicht lรคnger als 253 Zeichen" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "" @@ -3587,7 +3612,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "Noch keine Mitteilungen!" @@ -3598,6 +3623,10 @@ msgstr "Noch keine Mitteilungen!" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3611,13 +3640,13 @@ msgstr "" msgid "No results found" msgstr "Keine Ergebnisse gefunden" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse fรผr \"{query}\" gefunden" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "Keine Ergebnisse fรผr {query} gefunden" @@ -3656,7 +3685,7 @@ msgstr "Nicht-sexuelle Nacktheit" #~ msgid "Not Applicable." #~ msgstr "Unzutreffend." -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Nicht gefunden" @@ -3667,7 +3696,7 @@ msgid "Not right now" msgstr "Im Moment nicht" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "" @@ -3688,13 +3717,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Mitteilungen" @@ -3748,11 +3777,11 @@ msgstr "ร„lteste Antworten zuerst" msgid "Onboarding reset" msgstr "Onboarding zurรผcksetzen" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "" @@ -3782,7 +3811,7 @@ msgstr "ร–ffnen" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "" @@ -3790,13 +3819,13 @@ msgstr "" #~ msgid "Open content filtering settings" #~ msgstr "Inhaltsfiltereinstellungen รถffnen" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Emoji-Picker รถffnen" @@ -3820,11 +3849,11 @@ msgstr "Einstellungen fรผr stummgeschaltete Wรถrter und Tags รถffnen" #~ msgid "Open muted words settings" #~ msgstr "Einstellungen fรผr stummgeschaltete Wรถrter รถffnen" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Navigation รถffnen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Beitragsoptionsmenรผ รถffnen" @@ -3949,8 +3978,8 @@ msgstr "ร–ffnet das Formular zum Zurรผcksetzen des Passworts" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "ร–ffnet den Bildschirm zum Bearbeiten gespeicherten Feeds" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "ร–ffnet den Bildschirm zum Bearbeiten gespeicherten Feeds" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -4002,8 +4031,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Option {0} von {numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "" @@ -4067,15 +4096,15 @@ msgstr "Passwort aktualisiert!" msgid "Pause" msgstr "" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" @@ -4154,15 +4183,15 @@ msgstr "Bitte fรผlle das Verifizierungs-Captcha aus." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Bitte bestรคtige deine E-Mail, bevor du sie รคnderst. Dies ist eine vorรผbergehende Anforderung, wรคhrend E-Mail-Aktualisierungstools hinzugefรผgt werden, und wird bald wieder entfernt." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Bitte gib einen eindeutigen Namen fรผr dieses App-Passwort ein oder verwende unseren zufรคllig generierten Namen." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 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" @@ -4174,7 +4203,7 @@ msgstr "Bitte gib deine E-Mail ein." msgid "Please enter your password as well:" msgstr "Bitte gib auch dein Passwort ein:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4196,7 +4225,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "Bitte verifiziere deine E-Mail" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Bitte warte, bis deine Link-karte vollstรคndig geladen ist" @@ -4212,28 +4241,28 @@ msgstr "Porno" #~ msgid "Pornography" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Beitrag" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Beitrag" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Beitrag von {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Beitrag von @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Beitrag gelรถscht" @@ -4272,11 +4301,11 @@ msgstr "Beitrรคge" msgid "Posts" msgstr "Beitrรคge" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "Beitrรคge kรถnnen basierend auf ihrem Text, ihren Tags oder beidem stummgeschaltet werden." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Ausgeblendete Beitrรคge" @@ -4304,6 +4333,10 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Vorheriges Bild" @@ -4321,11 +4354,11 @@ msgstr "Priorisiere deine Follower" msgid "Privacy" msgstr "Privatsphรคre" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Datenschutzerklรคrung" @@ -4345,8 +4378,8 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Profil" @@ -4370,16 +4403,16 @@ msgstr "ร–ffentliche, gemeinsam nutzbare Listen von Nutzern, die du stummschalte msgid "Public, shareable lists which can drive feeds." msgstr "ร–ffentliche, gemeinsam nutzbare Listen, die Feeds steuern kรถnnen." -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Beitrag verรถffentlichen" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Antwort verรถffentlichen" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4407,7 +4440,7 @@ msgstr "Verhรคltnisse" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4415,7 +4448,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "" @@ -4435,12 +4468,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Entfernen" @@ -4464,25 +4497,25 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Feed entfernen" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4494,15 +4527,15 @@ msgstr "Bild entfernen" msgid "Remove image preview" msgstr "Bildvorschau entfernen" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Stummgeschaltetes Wort aus deiner Liste entfernen" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4510,8 +4543,8 @@ msgstr "" msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Repost entfernen" @@ -4519,7 +4552,7 @@ msgstr "Repost entfernen" #~ msgid "Remove this feed from my feeds?" #~ msgstr "Diesen Feed aus meinen Feeds entfernen?" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "" @@ -4532,7 +4565,7 @@ msgstr "" msgid "Removed from list" msgstr "Aus der Liste entfernt" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Aus meinen Feeds entfernt" @@ -4563,7 +4596,7 @@ msgstr "Antworten" msgid "Replies to this thread are disabled" msgstr "Antworten auf diesen Thread sind deaktiviert" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Antworten" @@ -4627,8 +4660,8 @@ msgstr "Liste melden" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Beitrag melden" @@ -4644,8 +4677,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "" @@ -4658,9 +4691,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Repost" @@ -4670,7 +4703,7 @@ msgstr "Repost" msgid "Repost" msgstr "Erneut verรถffentlichen" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4696,7 +4729,7 @@ msgstr "" msgid "reposted your post" msgstr "hat deinen Beitrag repostet" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Reposts von diesem Beitrag" @@ -4807,8 +4840,8 @@ msgid "Returns to previous page" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4888,20 +4921,20 @@ msgid "Scroll to top" msgstr "Zum Anfang blรคttern" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Suche" @@ -4909,7 +4942,7 @@ msgstr "Suche" msgid "Search for \"{query}\"" msgstr "Suche nach \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "" @@ -5036,7 +5069,7 @@ msgstr "Wรคhle Option {i} von {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5102,8 +5135,8 @@ msgctxt "action" msgid "Send Email" msgstr "E-Mail senden" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Feedback senden" @@ -5112,14 +5145,14 @@ msgstr "Feedback senden" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "" @@ -5136,8 +5169,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -5264,11 +5297,11 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Setzt den Server fรผr den Bluesky-Client" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Einstellungen" @@ -5287,8 +5320,8 @@ msgstr "Teilen" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5303,7 +5336,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "" @@ -5359,7 +5392,7 @@ msgstr "" #~ msgid "Show embeds from {0}" #~ msgstr "Eingebettete Medien von {0} anzeigen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Zeige รคhnliche Konten wie {0}" @@ -5367,19 +5400,19 @@ msgstr "Zeige รคhnliche Konten wie {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Mehr anzeigen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -5472,9 +5505,9 @@ msgstr "Zeigt Beitrรคge von {0} in deinem Feed" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5515,9 +5548,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5562,7 +5595,7 @@ msgstr "Software-Entwicklung" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "" @@ -5598,7 +5631,7 @@ msgstr "Antworten auf denselben Beitrag sortieren nach:" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5655,13 +5688,13 @@ msgstr "" 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:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Geschichtenbuch" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5692,7 +5725,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Abonniere diese Liste" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Vorgeschlagene Follower" @@ -5704,7 +5737,7 @@ msgstr "Vorgeschlagen fรผr dich" msgid "Suggestive" msgstr "Suggestiv" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5731,7 +5764,7 @@ msgstr "System" msgid "System log" msgstr "Systemprotokoll" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "Tag" @@ -5759,11 +5792,11 @@ msgstr "" msgid "Terms" msgstr "Bedingungen" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Nutzungsbedingungen" @@ -5773,17 +5806,17 @@ msgstr "Nutzungsbedingungen" msgid "Terms used violate community standards" msgstr "" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "Text" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Text-Eingabefeld" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "" @@ -5795,7 +5828,7 @@ msgstr "" msgid "That handle is already taken." msgstr "Dieser Handle ist bereits besetzt." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "Das Konto kann nach der Entblockiert mit dir interagieren." @@ -5816,11 +5849,11 @@ msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben" msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "" @@ -5858,7 +5891,7 @@ msgstr "" 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Es gab ein Problem beim Entfernen dieses Feeds. Bitte รผberprรผfe deine Internetverbindung und versuche es erneut." @@ -5886,12 +5919,12 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 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." @@ -5908,8 +5941,8 @@ msgstr "Es gab ein Problem beim Abrufen der Liste. Tippe hier, um es erneut zu v 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -5921,9 +5954,9 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "Es gab ein Problem beim Abrufen deiner App-Passwรถrter" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5968,7 +6001,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6001,10 +6034,14 @@ msgstr "Dieser Inhalt wird von {0} gehostet. Mรถchtest du externe Medien aktivie 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." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Dieser Inhalt ist ohne ein Bluesky-Konto nicht sichtbar." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:75 #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "Diese Funktion befindet sich in der Beta-Phase. Du kannst mehr รผber Kontodepot-Exporte in <0>diesem Blogpost lesen." @@ -6013,20 +6050,25 @@ msgstr "Dieser Inhalt ist ohne ein Bluesky-Konto nicht sichtbar." msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Dieser Feed wird derzeit stark frequentiert und ist vorรผbergehend nicht verfรผgbar. Bitte versuche es spรคter erneut." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Dieser Feed ist leer!" +#~ msgid "This feed is empty!" +#~ msgstr "Dieser Feed ist leer!" #: 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 "Dieser Feed ist leer! Mรถglicherweise musst du mehr Benutzern folgen oder deine Spracheinstellungen anpassen." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6055,7 +6097,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -6075,20 +6117,20 @@ msgstr "Diese Liste ist leer!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Dieser Name ist bereits in Gebrauch" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Dieser Beitrag wurde gelรถscht." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "" @@ -6145,7 +6187,7 @@ msgstr "" #~ msgid "This warning is only available for posts with media attached." #~ msgstr "Diese Warnung ist nur fรผr Beitrรคge mit angehรคngten Medien verfรผgbar." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Dies wird {0} aus deinen stummgeschalteten Wรถrtern lรถschen. Du kannst es spรคter jederzeit wieder hinzufรผgen." @@ -6166,7 +6208,7 @@ msgstr "Thread-Einstellungen" msgid "Threaded Mode" msgstr "Gewindemodus" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Thread-Einstellungen" @@ -6182,7 +6224,7 @@ msgstr "" msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Zwischen den Optionen fรผr stummgeschaltete Wรถrter wechseln." @@ -6195,7 +6237,7 @@ msgid "Toggle to enable or disable adult content" msgstr "" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "" @@ -6205,10 +6247,10 @@ msgstr "Verwandlungen" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "รœbersetzen" @@ -6250,14 +6292,14 @@ msgstr "Es ist uns nicht gelungen, deinen Dienst zu kontaktieren. Bitte รผberpr #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Entblocken" @@ -6272,12 +6314,12 @@ msgstr "" msgid "Unblock Account" msgstr "Konto entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -6292,7 +6334,7 @@ msgstr "Nicht mehr folgen" msgid "Unfollow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "{0} nicht mehr folgen" @@ -6339,8 +6381,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Stummschaltung von Thread aufheben" @@ -6398,7 +6440,7 @@ msgstr "" msgid "Updating..." msgstr "Aktualisieren..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "" @@ -6459,7 +6501,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -6630,11 +6672,11 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Profil ansehen" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Avatar ansehen" @@ -6646,6 +6688,11 @@ msgstr "" msgid "View users who like this feed" msgstr "" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6673,7 +6720,7 @@ msgstr "" msgid "We couldn't find any results for that hashtag." msgstr "Wir konnten keine Ergebnisse fรผr diesen Hashtag finden." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "" @@ -6689,7 +6736,7 @@ msgstr "Wir hoffen, dass du eine schรถne Zeit hast. Denke daran, Bluesky ist:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Wir haben keine Beitrรคge mehr von den Konten, denen du folgst. Hier ist das Neueste von <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Wir empfehlen, gebrรคuchliche Wรถrter zu vermeiden, die in vielen Beitrรคgen vorkommen, da dies dazu fรผhren kann, dass keine Beitrรคge angezeigt werden." @@ -6733,14 +6780,18 @@ msgstr "Wir freuen uns sehr, dass du dabei bist!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Es tut uns leid, aber wir waren nicht in der Lage, diese Liste aufzulรถsen. Wenn das Problem weiterhin besteht, kontaktiere bitte den Ersteller der Liste, @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wรถrter nicht laden. Bitte versuche es erneut." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6768,7 +6819,7 @@ msgstr "Was sind deine Interessen?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Was gibt's?" @@ -6789,7 +6840,7 @@ msgstr "" msgid "Who can reply" msgstr "Wer antworten kann" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "" @@ -6827,11 +6878,11 @@ msgstr "Breit" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Beitrag verfassen" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Schreibe deine Antwort" @@ -6871,8 +6922,8 @@ msgstr "Du befindest dich in der Warteschlange." msgid "You are not following anyone." msgstr "" -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Du kannst auch neue benutzerdefinierte Feeds entdecken und ihnen folgen." @@ -6905,6 +6956,10 @@ msgstr "" msgid "You do not have any followers." msgstr "" +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Du hast noch keine Einladungscodes! Wir schicken dir welche, wenn du schon etwas lรคnger bei Bluesky bist." @@ -7004,15 +7059,15 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: 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" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" @@ -7028,7 +7083,7 @@ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "" @@ -7036,11 +7091,11 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Du wirst keine Mitteilungen mehr fรผr diesen Thread erhalten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Du erhรคlst nun Mitteilungen fรผr dieses Thread" @@ -7048,15 +7103,15 @@ msgstr "Du erhรคlst nun Mitteilungen fรผr dieses Thread" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Du erhรคltst eine E-Mail mit einem \"Reset-Code\". Gib diesen Code hier ein und gib dann dein neues Passwort ein." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -7084,7 +7139,7 @@ msgstr "Du kannst loslegen!" msgid "You've chosen to hide a word or tag within this post." msgstr "" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -7130,7 +7185,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -7142,7 +7197,7 @@ msgstr "Dein vollstรคndiger Handle lautet" msgid "Your full handle will be <0>@{0}" msgstr "Dein vollstรคndiger Handle lautet <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Deine stummgeschalteten Wรถrter" @@ -7150,7 +7205,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Dein Beitrag wurde verรถffentlicht" @@ -7166,11 +7221,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Deine Antwort wurde verรถffentlicht" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index c668919b8a..4e93ad186d 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -41,10 +41,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -59,11 +63,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -75,7 +79,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "" @@ -175,12 +179,12 @@ msgstr "" msgid "2FA Confirmation" msgstr "" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "" @@ -193,7 +197,7 @@ msgstr "" msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "" @@ -237,7 +241,7 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "" @@ -250,7 +254,7 @@ msgstr "" msgid "Account unmuted" msgstr "" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -272,9 +276,9 @@ msgstr "" msgid "Add account" msgstr "" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -299,15 +303,15 @@ msgstr "" #~ msgid "Add link card:" #~ msgstr "" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" @@ -324,7 +328,7 @@ msgstr "" msgid "Add to Lists" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "" @@ -337,7 +341,7 @@ msgstr "" msgid "Added to list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "" @@ -359,12 +363,12 @@ msgstr "" msgid "Advanced" msgstr "" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -387,13 +391,13 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -441,6 +445,7 @@ msgstr "" msgid "an unknown error occurred" msgstr "" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -466,11 +471,11 @@ msgstr "" msgid "App password deleted" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "" @@ -478,22 +483,22 @@ msgstr "" msgid "App password settings" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -514,7 +519,7 @@ msgid "Appearance" msgstr "" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "" @@ -538,15 +543,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "" @@ -567,8 +572,8 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -581,7 +586,7 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "" @@ -601,7 +606,7 @@ msgstr "" msgid "Birthday:" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "" @@ -641,7 +646,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "" @@ -714,8 +719,8 @@ msgstr "" msgid "Books" msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "" @@ -723,7 +728,7 @@ msgstr "" msgid "Business" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "" @@ -739,7 +744,7 @@ msgstr "" #~ msgid "by @{0}" #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "" @@ -747,7 +752,7 @@ msgstr "" msgid "By creating an account you agree to the {els}." msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "" @@ -755,7 +760,7 @@ msgstr "" msgid "Camera" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "" @@ -764,8 +769,8 @@ msgstr "" #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -781,8 +786,8 @@ msgstr "" #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "" @@ -811,7 +816,7 @@ msgstr "" msgid "Cancel profile editing" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "" @@ -867,7 +872,7 @@ msgstr "" msgid "Change Your Email" msgstr "" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -879,7 +884,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -965,7 +970,7 @@ msgid "Clear all storage data (restart after this)" msgstr "" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "" @@ -1073,7 +1078,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "" @@ -1097,7 +1102,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "" @@ -1110,7 +1115,7 @@ msgstr "" msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -1219,7 +1224,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "" @@ -1227,8 +1232,12 @@ msgstr "" msgid "Continue as {0} (currently signed in)" msgstr "" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "" @@ -1241,7 +1250,7 @@ msgstr "" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1249,7 +1258,7 @@ msgstr "" msgid "Cooking" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "" @@ -1259,10 +1268,10 @@ msgid "Copied build version to clipboard" msgstr "" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "" @@ -1270,11 +1279,11 @@ msgstr "" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "" @@ -1291,8 +1300,8 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "" @@ -1301,12 +1310,12 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "" @@ -1353,11 +1362,11 @@ msgstr "" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "" @@ -1391,7 +1400,7 @@ msgstr "" msgid "Custom domain" msgstr "" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1434,7 +1443,7 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1489,8 +1498,8 @@ msgstr "" msgid "Delete My Accountโ€ฆ" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "" @@ -1498,7 +1507,7 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "" @@ -1521,11 +1530,11 @@ msgstr "" msgid "Description" msgstr "" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "" @@ -1566,11 +1575,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "" @@ -1579,12 +1588,12 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "" @@ -1620,11 +1629,11 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1703,6 +1712,11 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1726,8 +1740,9 @@ msgstr "" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "" @@ -1737,19 +1752,19 @@ msgid "Edit my profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "" +#~ msgid "Edit Saved Feeds" +#~ msgstr "" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1802,8 +1817,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "" @@ -1859,7 +1874,7 @@ msgstr "" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "" @@ -1867,8 +1882,8 @@ msgstr "" msgid "Enter a password" msgstr "" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "" @@ -1918,7 +1933,7 @@ msgid "Error receiving captcha response." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "" @@ -2006,7 +2021,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2016,8 +2031,8 @@ msgstr "" msgid "External media settings" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "" @@ -2029,7 +2044,7 @@ msgstr "" msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "" @@ -2063,7 +2078,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -2073,30 +2088,29 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "" @@ -2129,12 +2143,12 @@ msgid "Finalizing" msgstr "" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "" @@ -2177,7 +2191,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2188,7 +2202,7 @@ msgctxt "action" msgid "Follow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "" @@ -2218,6 +2232,10 @@ msgstr "" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "" @@ -2239,18 +2257,27 @@ msgstr "" msgid "Followers" msgstr "" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "" @@ -2262,9 +2289,7 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2286,7 +2311,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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 "" @@ -2329,7 +2354,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "" @@ -2357,9 +2382,9 @@ msgstr "" msgid "Go Back" msgstr "" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2379,7 +2404,7 @@ msgstr "" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2412,7 +2437,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "" @@ -2425,11 +2450,11 @@ msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2445,7 +2470,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "" @@ -2456,7 +2481,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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "" @@ -2465,8 +2490,8 @@ msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "" @@ -2475,7 +2500,7 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "" @@ -2483,23 +2508,23 @@ msgstr "" msgid "Hide user list" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" @@ -2511,11 +2536,11 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "" @@ -2569,7 +2594,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -2609,7 +2634,7 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "" @@ -2654,7 +2679,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "" @@ -2718,11 +2743,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "" @@ -2734,7 +2759,7 @@ msgstr "" msgid "Language settings" msgstr "" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "" @@ -2744,7 +2769,7 @@ msgid "Languages" msgstr "" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "" @@ -2826,8 +2851,8 @@ msgid "Like this feed" msgstr "" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "" @@ -2863,11 +2888,11 @@ msgstr "" msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "" @@ -2879,7 +2904,7 @@ msgstr "" msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "" @@ -2903,12 +2928,12 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "" @@ -2916,7 +2941,7 @@ msgstr "" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "" @@ -2931,7 +2956,7 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "" @@ -2967,7 +2992,7 @@ msgstr "" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "" @@ -2983,7 +3008,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "" @@ -3005,8 +3030,8 @@ msgstr "" msgid "Mentioned users" msgstr "" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "" @@ -3015,11 +3040,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "" @@ -3036,7 +3061,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3051,7 +3076,7 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3088,7 +3113,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "" @@ -3097,7 +3122,7 @@ msgstr "" msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "" @@ -3110,7 +3135,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "" @@ -3152,11 +3177,11 @@ msgstr "" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "" @@ -3173,21 +3198,21 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "" @@ -3199,7 +3224,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "" @@ -3225,7 +3250,7 @@ msgstr "" msgid "My Birthday" msgstr "" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "" @@ -3241,7 +3266,7 @@ msgstr "" msgid "My Saved Feeds" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "" @@ -3323,8 +3348,8 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3394,7 +3419,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "" @@ -3402,7 +3427,7 @@ msgstr "" msgid "No longer than 253 characters" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "" @@ -3410,7 +3435,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "" @@ -3421,6 +3446,10 @@ msgstr "" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3434,13 +3463,13 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "" @@ -3479,7 +3508,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "" @@ -3490,7 +3519,7 @@ msgid "Not right now" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "" @@ -3511,13 +3540,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "" @@ -3567,11 +3596,11 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "" @@ -3601,17 +3630,17 @@ msgstr "" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "" @@ -3631,11 +3660,11 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "" @@ -3744,8 +3773,8 @@ msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3789,8 +3818,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "" @@ -3854,15 +3883,15 @@ msgstr "" msgid "Pause" msgstr "" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "" @@ -3941,15 +3970,15 @@ msgstr "" msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "" -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" @@ -3961,7 +3990,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -3978,7 +4007,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "" @@ -3990,28 +4019,28 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "" @@ -4050,11 +4079,11 @@ msgstr "" msgid "Posts" msgstr "" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "" @@ -4082,6 +4111,10 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "" @@ -4099,11 +4132,11 @@ msgstr "" msgid "Privacy" msgstr "" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "" @@ -4123,8 +4156,8 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "" @@ -4148,16 +4181,16 @@ msgstr "" msgid "Public, shareable lists which can drive feeds." msgstr "" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4185,7 +4218,7 @@ msgstr "" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4193,7 +4226,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "" @@ -4213,12 +4246,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "" @@ -4238,25 +4271,25 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4268,15 +4301,15 @@ msgstr "" msgid "Remove image preview" msgstr "" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4284,12 +4317,12 @@ msgstr "" msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "" @@ -4298,7 +4331,7 @@ msgstr "" msgid "Removed from list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "" @@ -4329,7 +4362,7 @@ msgstr "" msgid "Replies to this thread are disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "" @@ -4389,8 +4422,8 @@ msgstr "" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "" @@ -4406,8 +4439,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "" @@ -4420,9 +4453,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "" @@ -4432,7 +4465,7 @@ msgstr "" msgid "Repost" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4458,7 +4491,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "" @@ -4561,8 +4594,8 @@ msgid "Returns to previous page" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4642,20 +4675,20 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "" @@ -4663,7 +4696,7 @@ msgstr "" msgid "Search for \"{query}\"" msgstr "" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "" @@ -4785,7 +4818,7 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "" @@ -4847,8 +4880,8 @@ msgctxt "action" msgid "Send Email" msgstr "" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "" @@ -4857,14 +4890,14 @@ msgstr "" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "" @@ -4877,8 +4910,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -4962,11 +4995,11 @@ msgstr "" msgid "Sets image aspect ratio to wide" msgstr "" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "" @@ -4985,8 +5018,8 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5001,7 +5034,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "" @@ -5053,7 +5086,7 @@ msgstr "" msgid "Show badge and filter from feeds" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "" @@ -5061,19 +5094,19 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -5162,9 +5195,9 @@ msgstr "" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5195,9 +5228,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5238,7 +5271,7 @@ msgstr "" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "" @@ -5270,7 +5303,7 @@ msgstr "" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5323,13 +5356,13 @@ msgstr "" msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5360,7 +5393,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "" @@ -5372,7 +5405,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5399,7 +5432,7 @@ msgstr "" msgid "System log" msgstr "" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "" @@ -5427,11 +5460,11 @@ msgstr "" msgid "Terms" msgstr "" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "" @@ -5441,17 +5474,17 @@ msgstr "" msgid "Terms used violate community standards" msgstr "" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "" @@ -5463,7 +5496,7 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -5484,11 +5517,11 @@ msgstr "" msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "" @@ -5526,7 +5559,7 @@ msgstr "" msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" @@ -5554,12 +5587,12 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" @@ -5576,8 +5609,8 @@ msgstr "" msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -5589,9 +5622,9 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5636,7 +5669,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -5669,28 +5702,37 @@ msgstr "" msgid "This content is not available because one of the users involved has blocked the other." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "" +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "" #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "" +#~ msgid "This feed is empty!" +#~ 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 "" +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -5719,7 +5761,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -5739,20 +5781,20 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "" @@ -5801,7 +5843,7 @@ msgstr "" #~ msgid "This warning is only available for posts with media attached." #~ msgstr "" -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "" @@ -5818,7 +5860,7 @@ msgstr "" msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "" @@ -5834,7 +5876,7 @@ msgstr "" msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "" @@ -5847,7 +5889,7 @@ msgid "Toggle to enable or disable adult content" msgstr "" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "" @@ -5857,10 +5899,10 @@ msgstr "" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "" @@ -5902,14 +5944,14 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "" @@ -5924,12 +5966,12 @@ msgstr "" msgid "Unblock Account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5944,7 +5986,7 @@ msgstr "" msgid "Unfollow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "" @@ -5987,8 +6029,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "" @@ -6038,7 +6080,7 @@ msgstr "" msgid "Updating..." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "" @@ -6099,7 +6141,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." msgstr "" @@ -6266,11 +6308,11 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "" @@ -6282,6 +6324,11 @@ msgstr "" msgid "View users who like this feed" msgstr "" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6305,7 +6352,7 @@ msgstr "" msgid "We couldn't find any results for that hashtag." msgstr "" -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "" @@ -6321,7 +6368,7 @@ msgstr "" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "" -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "" @@ -6361,14 +6408,18 @@ msgstr "" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6392,7 +6443,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "" @@ -6413,7 +6464,7 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "" @@ -6451,11 +6502,11 @@ msgstr "" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "" @@ -6495,8 +6546,8 @@ msgstr "" msgid "You are not following anyone." msgstr "" -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "" @@ -6529,6 +6580,10 @@ msgstr "" msgid "You do not have any followers." msgstr "" +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "" @@ -6616,15 +6671,15 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" @@ -6636,7 +6691,7 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "" @@ -6644,11 +6699,11 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "" @@ -6656,15 +6711,15 @@ msgstr "" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6692,7 +6747,7 @@ msgstr "" msgid "You've chosen to hide a word or tag within this post." msgstr "" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" @@ -6738,7 +6793,7 @@ msgstr "" msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "" -#: src/view/com/posts/FollowingEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" @@ -6750,7 +6805,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "" @@ -6758,7 +6813,7 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "" @@ -6774,11 +6829,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index 4eec6578a0..b0ad0834e5 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: brodieavoult\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -41,10 +41,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -59,11 +63,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -75,7 +79,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} sin leer" @@ -163,12 +167,12 @@ msgstr "โš Nombre de usuario invรกlido" msgid "2FA Confirmation" msgstr "Confirmaciรณn 2FA" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "" @@ -181,7 +185,7 @@ msgstr "Accesibilidad" msgid "Accessibility settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" @@ -225,7 +229,7 @@ msgstr "Opciones de cuenta" msgid "Account removed from quick access" msgstr "Cuenta elimada de acceso rรกpido" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Cuenta desbloqueada" @@ -238,7 +242,7 @@ msgstr "Has dejado de seguir a esta cuenta" msgid "Account unmuted" msgstr "Cuenta demuteada" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -260,9 +264,9 @@ msgstr "Aรฑadir cuenta a esta lista" msgid "Add account" msgstr "Aรฑadir cuenta" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -279,15 +283,15 @@ msgstr "Aรฑadir texto alternativo" msgid "Add App Password" msgstr "Aรฑadir contraseรฑa de app" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Aรฑadir palabras silenciadas y etiquetas" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Aรฑadir feeds recomendados" @@ -304,7 +308,7 @@ msgstr "Aรฑade el siguiente registro DNS a tu dominio:" msgid "Add to Lists" msgstr "Aรฑadir a listas" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Aรฑadir a mis feeds" @@ -313,7 +317,7 @@ msgstr "Aรฑadir a mis feeds" msgid "Added to list" msgstr "Aรฑadido a lista" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Aรฑadido a mis feeds" @@ -335,12 +339,12 @@ msgstr "El contenido adulto esta desactivado." msgid "Advanced" msgstr "Avanzado" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -363,13 +367,13 @@ msgstr "ยฟYa tienes un cรณdigo?" msgid "Already signed in as @{0}" msgstr "Sesiรณn ya iniciada como @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -417,6 +421,7 @@ msgstr "Ocurriรณ un problema. Intenta de nuevo." msgid "an unknown error occurred" msgstr "Ocurriรณ un error desconocido" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -442,11 +447,11 @@ msgstr "Idioma de interfaz" msgid "App password deleted" msgstr "Contraseรฑa de app eliminada" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "El nombre de una contraseรฑa de app sรณlo puede contener letras, nรบmeros, espacios, guiones, y guiones bajos." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 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." @@ -454,22 +459,22 @@ msgstr "El nombre de una contraseรฑa de app deben tener al menos 4 caracteres." msgid "App password settings" msgstr "Ajustes de contraseรฑas de app" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Contraseรฑas de la app" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Apelar" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Apelar la etiqueta de \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Apelaciรณn enviada" @@ -490,7 +495,7 @@ msgid "Appearance" msgstr "Aparencia" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "" @@ -514,15 +519,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ยฟSeguro que quieres eliminar {0} de tus feeds?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "ยฟSeguro que quieres descartar este borrador?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "ยฟEstรกs seguro?" @@ -543,8 +548,8 @@ msgid "At least 3 characters" msgstr "Al menos 3 caracteres" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -557,7 +562,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:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Atrรกs" @@ -577,7 +582,7 @@ msgstr "Cumpleaรฑos" msgid "Birthday:" msgstr "Cumpleaรฑos:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Bloquear" @@ -617,7 +622,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" @@ -675,8 +680,8 @@ msgstr "" msgid "Books" msgstr "Libros" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "" @@ -684,7 +689,7 @@ msgstr "" msgid "Business" msgstr "Negocios" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "por โ€”" @@ -696,7 +701,7 @@ msgstr "By {0}" #~ msgid "by @{0}" #~ msgstr "by @{0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "by <0/>" @@ -704,7 +709,7 @@ msgstr "by <0/>" msgid "By creating an account you agree to the {els}." msgstr "Al crear una cuenta, aceptas nuestros {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "por ti" @@ -712,7 +717,7 @@ msgstr "por ti" msgid "Camera" msgstr "Cรกmara" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "Sรณlo puede contener letras, nรบmeros, espacios, guiones y guiones bajos. Debe tener al menos 4 caracteres, pero no mรกs de 32." @@ -721,8 +726,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -738,8 +743,8 @@ msgstr "Sรณlo puede contener letras, nรบmeros, espacios, guiones y guiones bajos #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Cancelar" @@ -768,7 +773,7 @@ msgstr "Cancelar recorte de imagen" msgid "Cancel profile editing" msgstr "Cancelar ediciรณn de perfil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Cancelar citaciรณn" @@ -824,7 +829,7 @@ msgstr "Cambiar idioma del post a {0}" msgid "Change Your Email" msgstr "Cambiar correo electrรณnico" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -836,7 +841,7 @@ msgstr "Chat muteado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -905,7 +910,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento (reiniciar despuรฉs de esto)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Borrar consulta de bรบsqueda" @@ -1009,7 +1014,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "" @@ -1033,7 +1038,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrices de la comunidad" @@ -1046,7 +1051,7 @@ msgstr "" msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -1155,7 +1160,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuar" @@ -1163,8 +1168,12 @@ msgstr "Continuar" msgid "Continue as {0} (currently signed in)" msgstr "" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "" @@ -1177,7 +1186,7 @@ msgstr "" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1185,7 +1194,7 @@ msgstr "" msgid "Cooking" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiado" @@ -1195,10 +1204,10 @@ msgid "Copied build version to clipboard" msgstr "" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "" @@ -1206,11 +1215,11 @@ msgstr "" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copiar" @@ -1227,8 +1236,8 @@ msgstr "" msgid "Copy link to list" msgstr "Copia el enlace a la lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Copia el enlace a la post" @@ -1237,12 +1246,12 @@ msgstr "Copia el enlace a la post" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Copiar el texto de la post" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Polรญtica de derechos de autor" @@ -1289,11 +1298,11 @@ msgstr "Crear una cuenta" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "" @@ -1323,7 +1332,7 @@ msgstr "" msgid "Custom domain" msgstr "Dominio personalizado" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1366,7 +1375,7 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1421,8 +1430,8 @@ msgstr "Borrar mi cuenta" msgid "Delete My Accountโ€ฆ" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Borrar una post" @@ -1430,7 +1439,7 @@ msgstr "Borrar una post" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "ยฟBorrar esta post?" @@ -1453,11 +1462,11 @@ msgstr "" msgid "Description" msgstr "Descripciรณn" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "ยฟQuieres decir algo?" @@ -1490,11 +1499,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "" @@ -1503,12 +1512,12 @@ 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "" @@ -1544,11 +1553,11 @@ msgstr "ยกDominio verificado!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1627,6 +1636,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1650,8 +1664,9 @@ msgstr "Editar los detalles de la lista" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Editar mis noticias" @@ -1661,19 +1676,19 @@ msgid "Edit my profile" msgstr "Editar mi perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Editar el perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "Editar el perfil" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "Editar mis noticias guardadas" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Editar mis noticias guardadas" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1726,8 +1741,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "" @@ -1783,7 +1798,7 @@ msgstr "Fin de noticias" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "" @@ -1791,8 +1806,8 @@ msgstr "" msgid "Enter a password" msgstr "" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "" @@ -1842,7 +1857,7 @@ msgid "Error receiving captcha response." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Error:" @@ -1930,7 +1945,7 @@ msgstr "Medios externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envรญa o solicita ningรบn tipo de informaciรณn hasta que presiones el botรณn de \"play\"." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1940,8 +1955,8 @@ msgstr "Medios externos" msgid "External media settings" msgstr "Medios externos" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "" @@ -1953,7 +1968,7 @@ msgstr "" msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "" @@ -1982,7 +1997,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -1992,30 +2007,29 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Noticias fuera de lรญnea" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Comentarios" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Feeds" @@ -2044,12 +2058,12 @@ msgid "Finalizing" msgstr "" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "" @@ -2080,7 +2094,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2091,7 +2105,7 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Seguir {0}" @@ -2117,6 +2131,10 @@ msgstr "" #~ msgid "Follow selected accounts and continue to the next step" #~ msgstr "" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Seguido por {0}" @@ -2138,18 +2156,27 @@ msgstr "ha comenzado a seguirte" msgid "Followers" msgstr "Seguidores" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Siguiendo" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Siguiendo {0}" @@ -2161,9 +2188,7 @@ msgstr "" msgid "Following feed preferences" msgstr "Feed de Siguiendo" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2185,7 +2210,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2228,7 +2253,7 @@ msgstr "" msgid "Get Started" msgstr "Comenzar" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "" @@ -2256,9 +2281,9 @@ msgstr "Volver" msgid "Go Back" msgstr "Volver" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2273,7 +2298,7 @@ msgstr "" msgid "Go Home" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2306,7 +2331,7 @@ msgstr "Vibraciรณn" msgid "Harassment, trolling, or intolerance" msgstr "Acoso, trolling o intolerancia" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Hashtag" @@ -2319,11 +2344,11 @@ msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2339,7 +2364,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Aquรญ tienes tu contraseรฑa de la app." @@ -2350,7 +2375,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Ocultar" @@ -2359,8 +2384,8 @@ msgctxt "action" msgid "Hide" msgstr "Ocultar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Ocultar post" @@ -2369,7 +2394,7 @@ msgstr "Ocultar post" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "ยฟOcultar este post?" @@ -2377,23 +2402,23 @@ msgstr "ยฟOcultar este post?" msgid "Hide user list" msgstr "Ocultar lista de usuarios" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Se ha producido algรบn problema al contactar con el servidor de noticias. Por favor, informa al propietario de la noticia sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Parece que el servidor de noticias estรก mal configurado. Por favor, informa al propietario de la noticia sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Parece que el servidor de noticias estรก fuera de lรญnea. Por favor, informa al propietario de la noticia sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "El servidor de noticias ha respondido de forma incorrecta. Por favor, informa al propietario de la noticia sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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." @@ -2405,11 +2430,11 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Inicio" @@ -2463,7 +2488,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -2503,7 +2528,7 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "" @@ -2548,7 +2573,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "" @@ -2612,11 +2637,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "" @@ -2628,7 +2653,7 @@ msgstr "Escoger el idioma" msgid "Language settings" msgstr "Ajustes de Idiomas" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Ajustes de Idiomas" @@ -2638,7 +2663,7 @@ msgid "Languages" msgstr "Idiomas" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "" @@ -2720,8 +2745,8 @@ msgid "Like this feed" msgstr "Dar ยซme gustaยป a esta noticia" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Le ha gustado a" @@ -2757,11 +2782,11 @@ msgstr "" msgid "Likes" msgstr "Cantidad de ยซMe gustaยป" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "" @@ -2773,7 +2798,7 @@ msgstr "Avatar de la lista" msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "" @@ -2797,12 +2822,12 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Listas" @@ -2810,7 +2835,7 @@ msgstr "Listas" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Cargar notificaciones nuevas" @@ -2825,7 +2850,7 @@ msgstr "Cargar posts nuevos" msgid "Loading..." msgstr "Cargando..." -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "" @@ -2861,7 +2886,7 @@ msgstr "" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "" @@ -2877,7 +2902,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "ยกAsegรบrate de que es aquรญ a donde pretendes ir!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "" @@ -2899,8 +2924,8 @@ msgstr "usuarios mencionados" msgid "Mentioned users" msgstr "Usuarios mencionados" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menรบ" @@ -2909,11 +2934,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Mensaje del servidor: {0}" @@ -2930,7 +2955,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -2945,7 +2970,7 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -2982,7 +3007,7 @@ msgstr "" msgid "Moderation lists" msgstr "Listas de moderaciรณn" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listas de moderaciรณn" @@ -2991,7 +3016,7 @@ msgstr "Listas de moderaciรณn" msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "" @@ -3004,7 +3029,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "" @@ -3046,11 +3071,11 @@ msgstr "" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "" @@ -3067,21 +3092,21 @@ msgstr "Silenciar la lista" msgid "Mute these accounts?" msgstr "ยฟSilenciar estas cuentas?" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Mutear hilo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "" @@ -3093,7 +3118,7 @@ msgstr "Muteado" msgid "Muted accounts" msgstr "Cuentas muteadas" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Cuentas muteadas" @@ -3119,7 +3144,7 @@ msgstr "Nadie puede ver a quien muteas. Las cuentas muteadas pueden interactuar msgid "My Birthday" msgstr "Mi cumpleaรฑos" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Mis feeds" @@ -3135,7 +3160,7 @@ msgstr "Mis feeds guardados" msgid "My Saved Feeds" msgstr "Mis feeds guardados" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nombre" @@ -3212,8 +3237,8 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3278,7 +3303,7 @@ msgstr "Sin panel de DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "" @@ -3286,7 +3311,7 @@ msgstr "" msgid "No longer than 253 characters" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "" @@ -3294,7 +3319,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "" @@ -3305,6 +3330,10 @@ msgstr "" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3318,13 +3347,13 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "No se han encontrado resultados para {query}" @@ -3363,7 +3392,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "" @@ -3374,7 +3403,7 @@ msgid "Not right now" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "" @@ -3395,13 +3424,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Notificaciones" @@ -3451,11 +3480,11 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imรกgenes." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "" @@ -3485,17 +3514,17 @@ msgstr "" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "" @@ -3515,11 +3544,11 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Abrir navegaciรณn" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "" @@ -3628,8 +3657,8 @@ msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3673,8 +3702,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "" @@ -3738,15 +3767,15 @@ msgstr "ยกContraseรฑa actualizada!" msgid "Pause" msgstr "" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "" @@ -3825,15 +3854,15 @@ msgstr "" msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Por favor, confirma tu correo electrรณnico antes de cambiarlo. Se trata de un requisito temporal mientras se aรฑaden herramientas de actualizaciรณn de correo electrรณnico, y pronto se eliminarรก." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 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." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" @@ -3845,7 +3874,7 @@ msgstr "Introduce tu correo electrรณnico." msgid "Please enter your password as well:" msgstr "Introduce tu contraseรฑa, tambiรฉn:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -3862,7 +3891,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Por favor, espera a que tu tarjeta de enlace termine de cargarse" @@ -3874,28 +3903,28 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornografรญa" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Publicar" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Post por {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Post por {0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Post eliminado" @@ -3934,11 +3963,11 @@ msgstr "" msgid "Posts" msgstr "Publicaciones" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "" @@ -3966,6 +3995,10 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Imagen previa" @@ -3983,11 +4016,11 @@ msgstr "Priorizar los usuarios a los que sigue" msgid "Privacy" msgstr "Privacidad" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Polรญtica de privacidad" @@ -4007,8 +4040,8 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Perfil" @@ -4032,16 +4065,16 @@ 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:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4069,7 +4102,7 @@ msgstr "Proporciones" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4077,7 +4110,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "" @@ -4089,12 +4122,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Eliminar" @@ -4114,25 +4147,25 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Eliminar el canal de noticias" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Eliminar de mis canales de noticias" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4144,15 +4177,15 @@ msgstr "Eliminar la imagen" msgid "Remove image preview" msgstr "Eliminar la vista previa de la imagen" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4160,12 +4193,12 @@ msgstr "" msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "" @@ -4174,7 +4207,7 @@ msgstr "" msgid "Removed from list" msgstr "Eliminar de la lista" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "" @@ -4205,7 +4238,7 @@ msgstr "Respuestas" msgid "Replies to this thread are disabled" msgstr "Las respuestas a este hilo estรกn desactivadas" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "" @@ -4259,8 +4292,8 @@ msgstr "Informe de la lista" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Informe de la post" @@ -4276,8 +4309,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "" @@ -4290,9 +4323,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "" @@ -4302,7 +4335,7 @@ msgstr "" msgid "Repost" msgstr "Volver a publicar" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4324,7 +4357,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "" @@ -4427,8 +4460,8 @@ msgid "Returns to previous page" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4508,20 +4541,20 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Buscar" @@ -4529,7 +4562,7 @@ msgstr "Buscar" msgid "Search for \"{query}\"" msgstr "" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "" @@ -4647,7 +4680,7 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "" @@ -4709,8 +4742,8 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar correo" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Enviar comentarios" @@ -4719,14 +4752,14 @@ msgstr "Enviar comentarios" msgid "Send message" msgstr "Enviar mensaje" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Enviar reporte" @@ -4739,8 +4772,8 @@ msgstr "Enviar reporte a {0}" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -4824,11 +4857,11 @@ msgstr "" msgid "Sets image aspect ratio to wide" msgstr "" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Ajustes" @@ -4847,8 +4880,8 @@ msgstr "Compartir" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4863,7 +4896,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "" @@ -4915,7 +4948,7 @@ msgstr "" msgid "Show badge and filter from feeds" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "" @@ -4923,19 +4956,19 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Ver mรกs" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -5024,9 +5057,9 @@ msgstr "" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5057,9 +5090,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5100,7 +5133,7 @@ msgstr "Programaciรณn" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Ocurriรณ un error" @@ -5132,7 +5165,7 @@ msgstr "Ordenar respuestas al mismo post por:" #~ msgid "Source:" #~ msgstr "Fuente:" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5181,13 +5214,13 @@ msgstr "Paso {0} de {1}" msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Libro de cuentos" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5218,7 +5251,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Suscribirse a esta lista" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Usuarios sugeridos a seguir" @@ -5230,7 +5263,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5257,7 +5290,7 @@ msgstr "" msgid "System log" msgstr "Bitรกcora del sistema" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "" @@ -5285,11 +5318,11 @@ msgstr "" msgid "Terms" msgstr "Condiciones" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Condiciones de servicio" @@ -5299,17 +5332,17 @@ msgstr "Condiciones de servicio" msgid "Terms used violate community standards" msgstr "" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo de introducciรณn de texto" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "" @@ -5321,7 +5354,7 @@ msgstr "" msgid "That handle is already taken." msgstr "Este nombre de usuario ya estรก en uso." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrรก interactuar contigo tras desbloquearla." @@ -5342,11 +5375,11 @@ msgstr "La Polรญtica de derechos de autor se han trasladado a <0/>" msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "" @@ -5384,7 +5417,7 @@ msgstr "" msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" @@ -5412,12 +5445,12 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" @@ -5434,8 +5467,8 @@ msgstr "" msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -5447,9 +5480,9 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5494,7 +5527,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -5527,28 +5560,37 @@ msgstr "" msgid "This content is not available because one of the users involved has blocked the other." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Este contenido no se puede visto sin una cuenta de Bluesky." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Este feed estรก recibiendo mucho trรกfico y no estรก disponible temporalmente. Intenta de nuevo luego." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "" +#~ msgid "This feed is empty!" +#~ 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 "" +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -5577,7 +5619,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -5597,20 +5639,20 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Esta post ha sido eliminado." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "" @@ -5659,7 +5701,7 @@ msgstr "" #~ msgid "This warning is only available for posts with media attached." #~ msgstr "Esta advertencia sรณlo estรก disponible para las publicaciones con medios adjuntos." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "" @@ -5676,7 +5718,7 @@ msgstr "Preferencias de hilos" msgid "Threaded Mode" msgstr "Modo con hilos" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "" @@ -5692,7 +5734,7 @@ msgstr "" msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "" @@ -5705,7 +5747,7 @@ msgid "Toggle to enable or disable adult content" msgstr "" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "Top" @@ -5715,10 +5757,10 @@ msgstr "Transformaciones" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Traducir" @@ -5760,14 +5802,14 @@ msgstr "No se puede contactar con tu proveedor. Comprueba tu conexiรณn a Interne #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -5782,12 +5824,12 @@ msgstr "" msgid "Unblock Account" msgstr "Desbloquear Cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "ยฟDesbloquear Cuenta?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5802,7 +5844,7 @@ msgstr "Dejar de seguir" msgid "Unfollow" msgstr "Dejar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Dejar de seguir a {0}" @@ -5845,8 +5887,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "Demutear notificaciones" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Demutear hilo" @@ -5896,7 +5938,7 @@ msgstr "" msgid "Updating..." msgstr "Actualizando..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "" @@ -5957,7 +5999,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -6120,11 +6162,11 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Ver el avatar" @@ -6136,6 +6178,11 @@ msgstr "" msgid "View users who like this feed" msgstr "" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6159,7 +6206,7 @@ msgstr "" msgid "We couldn't find any results for that hashtag." msgstr "" -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "" @@ -6175,7 +6222,7 @@ msgstr "Esperemos que la pases bien. Recuerda, Bluesky es:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "" -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "" @@ -6215,14 +6262,18 @@ msgstr "ยกEs nuestro placer tenerte aquรญ!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6242,7 +6293,7 @@ msgstr "ยฟCuรกles son tus intereses?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "ยฟQuรฉ hay de nuevo?" @@ -6263,7 +6314,7 @@ msgstr "" msgid "Who can reply" msgstr "Quiรฉn puede responder" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "Whoops!" @@ -6301,11 +6352,11 @@ msgstr "Ancho" msgid "Write a message" msgstr "Escribe un mensaje" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Redacta un post" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Redacta una respuesta" @@ -6345,8 +6396,8 @@ msgstr "Estรกs en cola." msgid "You are not following anyone." msgstr "No estรกs siguiendo a nadie." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "" @@ -6379,6 +6430,10 @@ msgstr "" msgid "You do not have any followers." msgstr "No tienes ningรบn seguidor." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "ยกAรบn no tienes ningรบn cรณdigo de invitaciรณn! Te enviaremos algunos cuando lleves un poco mรกs de tiempo en Bluesky." @@ -6466,15 +6521,15 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" @@ -6486,7 +6541,7 @@ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "" @@ -6494,11 +6549,11 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "" @@ -6506,15 +6561,15 @@ msgstr "" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Enviamos un cรณdigo de reseteo a tu correo. Introduce ese cรณdigo aquรญ y luego introduce tu nueva contraseรฑa." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "Tu: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6542,7 +6597,7 @@ msgstr "ยกEso es todo!" msgid "You've chosen to hide a word or tag within this post." msgstr "" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -6588,7 +6643,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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รญ." @@ -6600,7 +6655,7 @@ msgstr "Tu nombre de usuario completo serรก" msgid "Your full handle will be <0>@{0}" msgstr "Tu nombre de usuario completo serรก <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Tus palabras muteadas" @@ -6608,7 +6663,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Post publicado" @@ -6624,11 +6679,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Respuesta publicada" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Tu reporte ha sido enviado al servicio de moderaciรณn de Bluesky" diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index cd27540e8e..fe77092e9e 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: @pekka.bsky.social,@jaoler.fi,@rahi.bsky.social\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -41,10 +41,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -59,11 +63,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -75,7 +79,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} lukematonta" @@ -175,12 +179,12 @@ msgstr "โš Virheellinen kรคyttรคjรคtunnus" msgid "2FA Confirmation" msgstr "Kaksivaiheisen tunnistautumisen vahvistus" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Siirry navigointilinkkeihin ja asetuksiin" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Siirry profiiliin ja muihin navigointilinkkeihin" @@ -193,7 +197,7 @@ msgstr "Saavutettavuus" msgid "Accessibility settings" msgstr "Esteettรถmyysasetukset\"" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Esteettรถmyysasetukset\"" @@ -237,7 +241,7 @@ msgstr "Kรคyttรคjรคtilin asetukset" msgid "Account removed from quick access" msgstr "Kรคyttรคjรคtili poistettu pikalinkeistรค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Kรคyttรคjรคtilin esto poistettu" @@ -250,7 +254,7 @@ msgstr "Kรคyttรคjรคtilin seuranta lopetettu" msgid "Account unmuted" msgstr "Kรคyttรคjรคtilin hiljennys poistettu" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -272,9 +276,9 @@ msgstr "Lisรครค kรคyttรคjรค tรคhรคn listaan" msgid "Add account" msgstr "Lisรครค kรคyttรคjรคtili" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -291,15 +295,15 @@ msgstr "Lisรครค ALT-teksti" msgid "Add App Password" msgstr "Lisรครค sovelluksen salasana" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Lisรครค hiljennetty sana mรครคritettyihin asetuksiin" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Lisรครค hiljennetyt sanat ja aihetunnisteet" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" @@ -316,7 +320,7 @@ msgstr "Lisรครค seuraava DNS-merkintรค verkkotunnukseesi:" msgid "Add to Lists" msgstr "Lisรครค listoihin" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Lisรครค syรถtteisiini" @@ -329,7 +333,7 @@ msgstr "Lisรครค syรถtteisiini" msgid "Added to list" msgstr "Lisรคtty listaan" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Lisรคtty syรถtteisiini" @@ -351,12 +355,12 @@ msgstr "Aikuissisรคltรถ on estetty" msgid "Advanced" msgstr "Edistyneemmรคt" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "Kaikki tallentamasi syรถtteet yhdessรค paikassa." -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -379,13 +383,13 @@ msgstr "Onko sinulla jo koodi?" msgid "Already signed in as @{0}" msgstr "Kirjautuneena sisรครคn nimellรค @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -433,6 +437,7 @@ msgstr "Tapahtui virhe, yritรค uudelleen." msgid "an unknown error occurred" msgstr "" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -458,11 +463,11 @@ msgstr "Sovelluksen kieli" msgid "App password deleted" msgstr "Sovelluksen salasana poistettu" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "Sovelluksen salasanan nimet voivat sisรคltรครค vain kirjaimia, numeroita, vรคlilyรถntejรค, viivoja ja alaviivoja." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "Sovelluksen salasanojen nimien on oltava vรคhintรครคn 4 merkkiรค pitkiรค." @@ -470,22 +475,22 @@ msgstr "Sovelluksen salasanojen nimien on oltava vรคhintรครคn 4 merkkiรค pitkiรค msgid "App password settings" msgstr "Sovelluksen salasanan asetukset" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Sovellussalasanat" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Valita" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Valita \"{0}\" -merkinnรคstรค" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -506,7 +511,7 @@ msgid "Appearance" msgstr "Ulkonรคkรถ" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "" @@ -530,15 +535,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Haluatko varmasti poistaa {0} syรถtteistรคsi?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "Haluatko varmasti hylรคtรค tรคmรคn luonnoksen?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Oletko varma?" @@ -559,8 +564,8 @@ msgid "At least 3 characters" msgstr "Vรคhintรครคn kolme merkkiรค" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -573,7 +578,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:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Takaisin" @@ -593,7 +598,7 @@ msgstr "Syntymรคpรคivรค" msgid "Birthday:" msgstr "Syntymรคpรคivรค:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Estรค" @@ -633,7 +638,7 @@ msgstr "Estetty" msgid "Blocked accounts" msgstr "Estetyt kรคyttรคjรคt" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Estetyt kรคyttรคjรคt" @@ -706,8 +711,8 @@ msgstr "Sumenna kuvat ja suodata syรถtteistรค" msgid "Books" msgstr "Kirjat" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "" @@ -715,7 +720,7 @@ msgstr "" msgid "Business" msgstr "Yritys" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "kรคyttรคjรค โ€”" @@ -731,7 +736,7 @@ msgstr "" #~ msgid "by @{0}" #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "kรคyttรคjรคltรค <0/>" @@ -739,7 +744,7 @@ msgstr "kรคyttรคjรคltรค <0/>" msgid "By creating an account you agree to the {els}." msgstr "Luomalla kรคyttรคjรคtilin hyvรคksyt {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "sinulta" @@ -747,7 +752,7 @@ msgstr "sinulta" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "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รค." @@ -756,8 +761,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -773,8 +778,8 @@ msgstr "Voi sisรคltรครค vain kirjaimia, numeroita, vรคlilyรถntejรค, viivoja ja a #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Peruuta" @@ -803,7 +808,7 @@ msgstr "Peruuta kuvan rajaus" msgid "Cancel profile editing" msgstr "Peruuta profiilin muokkaus" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Peruuta uudelleenpostaus" @@ -859,7 +864,7 @@ msgstr "Vaihda julkaisun kieleksi {0}" msgid "Change Your Email" msgstr "Vaihda sรคhkรถpostiosoitteesi" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -871,7 +876,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -957,7 +962,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Tyhjennรค kaikki tallennukset (kรคynnistรค uudelleen tรคmรคn jรคlkeen)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Tyhjennรค hakukysely" @@ -1061,7 +1066,7 @@ msgstr "Sulkee alanavigaation" msgid "Closes password update alert" msgstr "Sulkee salasanan pรคivitysilmoituksen" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "Sulkee editorin ja hylkรครค luonnoksen" @@ -1085,7 +1090,7 @@ msgstr "Komedia" msgid "Comics" msgstr "Sarjakuvat" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Yhteisรถohjeet" @@ -1098,7 +1103,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:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Laadi viestejรค, joiden pituus on enintรครคn {MAX_GRAPHEME_LENGTH} merkkiรค" @@ -1207,7 +1212,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Jatka" @@ -1215,8 +1220,12 @@ msgstr "Jatka" msgid "Continue as {0} (currently signed in)" msgstr "Jatka kรคyttรคjรคnรค {0} (kirjautunut)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Jatka seuraavaan vaiheeseen" @@ -1229,7 +1238,7 @@ msgstr "Jatka seuraavaan vaiheeseen" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Jatka seuraavaan vaiheeseen seuraamatta yhtรครคn tiliรค" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1237,7 +1246,7 @@ msgstr "" msgid "Cooking" msgstr "Ruoanlaitto" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Kopioitu" @@ -1247,10 +1256,10 @@ msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepรถydรคlle" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "Kopioitu leikepรถydรคlle" @@ -1258,11 +1267,11 @@ msgstr "Kopioitu leikepรถydรคlle" msgid "Copied!" msgstr "Kopioitu!" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Kopioi sovellussalasanan" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Kopioi" @@ -1279,8 +1288,8 @@ msgstr "Kopioi koodi" msgid "Copy link to list" msgstr "Kopioi listan linkki" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Kopioi julkaisun linkki" @@ -1289,12 +1298,12 @@ msgstr "Kopioi julkaisun linkki" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Kopioi viestin teksti" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Tekijรคnoikeuskรคytรคntรถ" @@ -1341,11 +1350,11 @@ msgstr "Luo kรคyttรคjรคtili" msgid "Create an account" msgstr "Luo kรคyttรคjรคtili" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Luo sovellussalasana" @@ -1375,7 +1384,7 @@ msgstr "Mukautettu" msgid "Custom domain" msgstr "Mukautettu verkkotunnus" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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รถรค." @@ -1418,7 +1427,7 @@ msgid "Debug panel" msgstr "Vianetsintรคpaneeli" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1473,8 +1482,8 @@ msgstr "Poista kรคyttรคjรคtilini" msgid "Delete My Accountโ€ฆ" msgstr "Poista kรคyttรคjรคtiliniโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Poista viesti" @@ -1482,7 +1491,7 @@ msgstr "Poista viesti" msgid "Delete this list?" msgstr "Poista tรคmรค lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Poista tรคmรค viesti?" @@ -1505,11 +1514,11 @@ msgstr "" msgid "Description" msgstr "Kuvaus" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Haluatko sanoa jotain?" @@ -1542,11 +1551,11 @@ msgstr "Poista haptiset palautteet kรคytรถstรค" msgid "Disabled" msgstr "Poistettu kรคytรถstรค" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Hylkรครค" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "Hylkรครค luonnos?" @@ -1555,12 +1564,12 @@ 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Lรถydรค uusia mukautettuja syรถtteitรค" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Lรถydรค uusia syรถtteitรค" @@ -1596,11 +1605,11 @@ msgstr "Verkkotunnus vahvistettu!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1679,6 +1688,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1702,8 +1716,9 @@ msgstr "Muokkaa listan tietoja" msgid "Edit Moderation List" msgstr "Muokkaa moderaatiolistaa" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Muokkaa syรถtteitรค" @@ -1713,19 +1728,19 @@ msgid "Edit my profile" msgstr "Muokkaa profiilia" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Muokkaa profiilia" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "Muokkaa profiilia" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "Muokkaa tallennettuja syรถtteitรค" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Muokkaa tallennettuja syรถtteitรค" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1778,8 +1793,8 @@ msgid "Embed HTML code" msgstr "Upotuksen HTML-koodi" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "Upota viesti" @@ -1835,7 +1850,7 @@ msgstr "Syรถtteen loppu" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Anna sovellusalasanalle nimi" @@ -1843,8 +1858,8 @@ msgstr "Anna sovellusalasanalle nimi" msgid "Enter a password" msgstr "Anna salasana" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Kirjoita sana tai aihetunniste" @@ -1894,7 +1909,7 @@ msgid "Error receiving captcha response." msgstr "Virhe captcha-vastauksen vastaanottamisessa." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Virhe:" @@ -1982,7 +1997,7 @@ 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:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1992,8 +2007,8 @@ msgstr "Ulkoisten mediasoittimien asetukset" msgid "External media settings" msgstr "Ulkoisten mediasoittimien asetukset" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Sovellussalasanan luominen epรคonnistui." @@ -2005,7 +2020,7 @@ msgstr "Listan luominen epรคonnistui. Tarkista internetyhteytesi ja yritรค uudel msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "Viestin poistaminen epรคonnistui, yritรค uudelleen" @@ -2039,7 +2054,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -2049,30 +2064,29 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Syรถte" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Syรถte kรคyttรคjรคltรค {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Syรถte ei ole kรคytettรคvissรค" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Palaute" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Syรถtteet" @@ -2105,12 +2119,12 @@ msgid "Finalizing" msgstr "Viimeistely" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Etsi seurattavia tilejรค" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Etsi viestejรค ja kรคyttรคjiรค Blueskysta" @@ -2145,7 +2159,7 @@ msgstr "Kรครคnnรค pystysuunnassa" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2156,7 +2170,7 @@ msgctxt "action" msgid "Follow" msgstr "Seuraa" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Seuraa {0}" @@ -2186,6 +2200,10 @@ msgstr "Seuraa takaisin" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "Seuraa joitakin kรคyttรคjiรค aloittaaksesi. Suosittelemme sinulle lisรครค kรคyttรคjiรค sen perusteella, ketรค pidรคt mielenkiintoisena." +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Seuraajina {0}" @@ -2207,18 +2225,27 @@ msgstr "seurasi sinua" msgid "Followers" msgstr "Seuraajat" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Seurataan" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Seurataan {0}" @@ -2230,9 +2257,7 @@ msgstr "" msgid "Following feed preferences" msgstr "Seuratut -syรถtteen asetukset" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2254,7 +2279,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2297,7 +2322,7 @@ msgstr "" msgid "Get Started" msgstr "Aloita tรคstรค" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "" @@ -2325,9 +2350,9 @@ msgstr "Palaa takaisin" msgid "Go Back" msgstr "Palaa takaisin" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2347,7 +2372,7 @@ msgstr "Palaa alkuun" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Siirry @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2380,7 +2405,7 @@ msgstr "Haptiikka" msgid "Harassment, trolling, or intolerance" msgstr "Hรคirintรค, trollaus tai suvaitsemattomuus" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Aihetunniste" @@ -2393,11 +2418,11 @@ msgid "Having trouble?" msgstr "Ongelmia?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ohje" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2413,7 +2438,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Tรคssรค on sovelluksesi salasana." @@ -2424,7 +2449,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Piilota" @@ -2433,8 +2458,8 @@ msgctxt "action" msgid "Hide" msgstr "Piilota" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Piilota viesti" @@ -2443,7 +2468,7 @@ msgstr "Piilota viesti" msgid "Hide the content" msgstr "Piilota sisรคltรถ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Piilota tรคmรค viesti?" @@ -2451,23 +2476,23 @@ msgstr "Piilota tรคmรค viesti?" msgid "Hide user list" msgstr "Piilota kรคyttรคjรคluettelo" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, jokin ongelma ilmeni ottaessa yhteyttรค syรถtteen palvelimeen. Ilmoita asiasta syรถtteen omistajalle." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, syรถtteen palvelin vaikuttaa olevan vรครคrin konfiguroitu. Ilmoita asiasta syรถtteen omistajalle." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, syรถtteen palvelin vaikuttaa olevan poissa kรคytรถstรค. Ilmoita asiasta syรถtteen omistajalle." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, syรถtteen palvelin antoi virheellisen vastauksen. Ilmoita asiasta syรถtteen omistajalle." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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." @@ -2479,11 +2504,11 @@ 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:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Koti" @@ -2537,7 +2562,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 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รค." @@ -2577,7 +2602,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Syรถtรค nimi sovellussalasanaa varten" @@ -2622,7 +2647,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Virheellinen tai ei tuettu tietue" @@ -2686,11 +2711,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "" @@ -2702,7 +2727,7 @@ msgstr "Kielen valinta" msgid "Language settings" msgstr "Kielen asetukset" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Kielen asetukset" @@ -2712,7 +2737,7 @@ msgid "Languages" msgstr "Kielet" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "Uusimmat" @@ -2794,8 +2819,8 @@ msgid "Like this feed" msgstr "Tykkรครค tรคstรค syรถtteestรค" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Tykรคnneet" @@ -2831,11 +2856,11 @@ msgstr "tykkรคsi viestistรคsi" msgid "Likes" msgstr "Tykkรคykset" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Tykkรคykset tรคssรค viestissรค" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Lista" @@ -2847,7 +2872,7 @@ msgstr "Listan kuvake" msgid "List blocked" msgstr "Lista estetty" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Listan on luonut {0}" @@ -2871,12 +2896,12 @@ msgstr "Listaa estosta poistetut" msgid "List unmuted" msgstr "Listaa hiljennyksestรค poistetut" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Listat" @@ -2884,7 +2909,7 @@ msgstr "Listat" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Lataa uusia ilmoituksia" @@ -2899,7 +2924,7 @@ msgstr "Lataa uusia viestejรค" msgid "Loading..." msgstr "Ladataan..." -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Loki" @@ -2935,7 +2960,7 @@ msgstr "Nรคkyy muodossa XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "" @@ -2951,7 +2976,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "Varmista, ettรค olet menossa oikeaan paikkaan!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Hallinnoi hiljennettyjรค sanoja ja aihetunnisteita" @@ -2973,8 +2998,8 @@ msgstr "mainitut kรคyttรคjรคt" msgid "Mentioned users" msgstr "Mainitut kรคyttรคjรคt" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Valikko" @@ -2983,11 +3008,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Viesti palvelimelta: {0}" @@ -3004,7 +3029,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3019,7 +3044,7 @@ msgstr "" msgid "Misleading Account" msgstr "Harhaanjohtava kรคyttรคjรคtili" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3056,7 +3081,7 @@ msgstr "Moderointilista pรคivitetty" msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderointilistat" @@ -3065,7 +3090,7 @@ msgstr "Moderointilistat" msgid "Moderation settings" msgstr "Moderointiasetukset" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "" @@ -3078,7 +3103,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Lisรครค" @@ -3120,11 +3145,11 @@ msgstr "Hiljennรค kaikki {displayTag} viestit" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Hiljennรค vain aihetunnisteissa" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "Hiljennรค tekstissรค ja aihetunnisteissa" @@ -3141,21 +3166,21 @@ msgstr "Hiljennรค lista" msgid "Mute these accounts?" msgstr "Hiljennรค nรคmรค kรคyttรคjรคt?" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Hiljennรค tรคmรค sana viesteissรค ja aihetunnisteissa" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "Hiljennรค tรคmรค sana vain aihetunnisteissa" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Hiljennรค keskustelu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Hiljennรค sanat ja aihetunnisteet" @@ -3167,7 +3192,7 @@ msgstr "Hiljennetty" msgid "Muted accounts" msgstr "Hiljennetyt kรคyttรคjรคt" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Hiljennetyt kรคyttรคjรคtilit" @@ -3193,7 +3218,7 @@ 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:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Omat syรถtteet" @@ -3209,7 +3234,7 @@ msgstr "Tallennetut syรถtteeni" msgid "My Saved Feeds" msgstr "Tallennetut syรถtteeni" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nimi" @@ -3291,8 +3316,8 @@ msgctxt "action" msgid "New post" msgstr "Uusi viesti" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3362,7 +3387,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/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "Et enรครค seuraa kรคyttรคjรครค {0}" @@ -3370,7 +3395,7 @@ msgstr "Et enรครค seuraa kรคyttรคjรครค {0}" msgid "No longer than 253 characters" msgstr "Ei pidempi kuin 253 merkkiรค." -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "" @@ -3378,7 +3403,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "Ei vielรค ilmoituksia!" @@ -3389,6 +3414,10 @@ msgstr "Ei vielรค ilmoituksia!" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3402,13 +3431,13 @@ msgstr "" msgid "No results found" msgstr "Tuloksia ei lรถydetty" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "Ei tuloksia haulle \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "Ei tuloksia haulle {query}" @@ -3447,7 +3476,7 @@ msgstr "Ei-seksuaalinen alastomuus" #~ msgid "Not Applicable." #~ msgstr "Ei sovellettavissa." -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Ei lรถytynyt" @@ -3458,7 +3487,7 @@ msgid "Not right now" msgstr "Ei juuri nyt" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "" @@ -3479,13 +3508,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Ilmoitukset" @@ -3535,11 +3564,11 @@ msgstr "Vanhimmat vastaukset ensin" msgid "Onboarding reset" msgstr "Kรคyttรถรถnoton nollaus" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Yksi tai useampi kuva on ilman vaihtoehtoista Alt-tekstiรค." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "" @@ -3569,17 +3598,17 @@ msgstr "Avaa" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Avaa emoji-valitsin" @@ -3599,11 +3628,11 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "Avaa hiljennettyjen sanojen ja aihetunnisteiden asetukset" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Avaa navigointi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Avaa viestin asetusvalikko" @@ -3712,8 +3741,8 @@ msgstr "Avaa salasanan palautuslomakkeen" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "Avaa nรคkymรคn tallennettujen syรถtteiden muokkaamiseen" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "Avaa nรคkymรคn tallennettujen syรถtteiden muokkaamiseen" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3757,8 +3786,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Asetus {0}/{numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Voit tarvittaessa antaa lisรคtietoja alla:" @@ -3822,15 +3851,15 @@ msgstr "Salasana pรคivitetty!" msgid "Pause" msgstr "Pysรคytรค" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "Henkilรถt" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Henkilรถt, joita @{0} seuraa" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Henkilรถt, jotka seuraavat kรคyttรคjรครค @{0}" @@ -3909,15 +3938,15 @@ msgstr "Tรคydennรค varmennus-captcha, ole hyvรค." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Vahvista sรคhkรถpostiosoitteesi ennen sen vaihtamista. Tรคmรค on vรคliaikainen vaatimus, kunnes sรคhkรถpostin muokkaamisen liittyvรคt asetukset ovat lisรคtty ja se poistetaan piakkoin." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 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." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 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." @@ -3929,7 +3958,7 @@ msgstr "Anna sรคhkรถpostiosoitteesi." msgid "Please enter your password as well:" msgstr "Anna myรถs salasanasi:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -3946,7 +3975,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "Vahvista sรคhkรถpostiosoitteesi" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Odota, ettรค linkkikortti latautuu kokonaan" @@ -3958,28 +3987,28 @@ msgstr "Politiikka" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Lรคhetรค" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Viesti" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Lรคhettรคjรค {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Lรคhettรคjรค @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Viesti poistettu" @@ -4018,11 +4047,11 @@ msgstr "viestit" msgid "Posts" msgstr "Viestit" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "Viestejรค voidaan hiljentรครค sanojen, aihetunnisteiden tai molempien perusteella." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Piilotetut viestit" @@ -4050,6 +4079,10 @@ msgstr "Paina uudelleen jatkaaksesi" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Edellinen kuva" @@ -4067,11 +4100,11 @@ msgstr "Aseta seurattavat tรคrkeysjรคrjestykseen" msgid "Privacy" msgstr "Yksityisyys" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Yksityisyydensuojakรคytรคntรถ" @@ -4091,8 +4124,8 @@ msgstr "profiili" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Profiili" @@ -4116,16 +4149,16 @@ 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:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Julkaise viesti" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Julkaise vastaus" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4153,7 +4186,7 @@ msgstr "Suhdeluvut" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4161,7 +4194,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "Viimeaikaiset haut" @@ -4181,12 +4214,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Poista" @@ -4206,25 +4239,25 @@ msgstr "Poista banneri" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Poista syรถte" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "Poista syรถte?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Poista syรถtteistรคni" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Poista syรถtteistรคni?" @@ -4236,15 +4269,15 @@ msgstr "Poista kuva" msgid "Remove image preview" msgstr "Poista kuvan esikatselu" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Poista hiljennetty sana listaltasi" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4252,12 +4285,12 @@ msgstr "" msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Poista uudelleenjulkaisu" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "Poista tรคmรค syรถte seurannasta" @@ -4266,7 +4299,7 @@ msgstr "Poista tรคmรค syรถte seurannasta" msgid "Removed from list" msgstr "Poistettu listalta" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Poistettu syรถtteistรคni" @@ -4297,7 +4330,7 @@ msgstr "Vastaukset" msgid "Replies to this thread are disabled" msgstr "Tรคhรคn keskusteluun vastaaminen on estetty" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Vastaa" @@ -4351,8 +4384,8 @@ msgstr "Ilmianna luettelo" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Ilmianna viesti" @@ -4368,8 +4401,8 @@ msgstr "Ilmianna tรคmรค syรถte" msgid "Report this list" msgstr "Ilmianna tรคmรค lista" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "" @@ -4382,9 +4415,9 @@ msgstr "Ilmianna tรคmรค viesti" msgid "Report this user" msgstr "Ilmianna tรคmรค kรคyttรคjรค" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Uudelleenjulkaise" @@ -4394,7 +4427,7 @@ msgstr "Uudelleenjulkaise" msgid "Repost" msgstr "Uudelleenjulkaise" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4416,7 +4449,7 @@ msgstr "Uudelleenjulkaissut <0><1/>" msgid "reposted your post" msgstr "uudelleenjulkaisi viestisi" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Tรคmรคn viestin uudelleenjulkaisut" @@ -4519,8 +4552,8 @@ msgid "Returns to previous page" msgstr "Palaa edelliselle sivulle" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4600,20 +4633,20 @@ msgid "Scroll to top" msgstr "Vieritรค alkuun" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Haku" @@ -4621,7 +4654,7 @@ msgstr "Haku" msgid "Search for \"{query}\"" msgstr "Haku hakusanalla \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "" @@ -4739,7 +4772,7 @@ msgstr "Valitse vaihtoehto {i} / {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "" @@ -4801,8 +4834,8 @@ msgctxt "action" msgid "Send Email" msgstr "Lรคhetรค sรคhkรถposti" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Lรคhetรค palautetta" @@ -4811,14 +4844,14 @@ msgstr "Lรคhetรค palautetta" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Lรคhetรค raportti" @@ -4831,8 +4864,8 @@ msgstr "" msgid "Send verification email" msgstr "Lรคhetรค vahvistussรคhkรถposti" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -4916,11 +4949,11 @@ msgstr "Asettaa kuvan kuvasuhteen korkeaksi" msgid "Sets image aspect ratio to wide" msgstr "Asettaa kuvan kuvasuhteen leveรคksi" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Asetukset" @@ -4939,8 +4972,8 @@ msgstr "Jaa" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4955,7 +4988,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Jaa kuitenkin" @@ -5007,7 +5040,7 @@ msgstr "" msgid "Show badge and filter from feeds" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Nรคytรค seurannat samankaltaisilta kรคyttรคjiltรค kuin {0}" @@ -5015,19 +5048,19 @@ msgstr "Nรคytรค seurannat samankaltaisilta kรคyttรคjiltรค kuin {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Nรคytรค lisรครค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -5116,9 +5149,9 @@ msgstr "Nรคyttรครค viestit kรคyttรคjรคltรค {0} syรถtteessรคsi" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5149,9 +5182,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5192,7 +5225,7 @@ msgstr "Ohjelmistokehitys" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "" @@ -5224,7 +5257,7 @@ msgstr "Lajittele saman viestin vastaukset seuraavasti:" #~ msgid "Source:" #~ msgstr "Lรคhde:" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5277,13 +5310,13 @@ msgstr "" msgid "Storage cleared, you need to restart the app now." msgstr "Tallennustila tyhjennetty, sinun on kรคynnistettรคvรค sovellus uudelleen." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5314,7 +5347,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Tilaa tรคmรค lista" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Mahdollisia seurattavia" @@ -5326,7 +5359,7 @@ msgstr "Suositeltua sinulle" msgid "Suggestive" msgstr "Viittaava" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5353,7 +5386,7 @@ msgstr "Jรคrjestelmรค" msgid "System log" msgstr "Jรคrjestelmรคloki" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "aihetunniste" @@ -5381,11 +5414,11 @@ msgstr "" msgid "Terms" msgstr "Ehdot" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Kรคyttรถehdot" @@ -5395,17 +5428,17 @@ msgstr "Kรคyttรถehdot" msgid "Terms used violate community standards" msgstr "" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "teksti" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Tekstikenttรค" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Kiitos. Raporttisi on lรคhetetty." @@ -5417,7 +5450,7 @@ msgstr "Se sisรคltรครค seuraavaa:" msgid "That handle is already taken." msgstr "Tuo kรคyttรคtunnus on jo kรคytรถssรค." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "Kรคyttรคjรค voi olla vuorovaikutuksessa kanssasi, kun poistat eston." @@ -5438,11 +5471,11 @@ msgstr "Tekijรคnoikeuskรคytรคntรถ on siirretty kohtaan <0/>" msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "" @@ -5480,7 +5513,7 @@ msgstr "" 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Syรถtteen poistossa on ongelmia. Tarkista internetyhteytesi ja yritรค uudelleen." @@ -5508,12 +5541,12 @@ msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma." msgid "There was an issue contacting the server" msgstr "Yhteydenotto palvelimeen epรคonnistui" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ongelma ilmoitusten hakemisessa. Napauta tรคstรค yrittรครคksesi uudelleen." @@ -5530,8 +5563,8 @@ msgstr "Ongelma listan hakemisessa. Napauta tรคstรค yrittรครคksesi uudelleen." 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Raportin lรคhettรคmisessรค ilmeni ongelma. Tarkista internet-yhteytesi." @@ -5543,9 +5576,9 @@ msgstr "Raportin lรคhettรคmisessรค ilmeni ongelma. Tarkista internet-yhteytesi." msgid "There was an issue with fetching your app passwords" msgstr "Sovellussalasanojen hakemisessa tapahtui virhe" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5590,7 +5623,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -5623,28 +5656,37 @@ msgstr "Tรคmรค sisรคltรถ on hostattu palvelussa {0}. Haluatko sallia ulkoisen me msgid "This content is not available because one of the users involved has blocked the other." msgstr "Tรคmรค sisรคltรถ ei ole saatavilla, koska toinen kรคyttรคjistรค on estรคnyt toisen." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Tรคtรค sisรคltรถรค ei voi katsoa ilman Bluesky-tiliรค." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Tรคmรค syรถte saa tรคllรค hetkellรค paljon liikennettรค ja on tilapรคisesti pois kรคytรถstรค. Yritรค uudelleen myรถhemmin." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Tรคmรค syรถte on tyhjรค!" +#~ msgid "This feed is empty!" +#~ msgstr "Tรคmรค syรถte on tyhjรค!" #: 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 "Tรคmรค syรถte on tyhjรค! Sinun on ehkรค seurattava useampia kรคyttรคjiรค tai sรครคdettรคvรค kieliasetuksiasi." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -5673,7 +5715,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -5693,20 +5735,20 @@ msgstr "Tรคmรค lista on tyhjรค!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Tรคmรค nimi on jo kรคytรถssรค" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Tรคmรค viesti on poistettu." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "Tรคmรค julkaisu piilotetaan syรถtteistรค." @@ -5755,7 +5797,7 @@ msgstr "Tรคmรค kรคyttรคjรค ei seuraa ketรครคn." #~ msgid "This warning is only available for posts with media attached." #~ msgstr "Tรคmรค varoitus on saatavilla vain viesteille, joihin on liitetty mediatiedosto." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 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." @@ -5772,7 +5814,7 @@ msgstr "Keskusteluketjun asetukset" msgid "Threaded Mode" msgstr "Ketjumainen nรคkymรค" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Keskusteluketjujen asetukset" @@ -5788,7 +5830,7 @@ msgstr "" msgid "To whom would you like to send this report?" msgstr "Kenelle haluaisit lรคhettรครค tรคmรคn raportin?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Vaihda hiljennysvaihtoehtojen vรคlillรค." @@ -5801,7 +5843,7 @@ msgid "Toggle to enable or disable adult content" msgstr "Vaihda ottaaksesi kรคyttรถรถn tai poistaaksesi kรคytรถstรค aikuisille tarkoitettu sisรคltรถ." #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "" @@ -5811,10 +5853,10 @@ msgstr "Muutokset" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Kรครคnnรค" @@ -5856,14 +5898,14 @@ msgstr "Yhteys palveluusi ei onnistu. Tarkista internet-yhteytesi." #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Poista esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Poista esto" @@ -5878,12 +5920,12 @@ msgstr "" msgid "Unblock Account" msgstr "Poista kรคyttรคjรคtilin esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "Poista esto?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5898,7 +5940,7 @@ msgstr "Lopeta seuraaminen" msgid "Unfollow" msgstr "ร„lรค seuraa" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Lopeta seuraaminen {0}" @@ -5941,8 +5983,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Poista keskusteluketjun hiljennys" @@ -5992,7 +6034,7 @@ msgstr "Pรคivitรค {handle}\"" msgid "Updating..." msgstr "Pรคivitetรครคn..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "" @@ -6053,7 +6095,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -6220,11 +6262,11 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Katso profiilia" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Katso avatar" @@ -6236,6 +6278,11 @@ msgstr "" msgid "View users who like this feed" msgstr "Katso, kuka tykkรครค tรคstรค syรถtteestรค" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6259,7 +6306,7 @@ msgstr "" msgid "We couldn't find any results for that hashtag." msgstr "Emme lรถytรคneet tuloksia tuolla aihetunnisteella." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "" @@ -6275,7 +6322,7 @@ msgstr "Toivomme sinulle ihania hetkiรค. Muista, ettรค Bluesky on:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Emme enรครค lรถytรคneet viestejรค seurattavilta. Tรคssรค on uusin tekijรคltรค <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Suosittelemme vรคlttรคmรครคn yleisiรค sanoja, jotka esiintyvรคt monissa viesteissรค. Se voi johtaa siihen, ettei mitรครคn viestejรค nรคytetรค." @@ -6315,14 +6362,18 @@ msgstr "Olemme innoissamme, ettรค liityt joukkoomme!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Pahoittelemme, emme saaneet avattua tรคtรค listaa. Jos ongelma jatkuu, ota yhteyttรค listan tekijรครคn: @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pahoittelemme, emme pystyneet lataamaan hiljennettyjรค sanojasi tรคllรค hetkellรค. Yritรค uudelleen." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6346,7 +6397,7 @@ msgstr "Mitkรค ovat kiinnostuksenkohteesi?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Mitรค kuuluu?" @@ -6367,7 +6418,7 @@ msgstr "" msgid "Who can reply" msgstr "Kuka voi vastata" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "" @@ -6405,11 +6456,11 @@ msgstr "Leveรค" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Kirjoita viesti" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Kirjoita vastauksesi" @@ -6449,8 +6500,8 @@ msgstr "Olet jonossa." msgid "You are not following anyone." msgstr "Et seuraa ketรครคn." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Voit myรถs selata uusia mukautettuja syรถtteitรค seurattavaksi." @@ -6483,6 +6534,10 @@ msgstr "" msgid "You do not have any followers." msgstr "Sinulla ei ole kyhtรครคn seuraajaa." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Sinulla ei ole vielรค kutsukoodia! Lรคhetรคmme sinulle sellaisen, kun olet ollut Bluesky-palvelussa hieman pidempรครคn." @@ -6570,15 +6625,15 @@ msgstr "Et ole hiljentรคnyt vielรค yhtรครคn kรคyttรคjรครค. Hiljentรครคksesi kรคy msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: 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" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 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รค." @@ -6590,7 +6645,7 @@ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "" @@ -6598,11 +6653,11 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Et enรครค saa ilmoituksia tรคstรค keskustelusta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Saat nyt ilmoituksia tรคstรค keskustelusta" @@ -6610,15 +6665,15 @@ msgstr "Saat nyt ilmoituksia tรคstรค keskustelusta" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Saat sรคhkรถpostin \"nollauskoodin\". Syรถtรค koodi tรคhรคn ja syรถtรค sitten uusi salasanasi." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6646,7 +6701,7 @@ msgstr "Olet valmis aloittamaan!" msgid "You've chosen to hide a word or tag within this post." msgstr "Olet halunnut piilottaa sanan tai aihetunnisteen tรคssรค viestissรค" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -6692,7 +6747,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -6704,7 +6759,7 @@ msgstr "Kรคyttรคjรคtunnuksesi tulee olemaan" msgid "Your full handle will be <0>@{0}" msgstr "Kรคyttรคjรคtunnuksesi tulee olemaan <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Hiljentรคmรคsi sanat" @@ -6712,7 +6767,7 @@ msgstr "Hiljentรคmรคsi sanat" msgid "Your password has been changed successfully!" msgstr "Salasanasi on vaihdettu onnistuneesti!" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Viestisi on julkaistu" @@ -6728,11 +6783,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Vastauksesi on julkaistu" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 9c4bad492f..7a0b67c89f 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "(contient du contenu intรฉgrรฉ)" @@ -33,10 +33,14 @@ msgstr "{0, plural, one {# รฉtiquette a รฉtรฉ placรฉe sur ce compte} other {# รฉ msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {# รฉtiquette a รฉtรฉ placรฉe sur ce contenu} other {# รฉtiquettes ont รฉtรฉ placรฉes sur ce contenu}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 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:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -51,11 +55,11 @@ msgstr "{0, plural, one {abonnement} other {abonnements}}" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Liker (# like)} other {Liker (# likes)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {like} other {likes}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: 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}}" @@ -67,7 +71,7 @@ msgstr "{0, plural, one {post} other {posts}}" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Rรฉpondre (# rรฉponse)} other {Rรฉpondre (# rรฉponses)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {reposts}}" @@ -106,7 +110,7 @@ msgstr "{handle} ne peut รชtre contactรฉ par message" 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:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non lus" @@ -138,12 +142,12 @@ msgstr "โš Pseudo invalide" msgid "2FA Confirmation" msgstr "Confirmation 2FA" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Accรจde aux liens de navigation et aux paramรจtres" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Accรจde au profil et aux autres liens de navigation" @@ -156,7 +160,7 @@ msgstr "Accessibilitรฉ" msgid "Accessibility settings" msgstr "Paramรจtres dโ€™accessibilitรฉ" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Paramรจtres dโ€™accessibilitรฉ" @@ -196,7 +200,7 @@ msgstr "Options de compte" msgid "Account removed from quick access" msgstr "Compte supprimรฉ de lโ€™accรจs rapide" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Compte dรฉbloquรฉ" @@ -209,7 +213,7 @@ msgstr "Compte dรฉsabonnรฉ" msgid "Account unmuted" msgstr "Compte dรฉmasquรฉ" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -231,9 +235,9 @@ msgstr "Ajouter un compte ร  cette liste" msgid "Add account" msgstr "Ajouter un compte" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -246,15 +250,15 @@ msgstr "Ajouter un texte alt" msgid "Add App Password" msgstr "Ajouter un mot de passe dโ€™application" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Ajouter un mot masquรฉ pour les paramรจtres configurรฉs" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Ajouter des mots et des mots-clรฉs masquรฉs" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Ajouter les fils dโ€™actu recommandรฉs" @@ -271,7 +275,7 @@ msgstr "Ajoutez lโ€™enregistrement DNS suivant ร  votre domaineย :" msgid "Add to Lists" msgstr "Ajouter aux listes" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Ajouter ร  mes fils dโ€™actu" @@ -280,7 +284,7 @@ msgstr "Ajouter ร  mes fils dโ€™actu" msgid "Added to list" msgstr "Ajoutรฉ ร  la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Ajoutรฉ ร  mes fils dโ€™actu" @@ -302,12 +306,12 @@ msgstr "Le contenu pour adultes est dรฉsactivรฉ." msgid "Advanced" msgstr "Avancรฉ" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "Autoriser lโ€™accรจs ร  vos messages privรฉs" @@ -325,13 +329,13 @@ msgstr "Avez-vous dรฉjร  un codeย ?" msgid "Already signed in as @{0}" msgstr "Dรฉjร  connectรฉยทe en tant que @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -375,6 +379,7 @@ msgstr "Un problรจme est survenu, veuillez rรฉessayer." msgid "an unknown error occurred" msgstr "une erreur inconnue sโ€™est produite" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -400,11 +405,11 @@ msgstr "Langue de lโ€™application" msgid "App password deleted" msgstr "Mot de passe dโ€™application supprimรฉ" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "Les noms de mots de passe dโ€™application ne peuvent contenir que des lettres, des chiffres, des espaces, des tirets et des tirets bas." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 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." @@ -412,22 +417,22 @@ msgstr "Les noms de mots de passe dโ€™application doivent comporter au moins 4 c msgid "App password settings" msgstr "Paramรจtres de mot de passe dโ€™application" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Mots de passe dโ€™application" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Faire appel" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Faire appel de lโ€™รฉtiquette ยซย {0}ย ยป" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Appel soumis" @@ -444,7 +449,7 @@ msgid "Appearance" msgstr "Affichage" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "Utiliser les fils dโ€™actu recommandรฉs par dรฉfaut" @@ -460,15 +465,15 @@ msgstr "รŠtes-vous sรปr de vouloir supprimer ce messageย ? Ce message sera suppr 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." -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 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/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "รŠtes-vous sรปr de vouloir rejeter ce brouillonย ?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Vous confirmezย ?" @@ -489,8 +494,8 @@ msgid "At least 3 characters" msgstr "Au moins 3 caractรจres" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -503,7 +508,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:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Arriรจre" @@ -519,7 +524,7 @@ msgstr "Date de naissance" msgid "Birthday:" msgstr "Date de naissanceย :" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Bloquer" @@ -559,7 +564,7 @@ msgstr "Bloquรฉ" msgid "Blocked accounts" msgstr "Comptes bloquรฉs" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Comptes bloquรฉs" @@ -617,8 +622,8 @@ msgstr "Flouter les images et les filtrer des fils dโ€™actu" msgid "Books" msgstr "Livres" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "Parcourir dโ€™autres fils dโ€™actu" @@ -626,7 +631,7 @@ msgstr "Parcourir dโ€™autres fils dโ€™actu" msgid "Business" msgstr "Affaires" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "par โ€”" @@ -634,7 +639,7 @@ msgstr "par โ€”" msgid "By {0}" msgstr "Par {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "par <0/>" @@ -642,7 +647,7 @@ msgstr "par <0/>" msgid "By creating an account you agree to the {els}." msgstr "En crรฉant un compte, vous acceptez les {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "par vous" @@ -650,7 +655,7 @@ msgstr "par vous" msgid "Camera" msgstr "Camรฉra" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "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." @@ -659,8 +664,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -676,8 +681,8 @@ msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Annuler" @@ -706,7 +711,7 @@ msgstr "Annuler le recadrage de lโ€™image" msgid "Cancel profile editing" msgstr "Annuler la modification du profil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Annuler la citation" @@ -762,7 +767,7 @@ msgstr "Modifier la langue de post en {0}" msgid "Change Your Email" msgstr "Modifier votre e-mail" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -774,7 +779,7 @@ msgstr "Discussion masquรฉe" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -839,7 +844,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Effacer toutes les donnรฉes de stockage (redรฉmarrer ensuite)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Effacer la recherche" @@ -939,7 +944,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:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "Ferme la fenรชtre de rรฉdaction et supprime le brouillon" @@ -963,7 +968,7 @@ msgstr "Comรฉdie" msgid "Comics" msgstr "Bandes dessinรฉes" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directives communautaires" @@ -976,7 +981,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:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Permet dโ€™รฉcrire des posts de {MAX_GRAPHEME_LENGTH} caractรจres maximum" @@ -1077,7 +1082,7 @@ 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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuer" @@ -1085,13 +1090,17 @@ msgstr "Continuer" msgid "Continue as {0} (currently signed in)" msgstr "Continuer comme {0} (actuellement connectรฉ)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Passer ร  lโ€™รฉtape suivante" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "Conversation supprimรฉe" @@ -1099,7 +1108,7 @@ msgstr "Conversation supprimรฉe" msgid "Cooking" msgstr "Cuisine" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiรฉ" @@ -1109,10 +1118,10 @@ msgid "Copied build version to clipboard" msgstr "Version de build copiรฉe dans le presse-papier" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "Copiรฉ dans le presse-papier" @@ -1120,11 +1129,11 @@ msgstr "Copiรฉ dans le presse-papier" msgid "Copied!" msgstr "Copiรฉย !" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Copie le mot de passe dโ€™application" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copier" @@ -1141,8 +1150,8 @@ msgstr "Copier ce code" msgid "Copy link to list" msgstr "Copier le lien vers la liste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Copier le lien vers le post" @@ -1151,12 +1160,12 @@ msgstr "Copier le lien vers le post" msgid "Copy message text" msgstr "Copier le texte du message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Copier le texte du post" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politique sur les droits dโ€™auteur" @@ -1195,11 +1204,11 @@ msgstr "Crรฉer un compte" msgid "Create an account" msgstr "Crรฉer un compte" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "Crรฉer plutรดt un avatar" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Crรฉer un mot de passe dโ€™application" @@ -1229,7 +1238,7 @@ msgstr "Personnalisรฉ" msgid "Custom domain" msgstr "Domaine personnalisรฉ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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." @@ -1272,7 +1281,7 @@ msgid "Debug panel" msgstr "Panneau de dรฉbug" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1323,8 +1332,8 @@ msgstr "Supprimer mon compte" msgid "Delete My Accountโ€ฆ" msgstr "Supprimer mon compteโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Supprimer le post" @@ -1332,7 +1341,7 @@ msgstr "Supprimer le post" msgid "Delete this list?" msgstr "Supprimer cette listeย ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Supprimer ce postย ?" @@ -1355,11 +1364,11 @@ msgstr "Supprime lโ€™enregistrement de dรฉclaration de discussion" msgid "Description" msgstr "Description" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "Texte alt descriptif" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Vous vouliez dire quelque choseย ?" @@ -1392,11 +1401,11 @@ msgstr "Dรฉsactiver le retour haptique" msgid "Disabled" msgstr "Dรฉsactivรฉ" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Abandonner" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "Abandonner le brouillonย ?" @@ -1405,12 +1414,12 @@ 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Dรฉcouvrir des fils dโ€™actu personnalisรฉs" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Dรฉcouvrir de nouveaux fils dโ€™actu" @@ -1446,11 +1455,11 @@ msgstr "Domaine vรฉrifiรฉย !" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1525,6 +1534,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1548,8 +1562,9 @@ msgstr "Modifier les infos de la liste" msgid "Edit Moderation List" msgstr "Modifier la liste de modรฉration" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Modifier mes fils dโ€™actu" @@ -1559,19 +1574,19 @@ msgid "Edit my profile" msgstr "Modifier mon profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Modifier le profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 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" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Modifier les fils dโ€™actu enregistrรฉs" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1624,8 +1639,8 @@ msgid "Embed HTML code" msgstr "Code HTML ร  intรฉgrer" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "Intรฉgrer le post" @@ -1668,7 +1683,7 @@ msgstr "Activรฉ" msgid "End of feed" msgstr "Fin du fil dโ€™actu" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: 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" @@ -1676,8 +1691,8 @@ msgstr "Entrer un nom pour ce mot de passe dโ€™application" msgid "Enter a password" msgstr "Saisir un mot de passe" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Saisir un mot ou un mot-clรฉ" @@ -1727,7 +1742,7 @@ msgid "Error receiving captcha response." msgstr "Erreur de rรฉception de la rรฉponse captcha." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Erreurย :" @@ -1815,7 +1830,7 @@ msgstr "Mรฉdia externe" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Les mรฉdias externes peuvent permettre ร  des sites web de collecter des informations sur vous et votre appareil. Aucune information nโ€™est envoyรฉe ou demandรฉe tant que vous nโ€™appuyez pas sur le bouton de lecture." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1825,8 +1840,8 @@ msgstr "Prรฉfรฉrences sur les mรฉdias externes" msgid "External media settings" msgstr "Prรฉfรฉrences sur les mรฉdias externes" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "ร‰chec de la crรฉation du mot de passe dโ€™application." @@ -1838,7 +1853,7 @@ msgstr "ร‰chec de la crรฉation de la liste. Vรฉrifiez votre connexion Internet e msgid "Failed to delete message" msgstr "ร‰chec de la suppression du message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "ร‰chec de la suppression du post, veuillez rรฉessayer" @@ -1859,7 +1874,7 @@ msgstr "ร‰chec de lโ€™enregistrement de lโ€™imageย : {0}" msgid "Failed to send" msgstr "ร‰chec de lโ€™envoi" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: 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." @@ -1869,30 +1884,29 @@ msgstr "ร‰chec de lโ€™envoi de lโ€™appel, veuillez rรฉessayer." msgid "Failed to update settings" msgstr "ร‰chec de la mise ร  jour des paramรจtres" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Fil dโ€™actu" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Fil dโ€™actu par {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Fil dโ€™actu hors ligne" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Fils dโ€™actu" @@ -1917,12 +1931,12 @@ msgid "Finalizing" msgstr "Finalisation" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Trouver des comptes ร  suivre" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Trouver des posts et comptes sur Bluesky" @@ -1953,7 +1967,7 @@ msgstr "Miroir vertical" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -1964,7 +1978,7 @@ msgctxt "action" msgid "Follow" msgstr "Suivre" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Suivre {0}" @@ -1982,6 +1996,10 @@ msgstr "Suivre le compte" msgid "Follow Back" msgstr "Suivre en retour" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Suivi par {0}" @@ -2003,18 +2021,27 @@ msgstr "vous suit" msgid "Followers" msgstr "Abonnรฉยทeยทs" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Suivi" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Suit {0}" @@ -2026,9 +2053,7 @@ msgstr "Suit {name}" msgid "Following feed preferences" msgstr "Prรฉfรฉrences du fil dโ€™actu ยซย Followingย ยป" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2050,7 +2075,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2093,7 +2118,7 @@ msgstr "Cโ€™est parti" msgid "Get Started" msgstr "Cโ€™est parti" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "Donner ร  votre profil un visage" @@ -2121,9 +2146,9 @@ msgstr "Retour" msgid "Go Back" msgstr "Retour" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2138,7 +2163,7 @@ msgstr "Accรฉder ร  lโ€™accueil" msgid "Go Home" msgstr "Accรฉder ร  lโ€™accueil" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "Aller ร  la conversation avec {0}" @@ -2171,7 +2196,7 @@ msgstr "Haptiques" msgid "Harassment, trolling, or intolerance" msgstr "Harcรจlement, trolling ou intolรฉrance" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Mot-clรฉ" @@ -2184,15 +2209,15 @@ msgid "Having trouble?" msgstr "Un souciย ?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Aide" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Voici le mot de passe de votre appli." @@ -2203,7 +2228,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Cacher" @@ -2212,8 +2237,8 @@ msgctxt "action" msgid "Hide" msgstr "Cacher" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Cacher ce post" @@ -2222,7 +2247,7 @@ msgstr "Cacher ce post" msgid "Hide the content" msgstr "Cacher ce contenu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Cacher ce postย ?" @@ -2230,23 +2255,23 @@ msgstr "Cacher ce postย ?" msgid "Hide user list" msgstr "Cacher la liste des comptes" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, un problรจme sโ€™est produit avec le serveur de fils dโ€™actu. Veuillez informer la personne propriรฉtaire du fil dโ€™actu de ce problรจme." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, le serveur du fils dโ€™actu semble รชtre mal configurรฉ. Veuillez informer la personne propriรฉtaire du fil dโ€™actu de ce problรจme." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, le serveur de fils dโ€™actu semble รชtre hors ligne. Veuillez informer la personne propriรฉtaire du fil dโ€™actu de ce problรจme." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, le serveur de fils dโ€™actu ne rรฉpond pas. Veuillez informer la personne propriรฉtaire du fil dโ€™actu de ce problรจme." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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รฉ." @@ -2258,11 +2283,11 @@ 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:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Accueil" @@ -2316,7 +2341,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 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." @@ -2356,7 +2381,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Entrez le nom du mot de passe de lโ€™appli" @@ -2401,7 +2426,7 @@ msgstr "Et voici les Messages Privรฉs" msgid "Invalid 2FA confirmation code." msgstr "Code de confirmation 2FA invalide." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Enregistrement de post invalide ou non pris en charge" @@ -2453,11 +2478,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "ร‰tiquettes sur votre compte" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "ร‰tiquettes sur votre contenu" @@ -2469,7 +2494,7 @@ msgstr "Sรฉlection de la langue" msgid "Language settings" msgstr "Prรฉfรฉrences de langue" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Paramรจtres linguistiques" @@ -2479,7 +2504,7 @@ msgid "Languages" msgstr "Langues" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "Dernier" @@ -2557,8 +2582,8 @@ msgid "Like this feed" msgstr "Liker ce fil dโ€™actu" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Likรฉ par" @@ -2580,11 +2605,11 @@ msgstr "likรฉ votre post" msgid "Likes" msgstr "Likes" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Likes sur ce post" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Liste" @@ -2596,7 +2621,7 @@ msgstr "Liste des avatars" msgid "List blocked" msgstr "Liste bloquรฉe" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Liste par {0}" @@ -2620,12 +2645,12 @@ msgstr "Liste dรฉbloquรฉe" msgid "List unmuted" msgstr "Liste dรฉmasquรฉe" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Listes" @@ -2633,7 +2658,7 @@ msgstr "Listes" msgid "Lists blocking this user:" msgstr "Listes qui bloquent ce compteย :" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Charger les nouvelles notifications" @@ -2648,7 +2673,7 @@ msgstr "Charger les nouveaux posts" msgid "Loading..." msgstr "Chargementโ€ฆ" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Journaux" @@ -2684,7 +2709,7 @@ msgstr "De la forme XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "On dirait que vous nโ€™avez plus de fils dโ€™actu enregistrรฉsย ! Utilisez nos recommandations ou parcourez en plus ci-dessous." -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "On dirait que vous avez dรฉsรฉpinglรฉ tous vos fils dโ€™actu. Mais pas dโ€™inquiรฉtudesย : vous pouvez en ajouter ci-dessous ๐Ÿ˜„" @@ -2696,7 +2721,7 @@ msgstr "On dirait que vous nโ€™avez plus de fil dโ€™actu ยซย Followingย ยป. <0>C msgid "Make sure this is where you intend to go!" msgstr "Assurez-vous que cโ€™est bien lร  que vous avez lโ€™intention dโ€™allerย !" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Gรฉrer les mots et les mots-clรฉs masquรฉs" @@ -2718,8 +2743,8 @@ msgstr "comptes mentionnรฉs" msgid "Mentioned users" msgstr "Comptes mentionnรฉs" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menu" @@ -2728,11 +2753,11 @@ msgid "Message {0}" msgstr "Envoyer un message ร  {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "Message supprimรฉ" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Message du serveurย : {0}" @@ -2749,7 +2774,7 @@ msgstr "Le message est trop long" msgid "Message settings" msgstr "Paramรจtres des messages" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -2760,7 +2785,7 @@ msgstr "Messages" msgid "Misleading Account" msgstr "Compte trompeur" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -2797,7 +2822,7 @@ msgstr "Liste de modรฉration mise ร  jour" msgid "Moderation lists" msgstr "Listes de modรฉration" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listes de modรฉration" @@ -2806,7 +2831,7 @@ msgstr "Listes de modรฉration" msgid "Moderation settings" msgstr "Paramรจtres de modรฉration" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "ร‰tats de modรฉration" @@ -2819,7 +2844,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Plus" @@ -2861,11 +2886,11 @@ msgstr "Masquer tous les posts {displayTag}" msgid "Mute conversation" msgstr "Masquer la conversation" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Masquer dans les mots-clรฉs uniquement" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "Masquer dans le texte et les mots-clรฉs" @@ -2877,21 +2902,21 @@ msgstr "Masquer la liste" msgid "Mute these accounts?" msgstr "Masquer ces comptesย ?" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Masquer ce mot dans le texte du post et les mots-clรฉs" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "Masquer ce mot dans les mots-clรฉs uniquement" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Masquer ce fil de discussion" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Masquer les mots et les mots-clรฉs" @@ -2903,7 +2928,7 @@ msgstr "Masquรฉ" msgid "Muted accounts" msgstr "Comptes masquรฉs" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Comptes masquรฉs" @@ -2929,7 +2954,7 @@ 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:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Mes fils dโ€™actu" @@ -2945,7 +2970,7 @@ msgstr "Mes fils dโ€™actu enregistrรฉs" msgid "My Saved Feeds" msgstr "Mes fils dโ€™actu enregistrรฉs" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nom" @@ -3022,8 +3047,8 @@ msgctxt "action" msgid "New post" msgstr "Nouveau post" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3088,7 +3113,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/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "Ne suit plus {0}" @@ -3096,7 +3121,7 @@ msgstr "Ne suit plus {0}" msgid "No longer than 253 characters" msgstr "Pas plus de 253 caractรจres" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "Pas encore de messages" @@ -3104,7 +3129,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:118 msgid "No notifications yet!" msgstr "Pas encore de notificationsย !" @@ -3132,13 +3157,13 @@ msgstr "Aucun rรฉsultat" msgid "No results found" msgstr "Aucun rรฉsultat trouvรฉ" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "Aucun rรฉsultat trouvรฉ pour ยซย {query}ย ยป" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "Aucun rรฉsultat trouvรฉ pour {query}" @@ -3169,7 +3194,7 @@ msgstr "Personne nโ€™a encore likรฉ. Peut-รชtre devriez-vous ouvrir la voieย !" msgid "Non-sexual Nudity" msgstr "Nuditรฉ non sexuelle" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Introuvable" @@ -3180,7 +3205,7 @@ msgid "Not right now" msgstr "Pas maintenant" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "Note sur le partage" @@ -3201,13 +3226,13 @@ msgstr "Sons de notification" msgid "Notification Sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Notifications" @@ -3253,11 +3278,11 @@ msgstr "Plus anciennes rรฉponses en premier" msgid "Onboarding reset" msgstr "Rรฉinitialiser le didacticiel" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images nโ€™ont pas de texte alt." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "Seuls les fichiers .jpg et .png sont acceptรฉs" @@ -3287,17 +3312,17 @@ msgstr "Ouvert" msgid "Open {name} profile shortcut menu" msgstr "Ouvre le menu de raccourci du profil de {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "Ouvre le crรฉateur dโ€™avatar" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "Ouvrir les options de conversation" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Ouvrir le sรฉlecteur dโ€™emoji" @@ -3317,11 +3342,11 @@ msgstr "Ouvrir les options de message" msgid "Open muted words and tags settings" msgstr "Ouvrir les paramรจtres des mots masquรฉs et mots-clรฉs" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Navigation ouverte" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Ouvrir le menu dโ€™options du post" @@ -3426,8 +3451,8 @@ 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" +#~ 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" @@ -3467,8 +3492,8 @@ msgstr "Ouvre ce profil" msgid "Option {0} of {numItems}" msgstr "Option {0} sur {numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Ajoutez des informations supplรฉmentaires ci-dessous (optionnel)ย :" @@ -3532,15 +3557,15 @@ msgstr "Mot de passe mis ร  jourย !" msgid "Pause" msgstr "Mettre en pause" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "Personnes" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" @@ -3614,15 +3639,15 @@ msgstr "Veuillez complรฉter le captcha de vรฉrification." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Veuillez confirmer votre e-mail avant de le modifier. Ceci est temporairement requis pendant que des outils de mise ร  jour dโ€™e-mail sont ajoutรฉs, cette รฉtape ne sera bientรดt plus nรฉcessaire." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 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." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Veuillez entrer un mot, un mot-clรฉ ou une phrase valide ร  masquer" @@ -3634,7 +3659,7 @@ msgstr "Veuillez entrer votre e-mail." msgid "Please enter your password as well:" msgstr "Veuillez รฉgalement entrer votre mot de passeย :" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 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}" @@ -3651,7 +3676,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:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Veuillez patienter le temps que votre carte de lien soit chargรฉe" @@ -3663,28 +3688,28 @@ msgstr "Politique" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Poster" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Post de {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Post de @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Post supprimรฉ" @@ -3723,11 +3748,11 @@ msgstr "posts" msgid "Posts" msgstr "Posts" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "Les posts peuvent รชtre masquรฉs en fonction de leur texte, de leurs mots-clรฉs ou des deux." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Posts cachรฉs" @@ -3750,6 +3775,10 @@ msgstr "Appuyer pour changer dโ€™hรฉbergeur" msgid "Press to retry" msgstr "Appuyer pour rรฉessayer" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Image prรฉcรฉdente" @@ -3767,11 +3796,11 @@ msgstr "Dรฉfinissez des prioritรฉs de vos suivis" msgid "Privacy" msgstr "Vie privรฉe" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Charte de confidentialitรฉ" @@ -3791,8 +3820,8 @@ msgstr "profil" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Profil" @@ -3816,16 +3845,16 @@ 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:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Publier le post" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Publier la rรฉponse" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -3843,11 +3872,11 @@ msgstr "Ratios" msgid "Reactivate your account" msgstr "Rรฉactiver votre compte" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "Raisonย :" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "Recherches rรฉcentes" @@ -3859,12 +3888,12 @@ msgstr "Se reconnecter" msgid "Reload conversations" msgstr "Rafraรฎchir les conversations" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Supprimer" @@ -3884,25 +3913,25 @@ msgstr "Supprimer lโ€™image dโ€™en-tรชte" msgid "Remove embed" msgstr "Supprimer lโ€™intรฉgration" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Supprimer le fil dโ€™actu" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "Supprimer le fil dโ€™actuย ?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Supprimer de mes fils dโ€™actu" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Supprimer de mes fils dโ€™actuย ?" @@ -3914,15 +3943,15 @@ msgstr "Supprimer lโ€™image" msgid "Remove image preview" msgstr "Supprimer lโ€™aperรงu dโ€™image" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Supprimer le mot masquรฉ de votre liste" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "Supprimer le profil" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "Supprimer le profil de lโ€™historique de recherche" @@ -3930,12 +3959,12 @@ msgstr "Supprimer le profil de lโ€™historique de recherche" msgid "Remove quote" msgstr "Supprimer la citation" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Supprimer le repost" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "Supprimer ce fil dโ€™actu de vos fils dโ€™actu enregistrรฉs" @@ -3944,7 +3973,7 @@ msgstr "Supprimer ce fil dโ€™actu de vos fils dโ€™actu enregistrรฉs" msgid "Removed from list" msgstr "Supprimรฉ de la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Supprimรฉ de mes fils dโ€™actu" @@ -3975,7 +4004,7 @@ msgstr "Rรฉponses" 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:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Rรฉpondre" @@ -4024,8 +4053,8 @@ msgstr "Signaler la liste" msgid "Report message" msgstr "Signaler le message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Signaler le post" @@ -4041,8 +4070,8 @@ msgstr "Signaler ce fil dโ€™actu" msgid "Report this list" msgstr "Signaler cette liste" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "Signaler ce message" @@ -4055,9 +4084,9 @@ msgstr "Signaler ce post" msgid "Report this user" msgstr "Signaler ce compte" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Republier" @@ -4067,7 +4096,7 @@ msgstr "Republier" msgid "Repost" msgstr "Republier" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4089,7 +4118,7 @@ msgstr "Republiรฉ par <0><1/>" msgid "reposted your post" msgstr "a republiรฉ votre post" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Reposts de ce post" @@ -4188,8 +4217,8 @@ msgid "Returns to previous page" msgstr "Retour ร  la page prรฉcรฉdente" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4265,20 +4294,20 @@ msgid "Scroll to top" msgstr "Remonter en haut" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Recherche" @@ -4286,7 +4315,7 @@ msgstr "Recherche" msgid "Search for \"{query}\"" msgstr "Recherche de ยซย {query}ย ยป" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "Recherche de ยซย {searchText}ย ยป" @@ -4391,7 +4420,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:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "Sรฉlectionnez le(s) service(s) de modรฉration destinataires du signalement" @@ -4437,8 +4466,8 @@ msgctxt "action" msgid "Send Email" msgstr "Envoyer lโ€™e-mail" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Envoyer des commentaires" @@ -4447,14 +4476,14 @@ msgstr "Envoyer des commentaires" msgid "Send message" msgstr "Envoyer le message" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "Envoyer le post ร โ€ฆ" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Envoyer le rapport" @@ -4467,8 +4496,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:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "Envoyer par message privรฉ" @@ -4552,11 +4581,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:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Paramรจtres" @@ -4575,8 +4604,8 @@ msgstr "Partager" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4591,7 +4620,7 @@ msgid "Share a fun fact!" msgstr "Partagez une anecdote insoliteย !" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Partager quand mรชme" @@ -4639,7 +4668,7 @@ msgstr "Afficher le badge" msgid "Show badge and filter from feeds" msgstr "Afficher les badges et filtrer des fils dโ€™actu" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Afficher les suivis similaires ร  {0}" @@ -4647,19 +4676,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:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "En montrer moins comme รงa" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Voir plus" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "En montrer plus comme รงa" @@ -4716,9 +4745,9 @@ msgstr "Affiche les posts de {0} dans votre fil dโ€™actu" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -4749,9 +4778,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -4792,7 +4821,7 @@ msgstr "Dรฉveloppement de logiciels" msgid "Some people can reply" msgstr "Quelques comptes peuvent rรฉpondre" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Quelque chose nโ€™a pas marchรฉ" @@ -4820,7 +4849,7 @@ msgstr "Trier les rรฉponses" msgid "Sort replies to the same post by:" msgstr "Trier les rรฉponses au mรชme post parย :" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "Sourceย : <0>{0}" @@ -4865,13 +4894,13 @@ msgstr "ร‰tape {0} sur {1}" msgid "Storage cleared, you need to restart the app now." msgstr "Stockage effacรฉ, vous devez redรฉmarrer lโ€™application maintenant." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Historique" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -4897,7 +4926,7 @@ msgstr "Sโ€™abonner ร  cet รฉtiqueteur" msgid "Subscribe to this list" msgstr "Sโ€™abonner ร  cette liste" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Suivis suggรฉrรฉs" @@ -4909,7 +4938,7 @@ msgstr "Suggรฉrรฉs pour vous" msgid "Suggestive" msgstr "Suggestif" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -4936,7 +4965,7 @@ msgstr "Systรจme" msgid "System log" msgstr "Journal systรจme" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "mot-clรฉ" @@ -4964,11 +4993,11 @@ msgstr "Racontez une blagueย !" msgid "Terms" msgstr "Conditions gรฉnรฉrales" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Conditions dโ€™utilisation" @@ -4978,17 +5007,17 @@ msgstr "Conditions dโ€™utilisation" msgid "Terms used violate community standards" msgstr "Termes utilisรฉs qui violent les normes de la communautรฉ" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "texte" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Champ de saisie de texte" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Nous vous remercions. Votre rapport a รฉtรฉ envoyรฉ." @@ -5000,7 +5029,7 @@ msgstr "Qui contient les รฉlรฉments suivantsย :" msgid "That handle is already taken." msgstr "Ce pseudo est dรฉjร  occupรฉ." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "Ce compte pourra interagir avec vous aprรจs le dรฉblocage." @@ -5017,11 +5046,11 @@ msgstr "Notre politique de droits dโ€™auteur a รฉtรฉ dรฉplacรฉe vers <0/>" msgid "The feed has been replaced with Discover." msgstr "Ce fil dโ€™actu a รฉtรฉ remplacรฉ par Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "Les รฉtiquettes suivantes ont รฉtรฉ appliquรฉes ร  votre compte." -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "Les รฉtiquettes suivantes ont รฉtรฉ appliquรฉes ร  votre contenu." @@ -5055,7 +5084,7 @@ msgstr "Il nโ€™y a pas de limite de temps pour la dรฉsactivation du compte, reve 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Il y a eu un problรจme lors de la suppression du fil, veuillez vรฉrifier votre connexion Internet et rรฉessayez." @@ -5079,12 +5108,12 @@ msgstr "Il y a eu un problรจme de connexion ร  Tenor." msgid "There was an issue contacting the server" msgstr "Il y a eu un problรจme de connexion au serveur" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 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." @@ -5101,8 +5130,8 @@ msgstr "Il y a eu un problรจme lors de la rรฉcupรฉration de la liste. Appuyez ic 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 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." @@ -5110,9 +5139,9 @@ msgstr "Il y a eu un problรจme lors de lโ€™envoi de votre rapport. Veuillez vรฉr msgid "There was an issue with fetching your app passwords" msgstr "Il y a eu un problรจme lors de la rรฉcupรฉration de vos mots de passe dโ€™application" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5153,7 +5182,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "Cet appel sera envoyรฉ ร  <0>{0}." @@ -5182,11 +5211,11 @@ msgstr "Ce contenu est hรฉbergรฉ par {0}. Voulez-vous activer les mรฉdias extern msgid "This content is not available because one of the users involved has blocked the other." msgstr "Ce contenu nโ€™est pas disponible car lโ€™un des comptes impliquรฉs a bloquรฉ lโ€™autre." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Ce contenu nโ€™est pas visible sans un compte Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/List/ChatListItem.tsx:213 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "Cette conversation concerne un compte supprimรฉ ou dรฉsactivรฉ. Appuyez pour obtenir des options." @@ -5194,7 +5223,7 @@ msgstr "Cette conversation concerne un compte supprimรฉ ou dรฉsactivรฉ. Appuyez msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Cette fonctionnalitรฉ est en version bรชta. Vous pouvez en savoir plus sur les exportations de dรฉpรดts dans <0>ce blogpost." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ce fil dโ€™actu reรงoit actuellement un trafic important, il est temporairement indisponible. Veuillez rรฉessayer plus tard." @@ -5227,7 +5256,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:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "Cette รฉtiquette a รฉtรฉ apposรฉe par vous." @@ -5247,20 +5276,20 @@ msgstr "Cette liste est videย !" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Ce service de modรฉration nโ€™est pas disponible. Voir ci-dessous pour plus de dรฉtails. Si le problรจme persiste, contactez-nous." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Ce nom est dรฉjร  utilisรฉ" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Ce post a รฉtรฉ supprimรฉ." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "Ce post sera masquรฉ des fils dโ€™actu." @@ -5305,7 +5334,7 @@ msgstr "Ce compte est inclus dans la liste <0>{0} que vous avez masquรฉe." msgid "This user isn't following anyone." msgstr "Ce compte ne suit personne." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 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." @@ -5322,7 +5351,7 @@ msgstr "Prรฉfรฉrences des fils de discussion" msgid "Threaded Mode" msgstr "Mode arborescent" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Prรฉfรฉrences des fils de discussion" @@ -5338,7 +5367,7 @@ msgstr "Pour signaler une conversation, veuillez signaler un de ses messages via msgid "To whom would you like to send this report?" msgstr "ร€ qui souhaitez-vous envoyer ce rapportย ?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Basculer entre les options pour les mots masquรฉs." @@ -5351,7 +5380,7 @@ msgid "Toggle to enable or disable adult content" msgstr "Activer ou dรฉsactiver le contenu pour adultes" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "Meilleur" @@ -5361,10 +5390,10 @@ msgstr "Transformations" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Traduire" @@ -5406,14 +5435,14 @@ msgstr "Impossible de contacter votre service. Veuillez vรฉrifier votre connexio #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Dรฉbloquer" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Dรฉbloquer" @@ -5428,12 +5457,12 @@ msgstr "Dรฉbloquer le compte" msgid "Unblock Account" msgstr "Dรฉbloquer le compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "Dรฉbloquer le compteย ?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5448,7 +5477,7 @@ msgstr "Se dรฉsabonner" msgid "Unfollow" msgstr "Se dรฉsabonner" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Se dรฉsabonner de {0}" @@ -5483,8 +5512,8 @@ msgstr "Rรฉafficher tous les posts {displayTag}" msgid "Unmute conversation" msgstr "Rรฉafficher la conversation" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Rรฉafficher ce fil de discussion" @@ -5530,7 +5559,7 @@ msgstr "Mettre ร  jour pour {handle}" msgid "Updating..." msgstr "Mise ร  jourโ€ฆ" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "Envoyer plutรดt une photo" @@ -5591,7 +5620,7 @@ msgstr "Utiliser les recommandรฉs" msgid "Use the DNS panel" msgstr "Utiliser le panneau DNS" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -5750,11 +5779,11 @@ msgstr "Voir les informations sur ces รฉtiquettes" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Voir le profil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Afficher lโ€™avatar" @@ -5766,6 +5795,11 @@ msgstr "Voir le service dโ€™รฉtiquetage fourni par @{0}" 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:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -5789,7 +5823,7 @@ msgstr "Avertir du contenu et filtrer des fils dโ€™actu" msgid "We couldn't find any results for that hashtag." msgstr "Nous nโ€™avons trouvรฉ aucun rรฉsultat pour ce mot-clรฉ." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "Nous ne pouvons pas charger cette conversation" @@ -5805,7 +5839,7 @@ msgstr "Nous espรฉrons que vous passerez un excellent moment. Nโ€™oubliez pas qu msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Nous nโ€™avons plus de posts provenant des comptes que vous suivez. Voici le dernier de <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Nous vous recommandons dโ€™รฉviter les mots communs qui apparaissent dans de nombreux posts, car cela peut avoir pour consรฉquence quโ€™aucun post ne sโ€™affiche." @@ -5841,15 +5875,15 @@ msgstr "Nous sommes ravis de vous accueillirย !" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Nous sommes dรฉsolรฉs, mais nous nโ€™avons pas pu charger cette liste. Si cela persiste, veuillez contacter lโ€™origine de la liste, @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nous sommes dรฉsolรฉs, mais nous nโ€™avons pas pu charger vos mots masquรฉs pour le moment. Veuillez rรฉessayer." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:311 +#: src/view/com/composer/Composer.tsx:318 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รฉ." @@ -5872,7 +5906,7 @@ msgstr "Quels sont vos centres dโ€™intรฉrรชtย ?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Quoi de neufย ?" @@ -5893,7 +5927,7 @@ msgstr "Qui peut discuter avec vousย ?" msgid "Who can reply" msgstr "Qui peut rรฉpondreย ?" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "Oupsย !" @@ -5931,11 +5965,11 @@ msgstr "Large" msgid "Write a message" msgstr "ร‰crire un message" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Rรฉdiger un post" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Rรฉdigez votre rรฉponse" @@ -5975,8 +6009,8 @@ msgstr "Vous รชtes dans la file dโ€™attente." msgid "You are not following anyone." msgstr "Vous ne suivez personne." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Vous pouvez aussi dรฉcouvrir de nouveaux fils dโ€™actu personnalisรฉs ร  suivre." @@ -6005,6 +6039,10 @@ msgstr "Vous pouvez rรฉactiver votre compte pour continuer ร  vous connecter. Vo msgid "You do not have any followers." 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 "" + #: 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." msgstr "Vous nโ€™avez encore aucun code dโ€™invitationย ! Nous vous en enverrons lorsque vous serez sur Bluesky depuis un peu plus longtemps." @@ -6084,15 +6122,15 @@ 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/dialogs/MutedWords.tsx:250 +#: 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รฉ" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 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:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 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." @@ -6100,7 +6138,7 @@ msgstr "Vous pouvez faire appel de ces รฉtiquettes si vous estimez quโ€™elles on 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "Vous devez sรฉlectionner au moins un รฉtiqueteur pour un rapport" @@ -6108,11 +6146,11 @@ msgstr "Vous devez sรฉlectionner au moins un รฉtiqueteur pour un rapport" msgid "You previously deactivated @{0}." msgstr "Vous avez prรฉcรฉdemment dรฉsactivรฉ @{0}." -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Vous ne recevrez plus de notifications pour ce fil de discussion" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Vous recevrez dรฉsormais des notifications pour ce fil de discussion" @@ -6120,15 +6158,15 @@ msgstr "Vous recevrez dรฉsormais des notifications pour ce fil de discussion" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Vous recevrez un e-mail contenant un ยซย code de rรฉinitialisationย ยป. Saisissez ce code ici, puis votre nouveau mot de passe." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "Vousย : {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Vousย : {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "Vousย : {short}" @@ -6152,7 +6190,7 @@ msgstr "Vous รชtes prรชt ร  partirย !" msgid "You've chosen to hide a word or tag within this post." msgstr "Vous avez choisi de masquer un mot ou un mot-clรฉ dans ce post." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -6194,7 +6232,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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -6206,7 +6244,7 @@ msgstr "Votre nom complet sera" msgid "Your full handle will be <0>@{0}" msgstr "Votre pseudo complet sera <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Vos mots masquรฉs" @@ -6214,7 +6252,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Votre post a รฉtรฉ publiรฉ" @@ -6230,11 +6268,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Votre rรฉponse a รฉtรฉ publiรฉe" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Votre rapport sera envoyรฉ au Service de Modรฉration de Bluesky" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 3a118de8fd..015724da1f 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -12,7 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? 3 : 4\n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "(tรก รกbhar leabaithe ann)" @@ -24,23 +24,39 @@ msgstr "(gan rรญomhphost)" 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}}" +#: src/components/moderation/LabelsOnMe.tsx:55 +#, fuzzy +#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" +#~ msgstr "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an gcuntas seo} two {Cuireadh # lipรฉad ar an gcuntas seo} few {Cuireadh # lipรฉad ar an gcuntas seo} many {Cuireadh # lipรฉad ar an gcuntas seo} other {Cuireadh # lipรฉad ar an gcuntas seo}}" + #: 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 "{0, plural, one {Cuireadh lipรฉad amhรกin ar an gcuntas seo} two {Cuireadh # lipรฉad ar an gcuntas seo} few {Cuireadh # lipรฉad ar an gcuntas seo} many {Cuireadh # lipรฉad ar an gcuntas seo} other {Cuireadh # lipรฉad ar an gcuntas seo}}" +#: src/components/moderation/LabelsOnMe.tsx:61 +#, fuzzy +#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" +#~ msgstr "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an รกbhar seo} two {Cuireadh # lipรฉad ar an รกbhar seo} few {Cuireadh # lipรฉad ar an รกbhar seo} many {Cuireadh # lipรฉad ar an รกbhar seo} other {Cuireadh # lipรฉad ar an รกbhar seo}}" + #: 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 "{0, plural, one {Cuireadh lipรฉad amhรกin ar an รกbhar seo} two {Cuireadh # lipรฉad ar an รกbhar seo} few {Cuireadh # lipรฉad ar an รกbhar seo} many {Cuireadh # lipรฉad ar an รกbhar seo} other {Cuireadh # lipรฉad ar an รกbhar seo}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# athphostรกil} two {# athphostรกil} few {# athphostรกil} many {# n-athphostรกil} other {# athphostรกil}}" -#: src/components/ProfileHoverCard/index.web.tsx:376 src/screens/Profile/Header/Metrics.tsx:23 +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:376 +#: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {leantรณir} two {leantรณir} few {leantรณir} many {leantรณir} other {leantรณir}}" -#: src/components/ProfileHoverCard/index.web.tsx:380 src/screens/Profile/Header/Metrics.tsx:27 +#: src/components/ProfileHoverCard/index.web.tsx:380 +#: src/screens/Profile/Header/Metrics.tsx:27 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}}" @@ -48,11 +64,11 @@ msgstr "{0, plural, one {รก leanรบint} two {รก leanรบint} few {รก leanรบint} man 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)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: 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}}" @@ -64,7 +80,7 @@ msgstr "{0, plural, one {phostรกil} two {phostรกil} few {phostรกil} many {bpost 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)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 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}}" @@ -72,6 +88,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/view/screens/ProfileList.tsx:286 +#, fuzzy +#~ msgid "{0} your feeds" +#~ msgstr "Sรกbhรกilte le mo chuid fothaรญ" + #: src/view/com/util/UserAvatar.tsx:406 msgid "{0}'s avatar" msgstr "abhatรกr {0}" @@ -88,7 +109,8 @@ 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:457 src/screens/Profile/Header/Metrics.tsx:50 +#: src/components/ProfileHoverCard/index.web.tsx:457 +#: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} รก leanรบint" @@ -96,11 +118,13 @@ msgstr "{following} รก leanรบint" msgid "{handle} can't be messaged" 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:585 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 +#: src/view/screens/ProfileFeed.tsx:585 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:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} gan lรฉamh" @@ -120,10 +144,34 @@ 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/view/shell/Drawer.tsx:96 +#~ msgid "<0>{0} following" +#~ msgstr "<0>{0} รก leanรบint" + +#: src/components/ProfileHoverCard/index.web.tsx:437 +#~ msgid "<0>{followers} <1>{pluralizedFollowers}" +#~ msgstr "<0>{following} <1>{pluralizedFollowers}" + +#: src/components/ProfileHoverCard/index.web.tsx:NaN +#~ msgid "<0>{following} <1>following" +#~ msgstr "<0>{following} <1>รก leanรบint" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 +#~ msgid "<0>Choose your<1>Recommended<2>Feeds" +#~ msgstr "<0>Roghnaigh do chuid<1>Fothaรญ<2>Molta" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 +#~ msgid "<0>Follow some<1>Recommended<2>Users" +#~ msgstr "<0>Lean cรบpla<1>รšsรกideoirรญ<2>Molta" + #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>Neamhbhainteach. Nรญl an rabhadh seo ar fรกil ach le haghaidh postรกlacha a bhfuil meรกin ceangailte leo." +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 +#~ msgid "<0>Welcome to<1>Bluesky" +#~ msgstr "<0>Fรกilte go<1>Bluesky" + #: src/screens/Profile/Header/Handle.tsx:43 msgid "โš Invalid Handle" msgstr "โš Leasainm Neamhbhailรญ" @@ -132,15 +180,17 @@ msgstr "โš Leasainm Neamhbhailรญ" msgid "2FA Confirmation" msgstr "Dearbhรบ 2FA" -#: src/view/com/util/ViewHeader.tsx:92 src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Oscail nascanna agus socruithe" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 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/com/modals/EditImage.tsx:300 +#: src/view/screens/Settings/index.tsx:518 msgid "Accessibility" msgstr "Inrochtaineacht" @@ -148,11 +198,18 @@ msgstr "Inrochtaineacht" msgid "Accessibility settings" msgstr "Socruithe inrochtaineachta" -#: src/Navigation.tsx:290 src/view/screens/AccessibilitySettings.tsx:63 +#: src/Navigation.tsx:296 +#: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" -#: src/screens/Login/LoginForm.tsx:167 src/view/screens/Settings/index.tsx:345 src/view/screens/Settings/index.tsx:752 +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "account" +#~ msgstr "cuntas" + +#: src/screens/Login/LoginForm.tsx:167 +#: src/view/screens/Settings/index.tsx:345 +#: src/view/screens/Settings/index.tsx:752 msgid "Account" msgstr "Cuntas" @@ -168,7 +225,8 @@ msgstr "Cuntas leanaithe" msgid "Account muted" msgstr "Cuireadh an cuntas i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:93 src/lib/moderation/useModerationCauseDescription.ts:93 +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +#: src/lib/moderation/useModerationCauseDescription.ts:93 msgid "Account Muted" msgstr "Cuireadh an cuntas i bhfolach" @@ -184,7 +242,8 @@ msgstr "Roghanna cuntais" msgid "Account removed from quick access" msgstr "Baineadh an cuntas รณn mearliosta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 src/view/com/profile/ProfileMenu.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Cuntas dรญbhlocรกilte" @@ -196,7 +255,10 @@ msgstr "Cuntas dรญleanaithe" msgid "Account unmuted" msgstr "Nรญl an cuntas i bhfolach a thuilleadh" -#: src/components/dialogs/MutedWords.tsx:165 src/view/com/modals/ListAddRemoveUsers.tsx:268 src/view/com/modals/UserAddRemoveLists.tsx:230 src/view/screens/ProfileList.tsx:881 +#: src/components/dialogs/MutedWords.tsx:164 +#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/UserAddRemoveLists.tsx:230 +#: src/view/screens/ProfileList.tsx:881 msgid "Add" msgstr "Cuir leis" @@ -208,27 +270,50 @@ msgstr "Cuir rabhadh faoin รกbhar leis" msgid "Add a user to this list" 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/components/dialogs/SwitchAccount.tsx:56 +#: src/screens/Deactivated.tsx:199 +#: src/view/screens/Settings/index.tsx:422 +#: src/view/screens/Settings/index.tsx:431 msgid "Add account" msgstr "Cuir cuntas leis seo" -#: src/view/com/composer/GifAltText.tsx:70 src/view/com/composer/GifAltText.tsx:136 src/view/com/composer/GifAltText.tsx:176 src/view/com/composer/photos/Gallery.tsx:120 src/view/com/composer/photos/Gallery.tsx:187 src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 +#: src/view/com/composer/photos/Gallery.tsx:120 +#: src/view/com/composer/photos/Gallery.tsx:187 +#: src/view/com/modals/AltImage.tsx:118 msgid "Add alt text" msgstr "Cuir tรฉacs malartach leis seo" -#: src/view/screens/AppPasswords.tsx:106 src/view/screens/AppPasswords.tsx:148 src/view/screens/AppPasswords.tsx:161 +#: src/view/com/composer/GifAltText.tsx:175 +#, fuzzy +#~ msgid "Add ALT text" +#~ msgstr "Cuir tรฉacs malartach leis seo" + +#: src/view/screens/AppPasswords.tsx:106 +#: src/view/screens/AppPasswords.tsx:148 +#: src/view/screens/AppPasswords.tsx:161 msgid "Add App Password" msgstr "Cuir pasfhocal aipe leis seo" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/view/com/composer/Composer.tsx:467 +#~ msgid "Add link card" +#~ msgstr "Cuir cรกrta leanรบna leis seo" + +#: src/view/com/composer/Composer.tsx:472 +#~ msgid "Add link card:" +#~ msgstr "Cuir cรกrta leanรบna leis seo:" + +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Cuir focal atรก le cur i bhfolach anseo le haghaidh socruithe a rinne tรบ" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Cuir focail agus clibeanna a cuireadh i bhfolach leis seo" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Cuir fothaรญ molta leis seo" @@ -240,19 +325,25 @@ 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/view/com/profile/ProfileMenu.tsx:265 src/view/com/profile/ProfileMenu.tsx:268 +#: src/view/com/profile/ProfileMenu.tsx:265 +#: src/view/com/profile/ProfileMenu.tsx:268 msgid "Add to Lists" msgstr "Cuir le liostaรญ" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Cuir le mo chuid fothaรญ" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 src/view/com/modals/UserAddRemoveLists.tsx:157 +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 +#~ msgid "Added" +#~ msgstr "Curtha leis" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Curtha leis an liosta" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Curtha le mo chuid fothaรญ" @@ -260,7 +351,8 @@ msgstr "Curtha le mo chuid fothaรญ" 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." -#: src/lib/moderation/useGlobalLabelStrings.ts:34 src/view/com/modals/SelfLabel.tsx:76 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/view/com/modals/SelfLabel.tsx:76 msgid "Adult Content" msgstr "รbhar do dhaoine fรกsta" @@ -268,23 +360,32 @@ msgstr "รbhar do dhaoine fรกsta" msgid "Adult content is disabled." msgstr "Tรก รกbhar do dhaoine fรกsta curtha ar ceal." -#: src/screens/Moderation/index.tsx:375 src/view/screens/Settings/index.tsx:686 +#: src/screens/Moderation/index.tsx:375 +#: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Ardleibhรฉal" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 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:188 src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "Ceadaigh fรกil ar do chuid TDanna" -#: src/screens/Messages/Settings.tsx:62 src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:NaN +#, fuzzy +#~ msgid "Allow messages from" +#~ msgstr "Ceadaigh teachtaireachtaรญ nua รณ" + +#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:65 msgid "Allow new messages from" msgstr "Ceadaigh teachtaireachtaรญ nua รณ" -#: src/screens/Login/ForgotPasswordForm.tsx:178 src/view/com/modals/ChangePassword.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:178 +#: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "An bhfuil cรณd agat cheana?" @@ -292,11 +393,15 @@ msgstr "An bhfuil cรณd agat cheana?" msgid "Already signed in as @{0}" msgstr "Logรกilte isteach cheana mar @{0}" -#: src/view/com/composer/GifAltText.tsx:94 src/view/com/composer/photos/Gallery.tsx:144 src/view/com/util/post-embeds/GifEmbed.tsx:173 +#: src/view/com/composer/GifAltText.tsx:93 +#: src/view/com/composer/photos/Gallery.tsx:144 +#: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 src/view/com/modals/EditImage.tsx:316 src/view/screens/AccessibilitySettings.tsx:77 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/modals/EditImage.tsx:316 +#: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" msgstr "Tรฉacs malartach" @@ -308,7 +413,8 @@ msgstr "Tรฉacs Malartach" msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Cuireann an tรฉacs malartach sรญos ar na hรญomhรกnna do dhaoine atรก dall nรณ a bhfuil lagรบ radhairc orthu agus cuireann sรฉ an comhthรฉacs ar fรกil do chuile dhuine." -#: src/view/com/modals/VerifyEmail.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/com/modals/VerifyEmail.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Cuireadh teachtaireacht rรญomhphoist chuig {0}. Tรก cรณd dearbhaithe faoi iamh. Is fรฉidir leat an cรณd a chur isteach thรญos anseo." @@ -321,14 +427,19 @@ msgid "An error occured" msgstr "Tharla earrรกid" #: src/components/dms/MessageMenu.tsx:134 -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." +#~ 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/lib/moderation/useReportOptions.ts:27 msgid "An issue not included in these options" msgstr "Rud nach bhfuil ar fรกil sna roghanna seo" -#: src/components/hooks/useFollowMethods.ts:35 src/components/hooks/useFollowMethods.ts:50 src/view/com/profile/FollowButton.tsx:35 src/view/com/profile/FollowButton.tsx:45 src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198 +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/view/com/profile/FollowButton.tsx:35 +#: src/view/com/profile/FollowButton.tsx:45 +#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 +#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198 msgid "An issue occurred, please try again." msgstr "Tharla fadhb. Dรฉan iarracht eile, le do thoil." @@ -336,7 +447,9 @@ msgstr "Tharla fadhb. Dรฉan iarracht eile, le do thoil." msgid "an unknown error occurred" msgstr "tharla earrรกid nach eol dรบinn" -#: src/view/com/notifications/FeedItem.tsx:258 src/view/com/threadgate/WhoCanReply.tsx:180 +#: src/components/KnownFollowers.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:258 +#: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" msgstr "agus" @@ -360,11 +473,11 @@ msgstr "Teanga na haipe" msgid "App password deleted" msgstr "Pasfhocal na haipe scriosta" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "Nรญ fรฉidir ach litreacha, uimhreacha, spรกsanna, daiseanna agus fostrรญocanna a bheith in ainmneacha phasfhocal na haipe." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 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." @@ -372,23 +485,34 @@ msgstr "Caithfear 4 charachtar ar a laghad a bheith in ainmneacha phasfhocal na msgid "App password settings" msgstr "Socruithe phasfhocal na haipe" -#: src/Navigation.tsx:258 src/view/screens/AppPasswords.tsx:192 src/view/screens/Settings/index.tsx:706 +#: src/Navigation.tsx:264 +#: src/view/screens/AppPasswords.tsx:192 +#: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Pasfhocal na haipe" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Achomharc" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Achomharc in aghaidh lipรฉid \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Achomharc dรฉanta" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 src/screens/Messages/Conversation/ChatDisabled.tsx:53 src/screens/Messages/Conversation/ChatDisabled.tsx:99 src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/components/moderation/LabelsOnMeDialog.tsx:193 +#~ msgid "Appeal submitted." +#~ msgstr "Achomharc dรฉanta" + +#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Dรฉan achomharc i gcoinne an chinnidh seo" @@ -396,7 +520,8 @@ msgstr "Dรฉan achomharc i gcoinne an chinnidh seo" msgid "Appearance" msgstr "Cuma" -#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "Bain รบsรกid as fothaรญ rรฉamhshocraithe a moladh" @@ -404,23 +529,33 @@ msgstr "Bain รบsรกid as fothaรญ rรฉamhshocraithe a moladh" msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "An bhfuil tรบ cinnte gur mhaith leat pasfhocal na haipe โ€œ{name}โ€ a scriosadh?" +#: src/components/dms/MessageMenu.tsx:123 +#, fuzzy +#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." +#~ msgstr "An bhfuil tรบ cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse รญ ach nรญ don duine eile atรก pรกirteach." + #: 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 "An bhfuil tรบ cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse รญ ach nรญ don duine eile atรก pรกirteach." +#: 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." +#~ msgstr "An bhfuil tรบ cinnte gur mhaith leat imeacht รณn gcomhrรก seo? Scriosfar duitse รฉ ach nรญ don duine eile atรก pรกirteach." + #: src/components/dms/LeaveConvoPrompt.tsx: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 "An bhfuil tรบ cinnte gur mhaith leat imeacht รณn gcomhrรก seo? Scriosfar duitse รฉ ach nรญ don duine eile atรก pรกirteach." -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 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/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "An bhfuil tรบ cinnte gur mhaith leat an drรฉacht seo a scriosadh?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Lรกnchinnte?" @@ -440,10 +575,29 @@ msgstr "Lomnochtacht ealaรญonta nรณ gan a bheith gรกirsiรบil." msgid "At least 3 characters" msgstr "3 charachtar ar a laghad" -#: src/components/dms/MessagesListHeader.tsx:75 src/components/moderation/LabelsOnMeDialog.tsx:283 src/components/moderation/LabelsOnMeDialog.tsx:284 src/screens/Login/ChooseAccountForm.tsx:98 src/screens/Login/ChooseAccountForm.tsx:103 src/screens/Login/ForgotPasswordForm.tsx:129 src/screens/Login/ForgotPasswordForm.tsx:135 src/screens/Login/LoginForm.tsx:275 src/screens/Login/LoginForm.tsx:281 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:193 src/view/com/util/ViewHeader.tsx:90 +#: src/components/dms/MessagesListHeader.tsx:75 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/screens/Login/ChooseAccountForm.tsx:98 +#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/ForgotPasswordForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:275 +#: src/screens/Login/LoginForm.tsx:281 +#: 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:193 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Ar ais" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 +#~ msgid "Based on your interest in {interestsText}" +#~ msgstr "Toisc go bhfuil suim agat in {interestsText}" + #: src/view/screens/Settings/index.tsx:496 msgid "Basics" msgstr "Bunrudaรญ" @@ -456,15 +610,18 @@ msgstr "Breithlรก" msgid "Birthday:" msgstr "Breithlรก:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 src/view/com/profile/ProfileMenu.tsx:363 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Blocรกil" -#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 msgid "Block account" msgstr "Blocรกil an cuntas seo" -#: src/view/com/profile/ProfileMenu.tsx:302 src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:302 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Block Account" msgstr "Blocรกil an cuntas seo" @@ -484,7 +641,8 @@ msgstr "Liosta blocรกla" msgid "Block these accounts?" msgstr "An bhfuil fonn ort na cuntais seo a bhlocรกil?" -#: src/view/com/lists/ListCard.tsx:112 src/view/com/util/post-embeds/QuoteEmbed.tsx:75 +#: src/view/com/lists/ListCard.tsx:112 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75 msgid "Blocked" msgstr "Blocรกilte" @@ -492,7 +650,8 @@ msgstr "Blocรกilte" msgid "Blocked accounts" msgstr "Cuntais bhlocรกilte" -#: src/Navigation.tsx:141 src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:140 +#: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Cuntais bhlocรกilte" @@ -524,7 +683,8 @@ msgstr "Nรญ chuirfidh blocรกil cosc ar lipรฉid a bheith curtha ar do chuntas, ac msgid "Blog" msgstr "Blag" -#: src/view/com/auth/server-input/index.tsx:89 src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:91 msgid "Bluesky" msgstr "Bluesky" @@ -532,6 +692,18 @@ 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/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Bluesky is flexible." +#~ msgstr "Tรก Bluesky solรบbtha." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Bluesky is open." +#~ msgstr "Tรก Bluesky oscailte." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Bluesky is public." +#~ msgstr "Tรก Bluesky poiblรญ." + #: 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." 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." @@ -548,7 +720,8 @@ msgstr "Dรฉan รญomhรกnna doilรฉir agus scag รณ fhothaรญ iad" msgid "Books" msgstr "Leabhair" -#: src/screens/Home/NoFeedsPinned.tsx:116 src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "Tabhair sรบil ar fhothaรญ eile" @@ -556,15 +729,23 @@ msgstr "Tabhair sรบil ar fhothaรญ eile" msgid "Business" msgstr "Gnรณ" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "le โ€”" +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 +#~ msgid "by {0}" +#~ msgstr "le {0}" + #: src/components/LabelingServiceCard/index.tsx:56 msgid "By {0}" msgstr "Le {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 +#~ msgid "by @{0}" +#~ msgstr "ag @{0}" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "le <0/>" @@ -572,7 +753,7 @@ msgstr "le <0/>" msgid "By creating an account you agree to the {els}." msgstr "Le cruthรบ an chuntais aontaรญonn tรบ leis na {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "leat" @@ -580,20 +761,47 @@ msgstr "leat" msgid "Camera" msgstr "Ceamara" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "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." -#: 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:417 src/view/com/composer/Composer.tsx:423 src/view/com/modals/ChangeEmail.tsx:213 src/view/com/modals/ChangeEmail.tsx:215 src/view/com/modals/ChangeHandle.tsx:148 src/view/com/modals/ChangePassword.tsx:268 src/view/com/modals/ChangePassword.tsx:271 src/view/com/modals/CreateOrEditList.tsx:344 src/view/com/modals/crop-image/CropImage.web.tsx:162 src/view/com/modals/EditImage.tsx:324 src/view/com/modals/EditProfile.tsx:250 src/view/com/modals/InAppBrowserConsent.tsx:78 src/view/com/modals/InAppBrowserConsent.tsx:80 src/view/com/modals/LinkWarning.tsx:105 src/view/com/modals/LinkWarning.tsx:107 src/view/com/modals/VerifyEmail.tsx:255 src/view/com/modals/VerifyEmail.tsx:261 src/view/com/util/post-ctrls/RepostButton.tsx:136 src/view/screens/Search/Search.tsx:738 src/view/shell/desktop/Search.tsx:218 +#: 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:432 +#: src/view/com/composer/Composer.tsx:438 +#: src/view/com/modals/ChangeEmail.tsx:213 +#: src/view/com/modals/ChangeEmail.tsx:215 +#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/modals/CreateOrEditList.tsx:344 +#: src/view/com/modals/crop-image/CropImage.web.tsx:162 +#: src/view/com/modals/EditImage.tsx:324 +#: src/view/com/modals/EditProfile.tsx:250 +#: src/view/com/modals/InAppBrowserConsent.tsx:78 +#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/LinkWarning.tsx:105 +#: src/view/com/modals/LinkWarning.tsx:107 +#: src/view/com/modals/VerifyEmail.tsx:255 +#: src/view/com/modals/VerifyEmail.tsx:261 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 +#: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Cealaigh" -#: src/view/com/modals/CreateOrEditList.tsx:349 src/view/com/modals/DeleteAccount.tsx:174 src/view/com/modals/DeleteAccount.tsx:296 +#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/DeleteAccount.tsx:174 +#: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" msgid "Cancel" msgstr "Cealaigh" -#: src/view/com/modals/DeleteAccount.tsx:170 src/view/com/modals/DeleteAccount.tsx:292 +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:292 msgid "Cancel account deletion" msgstr "Nรก scrios an chuntas" @@ -609,7 +817,7 @@ msgstr "Cealaigh bearradh na hรญomhรก" msgid "Cancel profile editing" msgstr "Cealaigh eagarthรณireacht na prรณifรญle" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Nรก dรฉan athlua na postรกla" @@ -617,7 +825,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:87 +#: src/view/shell/desktop/Search.tsx:214 msgid "Cancel search" msgstr "Cealaigh an cuardach" @@ -638,7 +847,8 @@ msgstr "Athraigh" msgid "Change handle" msgstr "Athraigh mo leasainm" -#: src/view/com/modals/ChangeHandle.tsx:156 src/view/screens/Settings/index.tsx:729 +#: src/view/com/modals/ChangeHandle.tsx:156 +#: src/view/screens/Settings/index.tsx:729 msgid "Change Handle" msgstr "Athraigh mo leasainm" @@ -650,7 +860,8 @@ msgstr "Athraigh mo rรญomhphost" msgid "Change password" msgstr "Athraigh mo phasfhocal" -#: src/view/com/modals/ChangePassword.tsx:142 src/view/screens/Settings/index.tsx:774 +#: src/view/com/modals/ChangePassword.tsx:142 +#: src/view/screens/Settings/index.tsx:774 msgid "Change Password" msgstr "Athraigh mo phasfhocal" @@ -662,7 +873,9 @@ msgstr "Athraigh an teanga phostรกla go {0}" msgid "Change Your Email" msgstr "Athraigh do rรญomhphost" -#: src/Navigation.tsx:302 src/view/shell/bottom-bar/BottomBar.tsx:201 src/view/shell/desktop/LeftNav.tsx:295 +#: src/Navigation.tsx:308 +#: src/view/shell/bottom-bar/BottomBar.tsx:201 +#: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" msgstr "Comhrรก" @@ -670,11 +883,16 @@ msgstr "Comhrรก" msgid "Chat muted" msgstr "Balbhaรญodh an comhrรก" -#: src/components/dms/ConvoMenu.tsx:112 src/components/dms/MessageMenu.tsx:81 src/Navigation.tsx:307 src/screens/Messages/List/index.tsx:88 src/view/screens/Settings/index.tsx:638 +#: src/components/dms/ConvoMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:313 +#: src/screens/Messages/List/index.tsx:88 +#: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" msgstr "Socruithe comhrรก" -#: src/screens/Messages/Settings.tsx:59 src/view/screens/Settings/index.tsx:647 +#: src/screens/Messages/Settings.tsx:59 +#: src/view/screens/Settings/index.tsx:647 msgid "Chat Settings" msgstr "Socruithe Comhrรก" @@ -683,13 +901,22 @@ msgid "Chat unmuted" msgstr "Dรญbhalbhaรญodh an comhrรก" #: src/screens/Messages/Conversation/index.tsx:26 -msgid "Chat with {chatId}" -msgstr "Comhrรก le {chatId}" +#~ msgid "Chat with {chatId}" +#~ msgstr "Comhrรก le {chatId}" -#: src/screens/SignupQueued.tsx:78 src/screens/SignupQueued.tsx:82 +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 msgid "Check my status" msgstr "Seiceรกil mo stรกdas" +#: 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 "Cuir sรบil ar na fothaรญ seo. Brรบigh + len iad a chur le liosta na bhfothaรญ atรก greamaithe agat." + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 +#~ 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:268 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 รฉ." @@ -710,10 +937,18 @@ msgstr "Roghnaigh Seirbhรญs" msgid "Choose the algorithms that power your custom feeds." msgstr "Roghnaigh na halgartaim le haghaidh do chuid sainfhothaรญ." +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Choose the algorithms that power your experience with custom feeds." +#~ msgstr "Roghnaigh na halgartaim a shainรญonn an dรณigh a n-oibrรญonn do chuid sainfhothaรญ." + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" msgstr "Roghnaigh an dath seo mar abhatรกr duit" +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 +#~ msgid "Choose your main feeds" +#~ msgstr "Roghnaigh do phrรญomhfhothaรญ" + #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" @@ -734,7 +969,8 @@ msgstr "Glan na sonraรญ ar fad atรก i dtaisce." msgid "Clear all storage data (restart after this)" msgstr "Glan na sonraรญ ar fad atรก i dtaisce. Ansin atosaigh." -#: src/view/com/util/forms/SearchInput.tsx:88 src/view/screens/Search/Search.tsx:864 +#: src/view/com/util/forms/SearchInput.tsx:88 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Glan an cuardach" @@ -758,10 +994,19 @@ msgstr "Cliceรกil anseo le tuilleadh a fhoghlaim faoi dhรญghnรญomhรบ do chuntais msgid "Click here for more information." msgstr "Cliceรกil anseo do bhreis eolais." +#: src/screens/Feeds/NoFollowingFeed.tsx:46 +#, fuzzy +#~ msgid "Click here to add one." +#~ msgstr "Cliceรกil anseo do bhreis eolais." + #: src/components/TagMenu/index.web.tsx:138 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/RichText.tsx:198 +#~ 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 msgid "Click to retry failed message" msgstr "Cliceรกil le triail eile a bhaint as teachtaireacht ar theip uirthi" @@ -774,11 +1019,17 @@ msgstr "Aerรกid" msgid "Clip ๐Ÿด clop ๐Ÿด" 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/view/com/modals/ChangePassword.tsx:268 src/view/com/modals/ChangePassword.tsx:271 src/view/com/util/post-embeds/GifEmbed.tsx:185 +#: src/components/dialogs/GifSelect.ios.tsx:250 +#: src/components/dialogs/GifSelect.tsx:268 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/util/post-embeds/GifEmbed.tsx:185 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:113 +#: src/components/Dialog/index.web.tsx:251 msgid "Close active dialog" msgstr "Dรบn an dialรณg oscailte" @@ -790,7 +1041,8 @@ msgstr "Dรบn an rabhadh" msgid "Close bottom drawer" msgstr "Dรบn an tarraiceรกn รญochtair" -#: src/components/dialogs/GifSelect.ios.tsx:244 src/components/dialogs/GifSelect.tsx:262 +#: src/components/dialogs/GifSelect.ios.tsx:244 +#: src/components/dialogs/GifSelect.tsx:262 msgid "Close dialog" msgstr "Dรบn an dialรณg" @@ -814,7 +1066,8 @@ msgstr "Dรบn an fhuinneog" msgid "Close navigation footer" msgstr "Dรบn an buntรกsc" -#: src/components/Menu/index.tsx:209 src/components/TagMenu/index.tsx:262 +#: src/components/Menu/index.tsx:209 +#: src/components/TagMenu/index.tsx:262 msgid "Close this dialog" msgstr "Dรบn an dialรณg seo" @@ -826,7 +1079,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:419 +#: src/view/com/composer/Composer.tsx:434 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" @@ -850,7 +1103,8 @@ msgstr "Greann" msgid "Comics" msgstr "Greannรกin" -#: src/Navigation.tsx:248 src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:254 +#: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Treoirlรญnte an phobail" @@ -862,7 +1116,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:536 +#: src/view/com/composer/Composer.tsx:551 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" @@ -870,6 +1124,10 @@ msgstr "Scrรญobh postรกlacha chomh fada le {MAX_GRAPHEME_LENGTH} litir agus cara msgid "Compose reply" msgstr "Scrรญobh freagra" +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 +#~ msgid "Configure content filtering setting for category: {0}" +#~ msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {0}" + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {name}" @@ -878,11 +1136,20 @@ msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {name}" msgid "Configured in <0>moderation settings." msgstr "Le socrรบ i <0>socruithe na modhnรณireachta." -#: src/components/Prompt.tsx:159 src/components/Prompt.tsx:162 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 +#: src/components/Prompt.tsx:159 +#: src/components/Prompt.tsx:162 +#: 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" msgstr "Dearbhaigh" -#: src/view/com/modals/ChangeEmail.tsx:188 src/view/com/modals/ChangeEmail.tsx:190 +#: src/view/com/modals/ChangeEmail.tsx:188 +#: src/view/com/modals/ChangeEmail.tsx:190 msgid "Confirm Change" msgstr "Dearbhaigh an t-athrรบ" @@ -902,7 +1169,13 @@ msgstr "Dearbhaigh d'aois:" msgid "Confirm your birthdate" msgstr "Dearbhaigh do bhreithlรก" -#: src/screens/Login/LoginForm.tsx:250 src/view/com/modals/ChangeEmail.tsx:152 src/view/com/modals/DeleteAccount.tsx:238 src/view/com/modals/DeleteAccount.tsx:244 src/view/com/modals/VerifyEmail.tsx:173 src/view/screens/Settings/DisableEmail2FADialog.tsx:143 src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/screens/Login/LoginForm.tsx:250 +#: src/view/com/modals/ChangeEmail.tsx:152 +#: src/view/com/modals/DeleteAccount.tsx:238 +#: src/view/com/modals/DeleteAccount.tsx:244 +#: src/view/com/modals/VerifyEmail.tsx:173 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 msgid "Confirmation code" msgstr "Cรณd dearbhaithe" @@ -914,6 +1187,10 @@ msgstr "Ag nascadhโ€ฆ" msgid "Contact support" msgstr "Teagmhรกil le Support" +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "content" +#~ msgstr "รกbhar" + #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" msgstr "รbhar Blocรกilte" @@ -922,15 +1199,20 @@ msgstr "รbhar Blocรกilte" msgid "Content filters" msgstr "Scagthaรญ รกbhair" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 src/view/screens/LanguageSettings.tsx:280 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Teangacha รกbhair" -#: src/components/moderation/ModerationDetailsDialog.tsx:75 src/lib/moderation/useModerationCauseDescription.ts:77 +#: src/components/moderation/ModerationDetailsDialog.tsx:75 +#: src/lib/moderation/useModerationCauseDescription.ts:77 msgid "Content Not Available" msgstr "รbhar nach bhfuil ar fรกil" -#: src/components/moderation/ModerationDetailsDialog.tsx:46 src/components/moderation/ScreenHider.tsx:99 src/lib/moderation/useGlobalLabelStrings.ts:22 src/lib/moderation/useModerationCauseDescription.ts:40 +#: src/components/moderation/ModerationDetailsDialog.tsx:46 +#: src/components/moderation/ScreenHider.tsx:99 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:40 msgid "Content Warning" msgstr "Rabhadh รกbhair" @@ -942,7 +1224,8 @@ 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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Lean ar aghaidh" @@ -950,11 +1233,25 @@ msgstr "Lean ar aghaidh" msgid "Continue as {0} (currently signed in)" msgstr "Lean ort mar {0} (atรก logรกilte isteach faoi lรกthair)" -#: src/screens/Onboarding/StepInterests/index.tsx:250 src/screens/Onboarding/StepProfile/index.tsx:265 src/screens/Signup/index.tsx:213 +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepProfile/index.tsx:266 +#: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 +#~ msgid "Continue to the next step" +#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 +#~ msgid "Continue to the next step without following any accounts" +#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile gan aon chuntas a leanรบint" + +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "Scriosadh an comhrรก" @@ -962,7 +1259,8 @@ msgstr "Scriosadh an comhrรก" msgid "Cooking" msgstr "Cรณcaireacht" -#: src/view/com/modals/AddAppPasswords.tsx:221 src/view/com/modals/InviteCodes.tsx:183 +#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Cรณipeรกilte" @@ -970,7 +1268,11 @@ msgstr "Cรณipeรกilte" msgid "Copied build version to clipboard" msgstr "Leagan cรณipeรกilte sa ghearrthaisce" -#: src/components/dms/MessageMenu.tsx:57 src/view/com/modals/AddAppPasswords.tsx:81 src/view/com/modals/ChangeHandle.tsx:320 src/view/com/modals/InviteCodes.tsx:153 src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/components/dms/MessageMenu.tsx:57 +#: 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:182 msgid "Copied to clipboard" msgstr "Cรณipeรกilte sa ghearrthaisce" @@ -978,11 +1280,11 @@ msgstr "Cรณipeรกilte sa ghearrthaisce" msgid "Copied!" msgstr "Cรณipeรกilte!" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Cรณipeรกlann sรฉ seo pasfhocal na haipe" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Cรณipeรกil" @@ -990,7 +1292,8 @@ msgstr "Cรณipeรกil" msgid "Copy {0}" msgstr "Cรณipeรกil {0}" -#: src/components/dialogs/Embed.tsx:120 src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:120 +#: src/components/dialogs/Embed.tsx:139 msgid "Copy code" msgstr "Cรณipeรกil an cรณd" @@ -998,19 +1301,23 @@ msgstr "Cรณipeรกil an cรณd" msgid "Copy link to list" msgstr "Cรณipeรกil an nasc leis an liosta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Cรณipeรกil an nasc leis an bpostรกil" -#: src/components/dms/MessageMenu.tsx:110 src/components/dms/MessageMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:110 +#: src/components/dms/MessageMenu.tsx:112 msgid "Copy message text" msgstr "Cรณipeรกil tรฉacs na teachtaireachta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Cรณipeรกil tรฉacs na postรกla" -#: src/Navigation.tsx:253 src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:259 +#: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "An polasaรญ maidir le cรณipcheart" @@ -1027,14 +1334,20 @@ msgid "Could not load list" msgstr "Nรญ fรฉidir an liosta a lรณdรกil" #: src/components/dms/NewChat.tsx:241 -msgid "Could not load profiles. Please try again later." -msgstr "Nรญorbh fhรฉidir prรณifรญlรญ a lรณdรกil. Bain triail eile as ar ball." +#~ msgid "Could not load profiles. Please try again later." +#~ msgstr "Nรญorbh fhรฉidir prรณifรญlรญ a lรณdรกil. Bain triail eile as ar ball." #: src/components/dms/ConvoMenu.tsx:88 msgid "Could not mute chat" msgstr "Nรญor รฉirรญodh ar an gcomhrรก a bhalbhรบ" -#: src/view/com/auth/SplashScreen.tsx:57 src/view/com/auth/SplashScreen.web.tsx:106 +#: src/components/dms/ConvoMenu.tsx:68 +#, fuzzy +#~ msgid "Could not unmute chat" +#~ msgstr "Nรญor รฉirรญodh ar an gcomhrรก a bhalbhรบ" + +#: src/view/com/auth/SplashScreen.tsx:57 +#: src/view/com/auth/SplashScreen.web.tsx:106 msgid "Create a new account" msgstr "Cruthaigh cuntas nua" @@ -1046,19 +1359,21 @@ msgstr "Cruthaigh cuntas nua Bluesky" msgid "Create Account" msgstr "Cruthaigh cuntas" -#: src/components/dialogs/Signin.tsx:86 src/components/dialogs/Signin.tsx:88 +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 msgid "Create an account" msgstr "Cruthaigh cuntas" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "Cruthaigh abhatรกr nua ina ionad sin" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Cruthaigh pasfhocal aipe" -#: src/view/com/auth/SplashScreen.tsx:48 src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.tsx:48 +#: src/view/com/auth/SplashScreen.web.tsx:97 msgid "Create new account" msgstr "Cruthaigh cuntas nua" @@ -1070,11 +1385,16 @@ msgstr "Cruthaigh tuairisc do {0}" msgid "Created {0}" msgstr "Cruthaรญodh {0}" +#: src/view/com/composer/Composer.tsx:469 +#~ msgid "Creates a card with a thumbnail. The card links to {url}" +#~ msgstr "Cruthaรญonn sรฉ seo cรกrta le mionsamhail. Nascann an cรกrta le {url}." + #: src/screens/Onboarding/index.tsx:26 msgid "Culture" msgstr "Cultรบr" -#: src/view/com/auth/server-input/index.tsx:97 src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:97 +#: src/view/com/auth/server-input/index.tsx:99 msgid "Custom" msgstr "Saincheaptha" @@ -1082,7 +1402,7 @@ msgstr "Saincheaptha" msgid "Custom domain" msgstr "Sainfhearann" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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" @@ -1090,7 +1410,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:458 +#: src/view/screens/Settings/index.tsx:484 msgid "Dark" msgstr "Dorcha" @@ -1106,7 +1427,8 @@ msgstr "Tรฉama Dorcha" msgid "Date of birth" msgstr "Dรกta breithe" -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 src/view/screens/Settings/index.tsx:806 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +#: src/view/screens/Settings/index.tsx:806 msgid "Deactivate account" msgstr "Dรญghnรญomhaigh mo chuntas" @@ -1122,7 +1444,10 @@ msgstr "Dรญfhabhtaigh Modhnรณireacht" msgid "Debug panel" msgstr "Painรฉal dรญfhabhtaithe" -#: src/components/dms/MessageMenu.tsx:151 src/view/com/util/forms/PostDropdownBtn.tsx:436 src/view/screens/AppPasswords.tsx:285 src/view/screens/ProfileList.tsx:667 +#: src/components/dms/MessageMenu.tsx:151 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 +#: src/view/screens/AppPasswords.tsx:285 +#: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Scrios" @@ -1130,6 +1455,10 @@ msgstr "Scrios" msgid "Delete account" msgstr "Scrios an cuntas" +#: src/view/com/modals/DeleteAccount.tsx:87 +#~ msgid "Delete Account" +#~ msgstr "Scrios an Cuntas" + #: src/view/com/modals/DeleteAccount.tsx:105 msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Scrios Cuntas <0>\"<1>{0}<2>\"" @@ -1142,7 +1471,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:890 +#: src/view/screens/Settings/index.tsx:893 msgid "Delete chat declaration record" msgstr "Scrios taifead dearbhaithe comhrรก" @@ -1170,7 +1500,8 @@ msgstr "Scrios mo chuntas" msgid "Delete My Accountโ€ฆ" msgstr "Scrios mo chuntasโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Scrios an phostรกil" @@ -1178,7 +1509,7 @@ msgstr "Scrios an phostรกil" msgid "Delete this list?" msgstr "An bhfuil fonn ort an liosta seo a scriosadh?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "An bhfuil fonn ort an phostรกil seo a scriosadh?" @@ -1194,15 +1525,18 @@ msgstr "Scriosadh an phostรกil." msgid "Deletes the chat declaration record" msgstr "Scriosann sรฉ seo an taifead dearbhaithe comhrรก" -#: src/view/com/modals/CreateOrEditList.tsx:289 src/view/com/modals/CreateOrEditList.tsx:310 src/view/com/modals/EditProfile.tsx:199 src/view/com/modals/EditProfile.tsx:211 +#: src/view/com/modals/CreateOrEditList.tsx:289 +#: src/view/com/modals/CreateOrEditList.tsx:310 +#: src/view/com/modals/EditProfile.tsx:199 +#: src/view/com/modals/EditProfile.tsx:211 msgid "Description" msgstr "Cur sรญos" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "Tรฉacs malartach tuairisciรบil" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Ar mhaith leat rud รฉigin a rรก?" @@ -1226,27 +1560,42 @@ msgstr "Nรก hรบsรกid 2FA trรญ rรญomhphost" msgid "Disable haptic feedback" msgstr "Nรก hรบsรกid aiseolas haptach" -#: src/lib/moderation/useLabelBehaviorDescription.ts:32 src/lib/moderation/useLabelBehaviorDescription.ts:42 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/view/screens/Settings/index.tsx:697 +#~ msgid "Disable haptics" +#~ msgstr "Nรก hรบsรกid aiseolas haptach" + +#: src/view/screens/Settings/index.tsx:697 +#~ msgid "Disable vibrations" +#~ msgstr "Nรก hรบsรกid creathadh" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:140 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Moderation/index.tsx:341 msgid "Disabled" msgstr "Dรญchumasaithe" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Nรก sรกbhรกil" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 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:518 +#: src/screens/Moderation/index.tsx:522 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/view/com/posts/FollowingEmptyState.tsx:74 src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Aimsigh sainfhothaรญ nua" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Aimsigh Fothaรญ Nua" @@ -1278,11 +1627,32 @@ msgstr "Luach an Fhearainn" msgid "Domain verified!" msgstr "Fearann dearbhaithe!" -#: src/components/dialogs/BirthDateSettings.tsx:119 src/components/dialogs/BirthDateSettings.tsx:125 src/components/forms/DateField/index.tsx:74 src/components/forms/DateField/index.tsx:80 src/screens/Onboarding/StepProfile/index.tsx:321 src/screens/Onboarding/StepProfile/index.tsx:324 src/view/com/auth/server-input/index.tsx:169 src/view/com/auth/server-input/index.tsx:170 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/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/forms/DateField/index.tsx:74 +#: src/components/forms/DateField/index.tsx:80 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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/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 msgid "Done" 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:130 src/view/com/modals/Threadgate.tsx:133 src/view/com/modals/UserAddRemoveLists.tsx:108 src/view/com/modals/UserAddRemoveLists.tsx:111 src/view/screens/PreferencesThreads.tsx:162 +#: 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:130 +#: src/view/com/modals/Threadgate.tsx:133 +#: 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" @@ -1291,7 +1661,8 @@ msgstr "Dรฉanta" msgid "Done{extraText}" msgstr "Dรฉanta{extraText}" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:77 +#: src/view/screens/Settings/ExportCarDialog.tsx:81 msgid "Download CAR file" msgstr "รoslรณdรกil comhad CAR" @@ -1299,6 +1670,10 @@ msgstr "รoslรณdรกil comhad CAR" msgid "Drop to add images" msgstr "Scaoil anseo chun รญomhรกnna a chur leis" +#: 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 "De bharr pholasaรญ Apple, nรญ fรฉidir รกbhar do dhaoine fรกsta ar an nGrรฉasรกn a fhรกil roimh an logรกil isteach a chrรญochnรบ." + #: src/view/com/modals/ChangeHandle.tsx:252 msgid "e.g. alice" msgstr "m.sh. cรกit" @@ -1339,16 +1714,23 @@ 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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" msgstr "Eagar" -#: src/view/com/util/UserAvatar.tsx:312 src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:312 +#: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Cuir an t-abhatรกr in eagar" -#: src/view/com/composer/photos/Gallery.tsx:151 src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/Gallery.tsx:151 +#: src/view/com/modals/EditImage.tsx:208 msgid "Edit image" msgstr "Cuir an รญomhรก seo in eagar" @@ -1360,7 +1742,10 @@ msgstr "Athraigh mionsonraรญ an liosta" msgid "Edit Moderation List" msgstr "Athraigh liosta na modhnรณireachta" -#: src/Navigation.tsx:263 src/view/screens/Feeds.tsx:495 src/view/screens/SavedFeeds.tsx:93 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 +#: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaรญ" @@ -1368,17 +1753,19 @@ msgstr "Athraigh mo chuid fothaรญ" msgid "Edit my profile" msgstr "Athraigh mo phrรณifรญl" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Athraigh an phrรณifรญl" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "Athraigh an Phrรณifรญl" -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "Athraigh na fothaรญ sรกbhรกilte" +#: src/view/com/home/HomeHeaderLayout.web.tsx:NaN +#~ msgid "Edit Saved Feeds" +#~ msgstr "Athraigh na fothaรญ sรกbhรกilte" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1396,7 +1783,8 @@ msgstr "Athraigh an cur sรญos ort sa phrรณifรญl" msgid "Education" msgstr "Oideachas" -#: src/screens/Signup/StepInfo/index.tsx:80 src/view/com/modals/ChangeEmail.tsx:136 +#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Rรญomhphost" @@ -1408,7 +1796,8 @@ msgstr "Nรญl 2FA trรญ rรญomhphost ar fรกil a thuilleadh" msgid "Email address" msgstr "Seoladh rรญomhphoist" -#: src/view/com/modals/ChangeEmail.tsx:54 src/view/com/modals/ChangeEmail.tsx:83 +#: src/view/com/modals/ChangeEmail.tsx:54 +#: src/view/com/modals/ChangeEmail.tsx:83 msgid "Email updated" msgstr "Seoladh rรญomhphoist uasdรกtaithe" @@ -1428,7 +1817,9 @@ msgstr "Rรญomhphost:" msgid "Embed HTML code" msgstr "Leabaigh an cรณd HTML" -#: src/components/dialogs/Embed.tsx:97 src/view/com/util/forms/PostDropdownBtn.tsx:327 src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/components/dialogs/Embed.tsx:97 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "Leabaigh an phostรกil" @@ -1444,7 +1835,16 @@ msgstr "Cuir {0} amhรกin ar fรกil" msgid "Enable adult content" msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil" -#: src/components/dialogs/EmbedConsent.tsx:82 src/components/dialogs/EmbedConsent.tsx:89 +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 +#~ msgid "Enable Adult Content" +#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:NaN +#~ msgid "Enable adult content in your feeds" +#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil i do chuid fothaรญ" + +#: src/components/dialogs/EmbedConsent.tsx:82 +#: src/components/dialogs/EmbedConsent.tsx:89 msgid "Enable external media" msgstr "Cuir meรกin sheachtracha ar fรกil" @@ -1460,7 +1860,9 @@ msgstr "Cuir an socrรบ seo ar siรบl le gan ach freagraรญ i measc na ndaoine a le msgid "Enable this source only" 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/Messages/Settings.tsx:131 +#: src/screens/Messages/Settings.tsx:134 +#: src/screens/Moderation/index.tsx:339 msgid "Enabled" msgstr "Cumasaithe" @@ -1468,7 +1870,12 @@ msgstr "Cumasaithe" msgid "End of feed" msgstr "Deireadh an fhotha" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/components/Lists.tsx:52 +#, fuzzy +#~ msgid "End of list" +#~ msgstr "Curtha leis an liosta" + +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Cuir isteach ainm don phasfhocal aipe seo" @@ -1476,7 +1883,8 @@ msgstr "Cuir isteach ainm don phasfhocal aipe seo" msgid "Enter a password" msgstr "Cuir pasfhocal isteach" -#: src/components/dialogs/MutedWords.tsx:100 src/components/dialogs/MutedWords.tsx:101 +#: src/components/dialogs/MutedWords.tsx:99 +#: src/components/dialogs/MutedWords.tsx:100 msgid "Enter a word or tag" msgstr "Cuir focal na clib isteach" @@ -1500,7 +1908,8 @@ msgstr "Cuir isteach an seoladh rรญomhphoist a dโ€™รบsรกid tรบ le do chuntas a c 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/Login/ForgotPasswordForm.tsx:105 +#: src/screens/Signup/StepInfo/index.tsx:92 msgid "Enter your email address" msgstr "Cuir isteach do sheoladh rรญomhphoist" @@ -1524,7 +1933,8 @@ 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/view/screens/Search/Search.tsx:115 +#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Earrรกid:" @@ -1536,7 +1946,10 @@ msgstr "Chuile dhuine" msgid "Everybody can reply" msgstr "Tig le chuile dhuine freagra a thabhairt" -#: src/components/dms/MessagesNUX.tsx:131 src/components/dms/MessagesNUX.tsx:134 src/screens/Messages/Settings.tsx:75 src/screens/Messages/Settings.tsx:78 +#: 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 "Chuile dhuine" @@ -1564,7 +1977,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:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Exits inputting search query" msgstr "Fรกgann sรฉ seo an cuardach" @@ -1576,7 +1990,8 @@ msgstr "Taispeรกin an tรฉacs malartach ina iomlรกine" msgid "Expand list of users" msgstr "Leathnaigh an liosta รบsรกideoirรญ" -#: src/view/com/composer/ComposerReplyTo.tsx:82 src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:82 +#: src/view/com/composer/ComposerReplyTo.tsx:85 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" @@ -1592,19 +2007,24 @@ msgstr "รomhรกnna gnรฉasacha." 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/ExportCarDialog.tsx:62 +#: src/view/screens/Settings/index.tsx:797 msgid "Export My Data" msgstr "Easpรณrtรกil mo chuid sonraรญ" -#: src/components/dialogs/EmbedConsent.tsx:55 src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:55 +#: src/components/dialogs/EmbedConsent.tsx:59 msgid "External Media" msgstr "Meรกin sheachtracha" -#: src/components/dialogs/EmbedConsent.tsx:71 src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/components/dialogs/EmbedConsent.tsx:71 +#: src/view/screens/PreferencesExternalEmbeds.tsx:67 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:282 src/view/screens/PreferencesExternalEmbeds.tsx:53 src/view/screens/Settings/index.tsx:679 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesExternalEmbeds.tsx:53 +#: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" msgstr "Roghanna maidir le meรกin sheachtracha" @@ -1612,7 +2032,8 @@ msgstr "Roghanna maidir le meรกin sheachtracha" msgid "External media settings" msgstr "Socruithe maidir le meรกin sheachtracha" -#: src/view/com/modals/AddAppPasswords.tsx:120 src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Teip ar phasfhocal aipe a chruthรบ." @@ -1624,11 +2045,12 @@ msgstr "Teip ar chruthรบ an liosta. Seiceรกil do nasc leis an idirlรญon agus dรฉ msgid "Failed to delete message" msgstr "Teip ar theachtaireacht a scriosadh" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "Teip ar scriosadh na postรกla. Dรฉan iarracht eile." -#: src/components/dialogs/GifSelect.ios.tsx:196 src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.ios.tsx:196 +#: src/components/dialogs/GifSelect.tsx:212 msgid "Failed to load GIFs" msgstr "Theip ar lรณdรกil na GIFanna" @@ -1636,6 +2058,15 @@ msgstr "Theip ar lรณdรกil na GIFanna" msgid "Failed to load past messages" msgstr "Teip ar theachtaireachtaรญ roimhe seo a lรณdรกil" +#: src/screens/Messages/Conversation/MessageListError.tsx:28 +#, fuzzy +#~ msgid "Failed to load past messages." +#~ msgstr "Teip ar theachtaireachtaรญ roimhe seo a lรณdรกil" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:NaN +#~ msgid "Failed to load recommended feeds" +#~ msgstr "Teip ar lรณdรกil na bhfothaรญ molta" + #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Failed to save image: {0}" msgstr "Nรญor sรกbhรกladh an รญomhรก: {0}" @@ -1644,38 +2075,59 @@ msgstr "Nรญor sรกbhรกladh an รญomhรก: {0}" msgid "Failed to send" msgstr "Teip ar sheoladh" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/screens/Messages/Conversation/MessageListError.tsx:29 +#, fuzzy +#~ msgid "Failed to send message(s)." +#~ msgstr "Teip ar theachtaireacht a scriosadh" + +#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: 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/components/dms/MessagesNUX.tsx:60 src/screens/Messages/Settings.tsx:35 +#: src/components/dms/MessagesNUX.tsx:60 +#: src/screens/Messages/Settings.tsx:35 msgid "Failed to update settings" msgstr "Teip ar shocruithe a uasdรกtรบ" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Fotha" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Fotha le {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Fotha as lรญne" -#: src/view/shell/desktop/RightNav.tsx:66 src/view/shell/Drawer.tsx:344 +#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Aiseolas" -#: src/Navigation.tsx:511 src/view/screens/Feeds.tsx:480 src/view/screens/Feeds.tsx:596 src/view/screens/Profile.tsx:197 src/view/shell/desktop/LeftNav.tsx:367 src/view/shell/Drawer.tsx:492 src/view/shell/Drawer.tsx:493 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 +#: src/view/screens/Profile.tsx:197 +#: src/view/shell/desktop/LeftNav.tsx:367 +#: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Fothaรญ" +#: 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 "Is iad na hรบsรกideoirรญ a chruthaรญonn na fothaรญ le hรกbhar is spรฉis leo a chur ar fรกil. Roghnaigh cรบpla fotha a bhfuil suim agat iontu." + #: src/view/screens/SavedFeeds.tsx:180 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Is sainalgartaim iad na fothaรญ. Cruthaรญonn รบsรกideoirรญ a bhfuil beagรกn taithรญ acu ar chรณdรกil iad. <0/> le tuilleadh eolais a fhรกil." +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 +#~ msgid "Feeds can be topical as well!" +#~ msgstr "Is fรฉidir le fothaรญ a bheith bunaithe ar chรบrsaรญ reatha freisin!" + #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" msgstr "รbhar an Chomhaid" @@ -1692,14 +2144,28 @@ msgstr "Scag รณ mo chuid fothaรญ" msgid "Finalizing" msgstr "Ag cur crรญch air" -#: src/view/com/posts/CustomFeedEmptyState.tsx:47 src/view/com/posts/FollowingEmptyState.tsx:57 src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Aimsigh fothaรญ le leanรบint" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Aimsigh postรกlacha agus รบsรกideoirรญ ar Bluesky" +#: src/view/screens/Search/Search.tsx:589 +#~ msgid "Find users on Bluesky" +#~ msgstr "Aimsigh รบsรกideoirรญ ar Bluesky" + +#: src/view/screens/Search/Search.tsx:587 +#~ msgid "Find users with the search tool on the right" +#~ msgstr "Aimsigh รบsรกideoirรญ leis an uirlis chuardaigh ar dheis" + +#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 +#~ msgid "Finding similar accounts..." +#~ msgstr "Cuntais eile atรก cosรบil leis seo รก n-aimsiรบ..." + #: src/view/screens/PreferencesFollowingFeed.tsx:110 msgid "Fine-tune the content you see on your Following feed." msgstr "Mionathraigh an t-รกbhar a fheiceann tรบ ar an bhfotha Following." @@ -1720,11 +2186,16 @@ msgstr "Solรบbtha" msgid "Flip horizontal" msgstr "Iompaigh go cothromรกnach รฉ" -#: src/view/com/modals/EditImage.tsx:121 src/view/com/modals/EditImage.tsx:288 +#: src/view/com/modals/EditImage.tsx:121 +#: src/view/com/modals/EditImage.tsx:288 msgid "Flip vertically" msgstr "Iompaigh go hingearach รฉ" -#: src/components/ProfileHoverCard/index.web.tsx:412 src/components/ProfileHoverCard/index.web.tsx:423 src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 src/view/com/post-thread/PostThreadFollowBtn.tsx:146 src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 +#: src/components/ProfileHoverCard/index.web.tsx:412 +#: src/components/ProfileHoverCard/index.web.tsx:423 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 +#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" msgstr "Lean" @@ -1733,7 +2204,8 @@ msgctxt "action" msgid "Follow" msgstr "Lean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 src/view/com/post-thread/PostThreadFollowBtn.tsx:128 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Lean {0}" @@ -1741,14 +2213,31 @@ msgstr "Lean {0}" msgid "Follow {name}" msgstr "Lean {name}" -#: src/view/com/profile/ProfileMenu.tsx:244 src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:244 +#: src/view/com/profile/ProfileMenu.tsx:255 msgid "Follow Account" msgstr "Lean an cuntas seo" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#~ msgid "Follow All" +#~ msgstr "Lean iad uile" + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" msgstr "Lean Ar Ais" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +#~ msgid "Follow selected accounts and continue to the next step" +#~ msgstr "Lean na cuntais roghnaithe agus tรฉigh ar aghaidh go dtรญ an chรฉad chรฉim eile" + +#: 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 "Lean cรบpla cuntas mar thosรบ. Tig linn nรญos mรณ รบsรกideoirรญ a mholadh duit a mbeadh suim agat iontu." + +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Leanta ag {0}" @@ -1765,15 +2254,32 @@ msgstr "Cuntais a leanann tรบ amhรกin" msgid "followed you" msgstr "โ€” lean sรฉ/sรญ thรบ" -#: src/view/com/profile/ProfileFollowers.tsx:104 src/view/screens/ProfileFollowers.tsx:25 +#: src/view/com/profile/ProfileFollowers.tsx:104 +#: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Leantรณirรญ" -#: src/components/ProfileHoverCard/index.web.tsx:411 src/components/ProfileHoverCard/index.web.tsx:422 src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 src/view/com/post-thread/PostThreadFollowBtn.tsx:149 src/view/com/profile/ProfileFollows.tsx:104 src/view/screens/Feeds.tsx:683 src/view/screens/ProfileFollows.tsx:25 src/view/screens/SavedFeeds.tsx:415 +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:411 +#: src/components/ProfileHoverCard/index.web.tsx:422 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 +#: src/view/com/profile/ProfileFollows.tsx:104 +#: src/view/screens/Feeds.tsx:656 +#: src/view/screens/ProfileFollows.tsx:25 +#: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "ร leanรบint" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Ag leanรบint {0}" @@ -1785,7 +2291,9 @@ msgstr "Ag leanacht {name}" msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:269 src/view/com/home/HomeHeaderLayout.web.tsx:64 src/view/com/home/HomeHeaderLayoutMobile.tsx:87 src/view/screens/PreferencesFollowingFeed.tsx:103 src/view/screens/Settings/index.tsx:582 +#: src/Navigation.tsx:275 +#: src/view/screens/PreferencesFollowingFeed.tsx:103 +#: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" @@ -1805,11 +2313,12 @@ 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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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รบ." -#: src/screens/Login/index.tsx:129 src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:129 +#: src/screens/Login/index.tsx:144 msgid "Forgot Password" msgstr "Pasfhocal dearmadta" @@ -1842,11 +2351,12 @@ msgstr "Gailearaรญ" msgid "Get started" msgstr "Tรบs maith" -#: src/view/com/modals/VerifyEmail.tsx:197 src/view/com/modals/VerifyEmail.tsx:199 +#: src/view/com/modals/VerifyEmail.tsx:197 +#: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" msgstr "Ar aghaidh leat anois!" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "Tabhair gnรบis do do phrรณifรญl" @@ -1854,15 +2364,32 @@ msgstr "Tabhair gnรบis do do phrรณifรญl" msgid "Glaring violations of law or terms of service" 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:82 src/view/com/auth/LoggedOut.tsx:83 src/view/screens/NotFound.tsx:55 src/view/screens/ProfileFeed.tsx:111 src/view/screens/ProfileList.tsx:970 src/view/shell/desktop/LeftNav.tsx:127 +#: src/components/moderation/ScreenHider.tsx:151 +#: src/components/moderation/ScreenHider.tsx:160 +#: src/view/com/auth/LoggedOut.tsx:82 +#: src/view/com/auth/LoggedOut.tsx:83 +#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileList.tsx:970 +#: src/view/shell/desktop/LeftNav.tsx:127 msgid "Go back" msgstr "Ar ais" -#: src/components/Error.tsx:103 src/screens/Profile/ErrorState.tsx:62 src/screens/Profile/ErrorState.tsx:66 src/view/screens/NotFound.tsx:54 src/view/screens/ProfileFeed.tsx:116 src/view/screens/ProfileList.tsx:975 +#: src/components/Error.tsx:103 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Ar ais" -#: src/components/dms/ReportDialog.tsx:152 src/components/ReportDialog/SelectReportOptionView.tsx:77 src/components/ReportDialog/SubmitView.tsx:105 src/screens/Onboarding/Layout.tsx:102 src/screens/Onboarding/Layout.tsx:191 src/screens/Signup/index.tsx:187 +#: src/components/dms/ReportDialog.tsx:154 +#: src/components/ReportDialog/SelectReportOptionView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Signup/index.tsx:187 msgid "Go back to previous step" msgstr "Fill ar an gcรฉim roimhe seo" @@ -1874,11 +2401,16 @@ msgstr "Abhaile" msgid "Go Home" msgstr "Abhaile" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/view/screens/Search/Search.tsx:NaN +#~ msgid "Go to @{queryMaybeHandle}" +#~ msgstr "Tรฉigh go dtรญ @{queryMaybeHandle}" + +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "Tรฉigh go comhrรก le {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:172 src/view/com/modals/ChangePassword.tsx:168 +#: src/screens/Login/ForgotPasswordForm.tsx:172 +#: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Tรฉigh go dtรญ an chรฉad rud eile" @@ -1906,7 +2438,7 @@ msgstr "Haptaic" msgid "Harassment, trolling, or intolerance" msgstr "Ciapadh, trollรกil, nรณ รฉadulaingt" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Haischlib" @@ -1918,19 +2450,39 @@ msgstr "Haischlib: #{tag}" msgid "Having trouble?" msgstr "Fadhb ort?" -#: src/view/shell/desktop/RightNav.tsx:95 src/view/shell/Drawer.tsx:354 +#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Cรบnamh" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Tabhair le fios dรบinn nach bot thรบ trรญ pictiรบr a uaslรณdรกil nรณ abhatรกr a chruthรบ." -#: src/view/com/modals/AddAppPasswords.tsx:204 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 +#~ msgid "Here are some accounts for you to follow" +#~ msgstr "Seo cรบpla cuntas le leanรบint duit" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 +#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." +#~ msgstr "Seo cรบpla fotha a bhfuil rรกchairt orthu. Is fรฉidir leat an mรฉid acu is mian leat a leanรบint." + +#: 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 "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 msgid "Here is your app password." msgstr "Seo รฉ do phasfhocal aipe." -#: src/components/moderation/ContentHider.tsx:116 src/components/moderation/LabelPreference.tsx:134 src/components/moderation/PostHider.tsx:121 src/lib/moderation/useLabelBehaviorDescription.ts:15 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:445 +#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/LabelPreference.tsx:134 +#: src/components/moderation/PostHider.tsx:121 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: 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:432 msgid "Hide" msgstr "Cuir i bhfolach" @@ -1939,15 +2491,17 @@ msgctxt "action" msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Cuir an phostรกil seo i bhfolach" -#: src/components/moderation/ContentHider.tsx:68 src/components/moderation/PostHider.tsx:78 +#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/PostHider.tsx:78 msgid "Hide the content" msgstr "Cuir an t-รกbhar seo i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "An bhfuil fonn ort an phostรกil seo a chur i bhfolach?" @@ -1955,23 +2509,23 @@ msgstr "An bhfuil fonn ort an phostรกil seo a chur i bhfolach?" msgid "Hide user list" msgstr "Cuir liosta na gcuntas i bhfolach" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm. Tharla fadhb รฉigin sa dul i dteagmhรกil le freastalaรญ an fhotha seo. Cuir รฉ seo in iรบl dโ€™รบinรฉir an fhotha, le do thoil." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm. Is cosรบil nach bhfuil freastalaรญ an fhotha seo curtha le chรฉile i gceart. Cuir รฉ seo in iรบl dโ€™รบinรฉir an fhotha, le do thoil." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm. Is cosรบil go bhfuil freastalaรญ an fhotha as lรญne. Cuir รฉ seo in iรบl dโ€™รบinรฉir an fhotha, le do thoil." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm. Thug freastalaรญ an fhotha drochfhreagra. Cuir รฉ seo in iรบl dโ€™รบinรฉir an fhotha, le do thoil." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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 รฉ." @@ -1983,7 +2537,11 @@ 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:501 src/view/shell/bottom-bar/BottomBar.tsx:159 src/view/shell/desktop/LeftNav.tsx:335 src/view/shell/Drawer.tsx:424 src/view/shell/Drawer.tsx:425 +#: src/Navigation.tsx:489 +#: src/view/shell/bottom-bar/BottomBar.tsx:159 +#: src/view/shell/desktop/LeftNav.tsx:335 +#: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Baile" @@ -1991,7 +2549,10 @@ msgstr "Baile" msgid "Host:" msgstr "ร“stach:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 src/screens/Login/LoginForm.tsx:157 src/screens/Signup/StepInfo/index.tsx:40 src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:89 +#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Solรกthraรญ รณstรกla" @@ -1999,7 +2560,9 @@ msgstr "Solรกthraรญ รณstรกla" msgid "How should we open this link?" msgstr "Conas ar cheart dรบinn an nasc seo a oscailt?" -#: src/view/com/modals/VerifyEmail.tsx:222 src/view/screens/Settings/DisableEmail2FADialog.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/com/modals/VerifyEmail.tsx:222 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 msgid "I have a code" msgstr "Tรก cรณd agam" @@ -2011,7 +2574,8 @@ msgstr "Tรก cรณd dearbhaithe agam" msgid "I have my own domain" msgstr "Tรก fearann de mo chuid fรฉin agam" -#: src/components/dms/BlockedByListDialog.tsx:56 src/components/dms/ReportConversationPrompt.tsx:22 +#: src/components/dms/BlockedByListDialog.tsx:56 +#: src/components/dms/ReportConversationPrompt.tsx:22 msgid "I understand" msgstr "Tuigim" @@ -2031,7 +2595,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 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." @@ -2071,7 +2635,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Cuir isteach an t-ainm le haghaidh phasfhocal na haipe" @@ -2111,11 +2675,12 @@ msgstr "Cuir isteach do leasainm" msgid "Introducing Direct Messages" msgstr "Ag cur Teachtaireachtaรญ Dรญreacha in aithne duit" -#: src/screens/Login/LoginForm.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:70 +#: src/screens/Login/LoginForm.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Tรก an cรณd 2FA seo neamhbhailรญ." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Taifead postรกla atรก neamhbhailรญ nรณ gan bhunรบs" @@ -2143,6 +2708,10 @@ msgstr "Cรณid chuiridh: {0} ar fรกil" msgid "Invite codes: 1 available" msgstr "Cรณid chuiridh: 1 ar fรกil" +#: src/screens/Onboarding/StepFollowingFeed.tsx:65 +#~ 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/view/com/auth/SplashScreen.web.tsx:157 msgid "Jobs" msgstr "Jabanna" @@ -2151,6 +2720,10 @@ msgstr "Jabanna" msgid "Journalism" msgstr "Iriseoireacht" +#: src/components/moderation/LabelsOnMe.tsx:59 +#~ msgid "label has been placed on this {labelTarget}" +#~ msgstr "cuireadh lipรฉad ar an {labelTarget} seo" + #: src/components/moderation/ContentHider.tsx:147 msgid "Labeled by {0}." msgstr "Lipรฉad curtha ag {0}." @@ -2167,11 +2740,15 @@ msgstr "Lipรฉid" msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nรณtaรญ faoi รบsรกideoirรญ nรณ รกbhar is ea lipรฉid. Is fรฉidir รบsรกid a bhaint astu leis an lรญonra a cheilt, a chatagรณiriรบ, agus fainic a chur air." -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMe.tsx:61 +#~ msgid "labels have been placed on this {labelTarget}" +#~ msgstr "cuireadh lipรฉid ar an {labelTarget}" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "Lipรฉid ar do chuntas" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "Lipรฉid ar do chuid รกbhair" @@ -2183,7 +2760,8 @@ msgstr "Rogha teanga" msgid "Language settings" msgstr "Socruithe teanga" -#: src/Navigation.tsx:151 src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:150 +#: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Socruithe teanga" @@ -2191,7 +2769,8 @@ msgstr "Socruithe teanga" msgid "Languages" msgstr "Teangacha" -#: src/screens/Hashtag.tsx:99 src/view/screens/Search/Search.tsx:376 +#: src/screens/Hashtag.tsx:99 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "Is Dรฉanaรญ" @@ -2199,11 +2778,13 @@ msgstr "Is Dรฉanaรญ" msgid "Learn More" msgstr "Le tuilleadh a fhoghlaim" -#: src/components/moderation/ContentHider.tsx:66 src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:66 +#: src/components/moderation/ContentHider.tsx:131 msgid "Learn more about the moderation applied to this content." msgstr "Foghlaim nรญos mรณ faoin modhnรณireacht a dhรฉantar ar an รกbhar seo." -#: src/components/moderation/PostHider.tsx:99 src/components/moderation/ScreenHider.tsx:125 +#: src/components/moderation/PostHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:125 msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" @@ -2219,11 +2800,16 @@ msgstr "Tuilleadh eolais." msgid "Leave" msgstr "ร‰irigh as" -#: src/components/dms/MessagesListBlockedFooter.tsx:66 src/components/dms/MessagesListBlockedFooter.tsx:73 +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +#: src/components/dms/MessagesListBlockedFooter.tsx:73 msgid "Leave chat" msgstr "ร‰irigh as an gcomhrรก" -#: src/components/dms/ConvoMenu.tsx:138 src/components/dms/ConvoMenu.tsx:141 src/components/dms/ConvoMenu.tsx:208 src/components/dms/ConvoMenu.tsx:211 src/components/dms/LeaveConvoPrompt.tsx:46 +#: src/components/dms/ConvoMenu.tsx:138 +#: src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 +#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Leave conversation" msgstr "ร‰irigh as an gcomhrรก" @@ -2243,7 +2829,8 @@ 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/screens/Login/index.tsx:130 src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:130 +#: src/screens/Login/index.tsx:145 msgid "Let's get your password reset!" msgstr "Socraรญmis do phasfhocal arรญs!" @@ -2255,18 +2842,39 @@ msgstr "Ar aghaidh linn!" msgid "Light" msgstr "Sorcha" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 src/view/screens/ProfileFeed.tsx:570 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Like" +#~ msgstr "Mol" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 +#: src/view/screens/ProfileFeed.tsx:570 msgid "Like this feed" msgstr "Mol an fotha seo" -#: src/components/LikesDialog.tsx:87 src/Navigation.tsx:208 src/Navigation.tsx:213 +#: src/components/LikesDialog.tsx:87 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Molta ag" -#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 src/view/screens/PostLikedBy.tsx:27 src/view/screens/ProfileFeedLikedBy.tsx:27 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/PostLikedBy.tsx:27 +#: src/view/screens/ProfileFeedLikedBy.tsx:27 msgid "Liked By" msgstr "Molta ag" +#: src/view/com/feeds/FeedSourceCard.tsx:268 +#~ msgid "Liked by {0} {1}" +#~ msgstr "Molta ag {0} {1}" + +#: src/components/LabelingServiceCard/index.tsx:72 +#~ msgid "Liked by {count} {0}" +#~ msgstr "Molta ag {count} {0}" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:NaN +#~ msgid "Liked by {likeCount} {0}" +#~ msgstr "Molta ag {likeCount} {0}" + #: src/view/com/notifications/FeedItem.tsx:176 msgid "liked your custom feed" msgstr "a mhol do shainfhotha" @@ -2279,11 +2887,11 @@ msgstr "a mhol do phostรกil" msgid "Likes" msgstr "Moltaรญ" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Moltaรญ don phostรกil seo" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Liosta" @@ -2295,7 +2903,7 @@ msgstr "Abhatรกr an Liosta" msgid "List blocked" msgstr "Liosta blocรกilte" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Liosta le {0}" @@ -2319,7 +2927,12 @@ msgstr "Liosta dรญbhlocรกilte" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe nรญos mรณ" -#: src/Navigation.tsx:121 src/view/screens/Profile.tsx:192 src/view/screens/Profile.tsx:198 src/view/shell/desktop/LeftNav.tsx:373 src/view/shell/Drawer.tsx:508 src/view/shell/Drawer.tsx:509 +#: src/Navigation.tsx:120 +#: src/view/screens/Profile.tsx:192 +#: src/view/screens/Profile.tsx:198 +#: src/view/shell/desktop/LeftNav.tsx:373 +#: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Liostaรญ" @@ -2327,11 +2940,14 @@ msgstr "Liostaรญ" msgid "Lists blocking this user:" msgstr "Liostaรญ a bhlocรกlann an t-รบsรกideoir seo:" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 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:492 src/view/screens/ProfileList.tsx:749 +#: src/screens/Profile/Sections/Feed.tsx:86 +#: src/view/com/feeds/FeedPage.tsx:136 +#: src/view/screens/ProfileFeed.tsx:492 +#: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Lรณdรกil postรกlacha nua" @@ -2339,15 +2955,19 @@ msgstr "Lรณdรกil postรกlacha nua" msgid "Loading..." msgstr "Ag lรณdรกil โ€ฆ" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Logleabhar" -#: src/screens/Deactivated.tsx:214 src/screens/Deactivated.tsx:220 +#: src/screens/Deactivated.tsx:214 +#: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" msgstr "Logรกil isteach nรณ clรกraigh le Bluesky" -#: src/screens/SignupQueued.tsx:155 src/screens/SignupQueued.tsx:158 src/screens/SignupQueued.tsx:184 src/screens/SignupQueued.tsx:187 +#: src/screens/SignupQueued.tsx:155 +#: src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 +#: src/screens/SignupQueued.tsx:187 msgid "Log out" msgstr "Logรกil amach" @@ -2371,10 +2991,15 @@ msgstr "Tรก cuma XXXXX-XXXXX air" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "Is cosรบil nรกr sรกbhรกil tรบ fotha ar bith! Lean na moltaรญ a rinne muid nรณ tabhair sรบil ar a bhfuil thรญos anseo." -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "Is cosรบil gur รฉirigh tรบ as na fothaรญ uilig a bhรญ agat. Nรก bรญodh imnรญ ort. Tig leat fothaรญ eile a roghnรบ thรญos ๐Ÿ˜„" +#: src/screens/Feeds/NoFollowingFeed.tsx:38 +#, fuzzy +#~ msgid "Looks like you're missing a following feed." +#~ msgstr "Is cosรบil go bhfuil fotha leanรบna ar iarraidh ort. <0>Cliceรกil anseo le ceann a fhรกil." + #: src/screens/Feeds/NoFollowingFeed.tsx:37 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." @@ -2383,15 +3008,17 @@ msgstr "Is cosรบil go bhfuil fotha leanรบna ar iarraidh ort. <0>Cliceรกil anseo msgid "Make sure this is where you intend to go!" msgstr "Bรญ cinnte go bhfuil tรบ ag iarraidh cuairt a thabhairt ar an รกit sin!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Bainistigh do chuid clibeanna agus na focail a chuir tรบ i bhfolach" -#: src/components/dms/ConvoMenu.tsx:151 src/components/dms/ConvoMenu.tsx:158 +#: src/components/dms/ConvoMenu.tsx:151 +#: src/components/dms/ConvoMenu.tsx:158 msgid "Mark as read" msgstr "Marcรกil lรฉite" -#: src/view/screens/AccessibilitySettings.tsx:89 src/view/screens/Profile.tsx:195 +#: src/view/screens/AccessibilitySettings.tsx:89 +#: src/view/screens/Profile.tsx:195 msgid "Media" msgstr "Meรกin" @@ -2403,7 +3030,8 @@ msgstr "รบsรกideoirรญ luaite" msgid "Mentioned users" msgstr "รšsรกideoirรญ luaite" -#: src/view/com/util/ViewHeader.tsx:90 src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Clรกr" @@ -2411,11 +3039,12 @@ msgstr "Clรกr" msgid "Message {0}" msgstr "Teachtaireacht {0}" -#: src/components/dms/MessageMenu.tsx:72 src/screens/Messages/List/ChatListItem.tsx:154 +#: src/components/dms/MessageMenu.tsx:72 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Teachtaireacht รณn bhfreastalaรญ: {0}" @@ -2423,7 +3052,8 @@ msgstr "Teachtaireacht รณn bhfreastalaรญ: {0}" msgid "Message input field" msgstr "Rรฉimse ionchur teachtaireachtaรญ" -#: src/screens/Messages/Conversation/MessageInput.tsx:70 src/screens/Messages/Conversation/MessageInput.web.tsx:49 +#: src/screens/Messages/Conversation/MessageInput.tsx:70 +#: src/screens/Messages/Conversation/MessageInput.web.tsx:49 msgid "Message is too long" msgstr "Tรก an teachtaireacht rรณfhada" @@ -2431,15 +3061,25 @@ msgstr "Tรก an teachtaireacht rรณfhada" msgid "Message settings" msgstr "Socruithe teachtaireachta" -#: src/Navigation.tsx:521 src/screens/Messages/List/index.tsx:164 src/screens/Messages/List/index.tsx:246 src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:504 +#: src/screens/Messages/List/index.tsx:164 +#: src/screens/Messages/List/index.tsx:246 +#: src/screens/Messages/List/index.tsx:317 msgid "Messages" msgstr "Teachtaireachtaรญ" +#: src/Navigation.tsx:307 +#, fuzzy +#~ msgid "Messaging settings" +#~ msgstr "Socruithe teachtaireachta" + #: src/lib/moderation/useReportOptions.ts:46 msgid "Misleading Account" msgstr "Cuntas atรก Mรญthreorach" -#: src/Navigation.tsx:126 src/screens/Moderation/index.tsx:104 src/view/screens/Settings/index.tsx:561 +#: src/Navigation.tsx:125 +#: src/screens/Moderation/index.tsx:104 +#: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Modhnรณireacht" @@ -2447,7 +3087,8 @@ msgstr "Modhnรณireacht" msgid "Moderation details" msgstr "Mionsonraรญ modhnรณireachta" -#: src/view/com/lists/ListCard.tsx:95 src/view/com/modals/UserAddRemoveLists.tsx:217 +#: src/view/com/lists/ListCard.tsx:95 +#: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" msgstr "Liosta modhnรณireachta le {0}" @@ -2455,7 +3096,9 @@ msgstr "Liosta modhnรณireachta le {0}" msgid "Moderation list by <0/>" msgstr "Liosta modhnรณireachta le <0/>" -#: src/view/com/lists/ListCard.tsx:93 src/view/com/modals/UserAddRemoveLists.tsx:215 src/view/screens/ProfileList.tsx:841 +#: src/view/com/lists/ListCard.tsx:93 +#: src/view/com/modals/UserAddRemoveLists.tsx:215 +#: src/view/screens/ProfileList.tsx:841 msgid "Moderation list by you" msgstr "Liosta modhnรณireachta leat" @@ -2471,7 +3114,8 @@ msgstr "Liosta modhnรณireachta uasdรกtaithe" msgid "Moderation lists" msgstr "Liostaรญ modhnรณireachta" -#: src/Navigation.tsx:131 src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:130 +#: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liostaรญ modhnรณireachta" @@ -2479,7 +3123,7 @@ msgstr "Liostaรญ modhnรณireachta" msgid "Moderation settings" msgstr "Socruithe modhnรณireachta" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "Stรกdais modhnรณireachta" @@ -2487,11 +3131,12 @@ msgstr "Stรกdais modhnรณireachta" msgid "Moderation tools" msgstr "Uirlisรญ modhnรณireachta" -#: src/components/moderation/ModerationDetailsDialog.tsx:48 src/lib/moderation/useModerationCauseDescription.ts:42 +#: src/components/moderation/ModerationDetailsDialog.tsx:48 +#: src/lib/moderation/useModerationCauseDescription.ts:42 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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Tuilleadh" @@ -2515,7 +3160,8 @@ msgstr "Cuir i bhfolach" msgid "Mute {truncatedTag}" msgstr "Cuir {truncatedTag} i bhfolach" -#: src/view/com/profile/ProfileMenu.tsx:281 src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:281 +#: src/view/com/profile/ProfileMenu.tsx:288 msgid "Mute Account" msgstr "Cuir an cuntas i bhfolach" @@ -2527,15 +3173,16 @@ msgstr "Cuir na cuntais i bhfolach" msgid "Mute all {displayTag} posts" msgstr "Cuir gach postรกil {displayTag} i bhfolach" -#: src/components/dms/ConvoMenu.tsx:172 src/components/dms/ConvoMenu.tsx:178 +#: src/components/dms/ConvoMenu.tsx:172 +#: src/components/dms/ConvoMenu.tsx:178 msgid "Mute conversation" msgstr "Balbhaigh an comhrรก" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Nรก cuir i bhfolach ach i gclibeanna" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "Cuir i bhfolach i dtรฉacs agus i gclibeanna" @@ -2543,23 +3190,30 @@ msgstr "Cuir i bhfolach i dtรฉacs agus i gclibeanna" msgid "Mute list" msgstr "Cuir an liosta i bhfolach" +#: src/components/dms/ConvoMenu.tsx:NaN +#, fuzzy +#~ msgid "Mute notifications" +#~ msgstr "Fรณgraรญ" + #: src/view/screens/ProfileList.tsx:673 msgid "Mute these accounts?" msgstr "An bhfuil fonn ort na cuntais seo a chur i bhfolach" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Cuir an focal seo i bhfolach i dtรฉacs postรกlacha agus i gclibeanna" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 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:365 src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Cuir an snรกithe seo i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Cuir focail โŠ clibeanna i bhfolach" @@ -2571,7 +3225,8 @@ msgstr "Curtha i bhfolach" msgid "Muted accounts" msgstr "Cuntais a cuireadh i bhfolach" -#: src/Navigation.tsx:136 src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:135 +#: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Cuntais a Cuireadh i bhFolach" @@ -2591,11 +3246,12 @@ msgstr "Focail โŠ clibeanna a cuireadh i bhfolach" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Tรก an cur i bhfolach prรญobhรกideach. Is fรฉidir leis na cuntais a chuir tรบ i bhfolach do chuid postรกlacha a fheiceรกil agus is fรฉidir leo scrรญobh chugat ach nรญ fheicfidh tรบ a gcuid postรกlacha eile nรก aon fhรณgraรญ uathu." -#: src/components/dialogs/BirthDateSettings.tsx:35 src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:35 +#: src/components/dialogs/BirthDateSettings.tsx:38 msgid "My Birthday" msgstr "Mo Bhreithlรก" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Mo Chuid Fothaรญ" @@ -2611,7 +3267,8 @@ msgstr "Na fothaรญ a shรกbhรกil mรฉ" msgid "My Saved Feeds" msgstr "Na Fothaรญ a Shรกbhรกil Mรฉ" -#: src/view/com/modals/AddAppPasswords.tsx:174 src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Ainm" @@ -2619,7 +3276,9 @@ msgstr "Ainm" msgid "Name is required" msgstr "Tรก an t-ainm riachtanach" -#: src/lib/moderation/useReportOptions.ts:58 src/lib/moderation/useReportOptions.ts:92 src/lib/moderation/useReportOptions.ts:100 +#: src/lib/moderation/useReportOptions.ts:58 +#: src/lib/moderation/useReportOptions.ts:92 +#: src/lib/moderation/useReportOptions.ts:100 msgid "Name or Description Violates Community Standards" msgstr "Sรกraรญonn an tAinm nรณ an Cur Sรญos Caighdeรกin an Phobail" @@ -2627,7 +3286,9 @@ msgstr "Sรกraรญonn an tAinm nรณ an Cur Sรญos Caighdeรกin an Phobail" msgid "Nature" msgstr "Nรกdรบr" -#: src/screens/Login/ForgotPasswordForm.tsx:173 src/screens/Login/LoginForm.tsx:309 src/view/com/modals/ChangePassword.tsx:169 +#: src/screens/Login/ForgotPasswordForm.tsx:173 +#: src/screens/Login/LoginForm.tsx:309 +#: 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" @@ -2639,6 +3300,10 @@ msgstr "Tรฉann sรฉ seo chuig do phrรณifรญl" msgid "Need to report a copyright violation?" msgstr "An bhfuil tรบ ag iarraidh sรกrรบ cรณipchirt a thuairisciรบ?" +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ 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:152 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." @@ -2656,7 +3321,9 @@ msgstr "Nua" msgid "New" msgstr "Nua" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 src/screens/Messages/List/index.tsx:331 src/screens/Messages/List/index.tsx:338 +#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/screens/Messages/List/index.tsx:331 +#: src/screens/Messages/List/index.tsx:338 msgid "New chat" msgstr "Comhrรก nua" @@ -2681,7 +3348,13 @@ msgctxt "action" msgid "New post" msgstr "Postรกil nua" -#: src/view/screens/Feeds.tsx:627 src/view/screens/Notifications.tsx:177 src/view/screens/Profile.tsx:464 src/view/screens/ProfileFeed.tsx:426 src/view/screens/ProfileList.tsx:201 src/view/screens/ProfileList.tsx:229 src/view/shell/desktop/LeftNav.tsx:271 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Profile.tsx:464 +#: src/view/screens/ProfileFeed.tsx:426 +#: src/view/screens/ProfileList.tsx:201 +#: src/view/screens/ProfileList.tsx:229 +#: src/view/shell/desktop/LeftNav.tsx:271 msgid "New post" msgstr "Postรกil nua" @@ -2702,19 +3375,38 @@ msgstr "Na freagraรญ is dรฉanaรญ ar dtรบs" msgid "News" msgstr "Nuacht" -#: src/screens/Login/ForgotPasswordForm.tsx:143 src/screens/Login/ForgotPasswordForm.tsx:150 src/screens/Login/LoginForm.tsx:308 src/screens/Login/LoginForm.tsx:315 src/screens/Login/SetNewPasswordForm.tsx:174 src/screens/Login/SetNewPasswordForm.tsx:180 src/screens/Signup/index.tsx:220 src/view/com/modals/ChangePassword.tsx:254 src/view/com/modals/ChangePassword.tsx:256 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/ForgotPasswordForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:308 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Login/SetNewPasswordForm.tsx:180 +#: src/screens/Signup/index.tsx:220 +#: src/view/com/modals/ChangePassword.tsx:254 +#: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" msgstr "Ar aghaidh" +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 +#~ msgctxt "action" +#~ msgid "Next" +#~ msgstr "Ar aghaidh" + #: src/view/com/lightbox/Lightbox.web.tsx:169 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: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 msgid "No" msgstr "Nรญl" -#: src/view/screens/ProfileFeed.tsx:559 src/view/screens/ProfileList.tsx:823 +#: src/view/screens/ProfileFeed.tsx:559 +#: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Gan chur sรญos" @@ -2722,11 +3414,12 @@ msgstr "Gan chur sรญos" msgid "No DNS Panel" msgstr "Gan Phainรฉal DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.ios.tsx:202 +#: src/components/dialogs/GifSelect.tsx:218 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/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "Nรญ leantar {0} nรญos mรณ" @@ -2734,7 +3427,7 @@ msgstr "Nรญ leantar {0} nรญos mรณ" msgid "No longer than 253 characters" msgstr "Gan a bheith nรญos faide na 253 charachtar" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "Nรญl aon teachtaireacht ann fรณs" @@ -2742,15 +3435,23 @@ 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:118 msgid "No notifications yet!" msgstr "Nรญl aon fhรณgra ann fรณs!" -#: src/components/dms/MessagesNUX.tsx:149 src/components/dms/MessagesNUX.tsx:152 src/screens/Messages/Settings.tsx:93 src/screens/Messages/Settings.tsx:96 +#: src/components/dms/MessagesNUX.tsx:149 +#: src/components/dms/MessagesNUX.tsx:152 +#: src/screens/Messages/Settings.tsx:93 +#: src/screens/Messages/Settings.tsx:96 msgid "No one" msgstr "Duine ar bith" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" msgstr "Gan torthaรญ" @@ -2762,19 +3463,28 @@ msgstr "Toradh ar bith" msgid "No results found" msgstr "Gan torthaรญ" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "Gan torthaรญ ar โ€œ{query}โ€" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 src/view/screens/Search/Search.tsx:296 src/view/screens/Search/Search.tsx:335 +#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "Gan torthaรญ ar {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.ios.tsx:200 +#: src/components/dialogs/GifSelect.tsx:216 msgid "No search results found for \"{search}\"." msgstr "Gan torthaรญ ar \"{search}\"." -#: src/components/dialogs/EmbedConsent.tsx:105 src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dms/NewChat.tsx:240 +#, fuzzy +#~ msgid "No search results found for \"{searchText}\"." +#~ msgstr "Gan torthaรญ ar \"{search}\"." + +#: src/components/dialogs/EmbedConsent.tsx:105 +#: src/components/dialogs/EmbedConsent.tsx:112 msgid "No thanks" msgstr "Nรญor mhaith liom รฉ sin." @@ -2786,7 +3496,8 @@ msgstr "Duine ar bith" msgid "Nobody can reply" msgstr "Nรญl cead ag รฉinne freagra a thabhairt" -#: src/components/LikedByList.tsx:79 src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:79 +#: src/components/LikesDialog.tsx:99 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nรญor mhol รฉinne fรณs รฉ. Ar cheart duit tosรบ?" @@ -2794,15 +3505,23 @@ msgstr "Nรญor mhol รฉinne fรณs รฉ. Ar cheart duit tosรบ?" msgid "Non-sexual Nudity" msgstr "Lomnochtacht Neamhghnรฉasach" -#: src/Navigation.tsx:116 src/view/screens/Profile.tsx:100 +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "Not Applicable." +#~ msgstr "Nรญ bhaineann sรฉ sin le hรกbhar." + +#: src/Navigation.tsx:115 +#: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Nรญ bhfuarthas รฉ sin" -#: src/view/com/modals/VerifyEmail.tsx:254 src/view/com/modals/VerifyEmail.tsx:260 +#: src/view/com/modals/VerifyEmail.tsx:254 +#: src/view/com/modals/VerifyEmail.tsx:260 msgid "Not right now" msgstr "Nรญ anois" -#: src/view/com/profile/ProfileMenu.tsx:370 src/view/com/util/forms/PostDropdownBtn.tsx:459 src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/profile/ProfileMenu.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "Nรณta faoi roinnt" @@ -2822,7 +3541,13 @@ msgstr "Fuaimeanna fรณgra" msgid "Notification Sounds" msgstr "Fuaimeanna Fรณgra" -#: src/Navigation.tsx:516 src/view/screens/Notifications.tsx:126 src/view/screens/Notifications.tsx:154 src/view/shell/bottom-bar/BottomBar.tsx:227 src/view/shell/desktop/LeftNav.tsx:350 src/view/shell/Drawer.tsx:456 src/view/shell/Drawer.tsx:457 +#: src/Navigation.tsx:499 +#: 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:350 +#: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Fรณgraรญ" @@ -2838,11 +3563,17 @@ msgstr "Lomnochtacht" msgid "Nudity or adult content not labeled as such" msgstr "Lomnochtacht nรณ รกbhar do dhaoine fรกsta nach bhfuil an lipรฉad sin air" +#: src/screens/Signup/index.tsx:145 +#~ msgid "of" +#~ msgstr "de" + #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" msgstr "As" -#: src/components/dialogs/GifSelect.ios.tsx:237 src/components/dialogs/GifSelect.tsx:255 src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.ios.tsx:237 +#: src/components/dialogs/GifSelect.tsx:255 +#: src/view/com/util/ErrorBoundary.tsx:55 msgid "Oh no!" msgstr "รšps!" @@ -2866,11 +3597,11 @@ msgstr "Na freagraรญ is sine ar dtรบs" msgid "Onboarding reset" msgstr "Atosรบ an chlรกraithe" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Tรก tรฉacs malartach de dhรญth ar รญomhรก amhรกin nรณ nรญos mรณ acu." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "Nรญ oibrรญonn ach comhaid .jpg agus .png" @@ -2886,7 +3617,9 @@ msgstr "Nรญl ann ach litreacha, uimhreacha, agus fleiscรญnรญ" msgid "Oops, something went wrong!" msgstr "รšps! Theip ar rud รฉigin!" -#: src/components/Lists.tsx:191 src/view/screens/AppPasswords.tsx:69 src/view/screens/Profile.tsx:100 +#: src/components/Lists.tsx:191 +#: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/Profile.tsx:100 msgid "Oops!" msgstr "รšps!" @@ -2898,15 +3631,17 @@ msgstr "Oscail" msgid "Open {name} profile shortcut menu" msgstr "Oscail roghchlรกr giorrรบchรกin phrรณifรญl {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "Oscail an cruthaitheoir abhatรกir" -#: src/screens/Messages/List/ChatListItem.tsx:214 src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "Oscail na roghanna comhrรก" -#: src/view/com/composer/Composer.tsx:600 src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Oscail roghnรณir na n-emoji" @@ -2926,15 +3661,16 @@ msgstr "Oscail na roghanna teachtaireachta" msgid "Open muted words and tags settings" msgstr "Oscail suรญomhanna na gclibeanna agus na bhfocal a cuireadh i bhfolach" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Oscail an nascleanรบint" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Oscail roghchlรกr na bpostรกlacha" -#: src/view/screens/Settings/index.tsx:860 src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:860 +#: src/view/screens/Settings/index.tsx:870 msgid "Open storybook page" msgstr "Oscail leathanach an Storybook" @@ -2954,6 +3690,10 @@ msgstr "Osclaรญonn sรฉ seo na socruithe inrochtaineachta" msgid "Opens additional details for a debug entry" msgstr "Osclaรญonn sรฉ seo tuilleadh sonraรญ le haghaidh iontrรกil dรญfhabhtaithe" +#: src/view/com/notifications/FeedItem.tsx:349 +#~ msgid "Opens an expanded list of users in this notification" +#~ msgstr "Osclaรญonn sรฉ seo liosta mรฉadaithe dโ€™รบsรกideoirรญ san fhรณgra seo" + #: src/view/com/composer/photos/OpenCameraBtn.tsx:74 msgid "Opens camera on device" msgstr "Osclaรญonn sรฉ seo an ceamara ar an nglรฉas" @@ -2978,11 +3718,13 @@ msgstr "Osclaรญonn sรฉ seo gailearaรญ na ngrianghraf ar an nglรฉas" msgid "Opens external embeds settings" msgstr "Osclaรญonn sรฉ seo na socruithe le haghaidh leabuithe seachtracha" -#: src/view/com/auth/SplashScreen.tsx:50 src/view/com/auth/SplashScreen.web.tsx:99 +#: 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 "Osclaรญonn sรฉ seo an prรณiseas le cuntas nua Bluesky a chruthรบ" -#: src/view/com/auth/SplashScreen.tsx:65 src/view/com/auth/SplashScreen.web.tsx:114 +#: 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 "Osclaรญonn sรฉ seo an sรญniรบ isteach ar an gcuntas Bluesky atรก agat cheana fรฉin" @@ -3030,9 +3772,9 @@ msgstr "Osclaรญonn sรฉ seo socruithe na modhnรณireachta" msgid "Opens password reset form" msgstr "Osclaรญonn sรฉ seo an fhoirm leis an bpasfhocal a athrรบ" -#: src/view/com/home/HomeHeaderLayout.web.tsx:77 src/view/screens/Feeds.tsx:417 -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/com/home/HomeHeaderLayout.web.tsx:NaN +#~ 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 msgid "Opens screen with all saved feeds" @@ -3050,7 +3792,13 @@ msgstr "Osclaรญonn sรฉ seo roghanna don fhotha Following" msgid "Opens the linked website" msgstr "Osclaรญonn sรฉ seo an suรญomh grรฉasรกin atรก nasctha" -#: src/view/screens/Settings/index.tsx:861 src/view/screens/Settings/index.tsx:871 +#: src/screens/Messages/List/index.tsx:86 +#, fuzzy +#~ 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 msgid "Opens the storybook page" msgstr "Osclaรญonn sรฉ seo leathanach an Storybook" @@ -3062,7 +3810,8 @@ msgstr "Osclaรญonn sรฉ seo logleabhar an chรณrais" msgid "Opens the threads preferences" msgstr "Osclaรญonn sรฉ seo roghanna na snรกitheanna" -#: src/view/com/notifications/FeedItem.tsx:427 src/view/com/util/UserAvatar.tsx:409 +#: src/view/com/notifications/FeedItem.tsx:427 +#: src/view/com/util/UserAvatar.tsx:409 msgid "Opens this profile" msgstr "Osclaรญonn sรฉ an phrรณifรญl seo" @@ -3070,7 +3819,8 @@ msgstr "Osclaรญonn sรฉ an phrรณifรญl seo" msgid "Option {0} of {numItems}" msgstr "Rogha {0} as {numItems}" -#: src/components/dms/ReportDialog.tsx:181 src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Is fรฉidir tuilleadh eolais a chur ar fรกil thรญos:" @@ -3102,7 +3852,8 @@ msgstr "Eileโ€ฆ" msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Ta รกr modhnรณirรญ tar รฉis athbhreithniรบ a dhรฉanamh ar thuairiscรญ. Chinn siad gan ligean duit comhrรกite a รบsรกid ar Bluesky." -#: src/components/Lists.tsx:208 src/view/screens/NotFound.tsx:45 +#: src/components/Lists.tsx:208 +#: src/view/screens/NotFound.tsx:45 msgid "Page not found" msgstr "Leathanach gan aimsiรบ" @@ -3110,7 +3861,10 @@ msgstr "Leathanach gan aimsiรบ" msgid "Page Not Found" msgstr "Leathanach gan aimsiรบ" -#: src/screens/Login/LoginForm.tsx:201 src/screens/Signup/StepInfo/index.tsx:102 src/view/com/modals/DeleteAccount.tsx:257 src/view/com/modals/DeleteAccount.tsx:264 +#: src/screens/Login/LoginForm.tsx:201 +#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/view/com/modals/DeleteAccount.tsx:257 +#: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" msgstr "Pasfhocal" @@ -3130,15 +3884,15 @@ msgstr "Pasfhocal uasdรกtaithe!" msgid "Pause" msgstr "Sos" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "Daoine" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Na daoine atรก leanta ag @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Na leantรณirรญ atรก ag @{0}" @@ -3158,7 +3912,8 @@ msgstr "Peataรญ" msgid "Pictures meant for adults." msgstr "Pictiรบir le haghaidh daoine fรกsta." -#: src/view/screens/ProfileFeed.tsx:287 src/view/screens/ProfileList.tsx:617 +#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Greamaigh le baile" @@ -3182,11 +3937,17 @@ msgstr "Seinn" msgid "Play {0}" msgstr "Seinn {0}" +#: src/screens/Messages/Settings.tsx:NaN +#, fuzzy +#~ msgid "Play notification sounds" +#~ msgstr "Fuaimeanna fรณgra" + #: src/view/com/util/post-embeds/GifEmbed.tsx:35 msgid "Play or pause the GIF" msgstr "Seinn nรณ stop an GIF" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57 src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 msgid "Play Video" msgstr "Seinn an fรญseรกn" @@ -3210,15 +3971,15 @@ msgstr "Dรฉan an captcha, le do thoil." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Dearbhaigh do rรญomhphost roimh รฉ a athrรบ. Riachtanas sealadach รฉ seo le linn dรบinn acmhainnรญ a chur isteach le haghaidh uasdรกtรบ an rรญomhphoist. Scriosfar รฉ seo roimh i bhfad." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 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." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Cuir focal, clib, nรณ frรกsa inghlactha isteach le cur i bhfolach" @@ -3230,7 +3991,7 @@ msgstr "Cuir isteach do sheoladh rรญomhphoist, le do thoil." msgid "Please enter your password as well:" msgstr "Cuir isteach do phasfhocal freisin, le do thoil." -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 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" @@ -3238,7 +3999,8 @@ msgstr "Abair linn, le do thoil, cรฉn fรกth a gcreideann tรบ gur chuir {0} an li msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mรญnigh, le do thoil, an fรกth a gcreideann tรบ go bhfuil sรฉ mรญcheart nach ligtear duit comhrรกite a รบsรกid" -#: src/lib/hooks/useAccountSwitcher.ts:48 src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:48 +#: src/lib/hooks/useAccountSwitcher.ts:58 msgid "Please sign in as @{0}" msgstr "Logรกil isteach mar @{0}" @@ -3246,7 +4008,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:268 +#: src/view/com/composer/Composer.tsx:281 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." @@ -3258,25 +4020,28 @@ msgstr "Polaitรญocht" msgid "Porn" msgstr "Pornagrafaรญocht" -#: src/view/com/composer/Composer.tsx:462 src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Postรกil" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Postรกil" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Postรกil รณ {0}" -#: src/Navigation.tsx:183 src/Navigation.tsx:190 src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Postรกil รณ @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Scriosadh an phostรกil" @@ -3284,11 +4049,13 @@ msgstr "Scriosadh an phostรกil" msgid "Post hidden" msgstr "Cuireadh an phostรกil i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:97 src/lib/moderation/useModerationCauseDescription.ts:101 +#: src/components/moderation/ModerationDetailsDialog.tsx:97 +#: src/lib/moderation/useModerationCauseDescription.ts:101 msgid "Post Hidden by Muted Word" msgstr "Postรกil nach bhfuil le feiceรกil de bharr focail a cuireadh i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:100 src/lib/moderation/useModerationCauseDescription.ts:110 +#: src/components/moderation/ModerationDetailsDialog.tsx:100 +#: src/lib/moderation/useModerationCauseDescription.ts:110 msgid "Post Hidden by You" msgstr "Postรกil a chuir tรบ i bhfolach" @@ -3300,7 +4067,8 @@ msgstr "Teanga postรกla" msgid "Post Languages" msgstr "Teangacha postรกla" -#: src/view/com/post-thread/PostThread.tsx:188 src/view/com/post-thread/PostThread.tsx:200 +#: src/view/com/post-thread/PostThread.tsx:188 +#: src/view/com/post-thread/PostThread.tsx:200 msgid "Post not found" msgstr "Nรญ bhfuarthas an phostรกil" @@ -3312,11 +4080,11 @@ msgstr "postรกlacha" msgid "Posts" msgstr "Postรกlacha" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "Is fรฉidir postรกlacha a chuir i bhfolach de bharr a gcuid tรฉacs, a gcuid clibeanna, nรณ an dรก rud." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Cuireadh na postรกlacha i bhfolach" @@ -3332,10 +4100,22 @@ msgstr "Brรบigh le iarracht a thabhairt ar nascadh arรญs" msgid "Press to change hosting provider" 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:200 +#: src/components/Error.tsx:85 +#: src/components/Lists.tsx:93 +#: src/screens/Messages/Conversation/MessageListError.tsx:24 +#: src/screens/Signup/index.tsx:200 msgid "Press to retry" msgstr "Brรบigh le iarracht eile a dhรฉanamh" +#: src/screens/Messages/Conversation/MessagesList.tsx:NaN +#, fuzzy +#~ msgid "Press to Retry" +#~ msgstr "Brรบigh le iarracht eile a dhรฉanamh" + +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "An รญomhรก roimhe seo" @@ -3348,11 +4128,16 @@ 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:654 +#: src/view/shell/desktop/RightNav.tsx:77 msgid "Privacy" msgstr "Prรญobhรกideacht" -#: src/Navigation.tsx:238 src/screens/Signup/StepInfo/Policies.tsx:56 src/view/screens/PrivacyPolicy.tsx:29 src/view/screens/Settings/index.tsx:957 src/view/shell/Drawer.tsx:284 +#: src/Navigation.tsx:244 +#: src/screens/Signup/StepInfo/Policies.tsx:56 +#: src/view/screens/PrivacyPolicy.tsx:29 +#: src/view/screens/Settings/index.tsx:957 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Polasaรญ prรญobhรกideachta" @@ -3364,11 +4149,16 @@ msgstr "Roinn TDanna prรญobhรกideacha le รบsรกideoirรญ eile." msgid "Processing..." msgstr "ร phrรณiseรกil..." -#: src/view/screens/DebugMod.tsx:894 src/view/screens/Profile.tsx:345 +#: src/view/screens/DebugMod.tsx:894 +#: src/view/screens/Profile.tsx:345 msgid "profile" msgstr "prรณifรญl" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 src/view/shell/desktop/LeftNav.tsx:381 src/view/shell/Drawer.tsx:78 src/view/shell/Drawer.tsx:541 src/view/shell/Drawer.tsx:542 +#: src/view/shell/bottom-bar/BottomBar.tsx:272 +#: src/view/shell/desktop/LeftNav.tsx:381 +#: src/view/shell/Drawer.tsx:78 +#: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Prรณifรญl" @@ -3392,18 +4182,31 @@ 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:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Foilsigh an phostรกil" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Foilsigh an freagra" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 src/view/com/util/post-ctrls/RepostButton.tsx:125 src/view/com/util/post-ctrls/RepostButton.web.tsx:78 src/view/com/util/post-ctrls/RepostButton.web.tsx:81 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" msgstr "Postรกil athluaite" +#: src/view/com/modals/Repost.tsx:66 +#~ msgctxt "action" +#~ msgid "Quote post" +#~ msgstr "Luaigh an phostรกil seo" + +#: src/view/com/modals/Repost.tsx:71 +#~ msgctxt "action" +#~ msgid "Quote Post" +#~ msgstr "Luaigh an phostรกil seo" + #: src/view/screens/PreferencesThreads.tsx:86 msgid "Random (aka \"Poster's Roulette\")" msgstr "Randamach" @@ -3416,14 +4219,27 @@ msgstr "Cรณimheasa" msgid "Reactivate your account" msgstr "Athghnรญomhaigh do chuntas" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "Fรกth:" -#: src/view/screens/Search/Search.tsx:973 +#: src/components/dms/MessageReportDialog.tsx:149 +#, fuzzy +#~ msgid "Reason: {0}" +#~ msgstr "Fรกth:" + +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "Cuardaigh a Rinneadh le Dรฉanaรญ" +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 +#~ msgid "Recommended Feeds" +#~ msgstr "Fothaรญ molta" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 +#~ msgid "Recommended Users" +#~ msgstr "Cuntais mholta" + #: src/screens/Messages/Conversation/MessageListError.tsx:20 msgid "Reconnect" msgstr "Athnasc" @@ -3432,7 +4248,12 @@ msgstr "Athnasc" msgid "Reload conversations" msgstr "Athlรณdรกil comhrรกite" -#: src/components/dialogs/MutedWords.tsx:288 src/view/com/feeds/FeedSourceCard.tsx:296 src/view/com/modals/ListAddRemoveUsers.tsx:268 src/view/com/modals/SelfLabel.tsx:84 src/view/com/modals/UserAddRemoveLists.tsx:230 src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 +#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/SelfLabel.tsx:84 +#: src/view/com/modals/UserAddRemoveLists.tsx:230 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Scrios" @@ -3452,19 +4273,25 @@ msgstr "Bain an Fรณgra Meirge Amach" msgid "Remove embed" msgstr "Bain an leabรบ" -#: src/view/com/posts/FeedErrorMessage.tsx:169 src/view/com/posts/FeedShutdownMsg.tsx:113 src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:168 +#: src/view/com/posts/FeedShutdownMsg.tsx:113 +#: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Bain an fotha de" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "An bhfuil fonn ort an fotha a bhaint?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 src/view/com/feeds/FeedSourceCard.tsx:245 src/view/screens/ProfileFeed.tsx:330 src/view/screens/ProfileFeed.tsx:336 src/view/screens/ProfileList.tsx:443 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 +#: src/view/screens/ProfileFeed.tsx:330 +#: src/view/screens/ProfileFeed.tsx:336 +#: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaรญ" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "ร‰ sin a bhaint de mo chuid fothaรญ?" @@ -3476,15 +4303,15 @@ msgstr "Bain an รญomhรก de" msgid "Remove image preview" msgstr "Bain rรฉamhlรฉiriรบ den รญomhรก" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Bain focal folaigh de do liosta" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "Bain an phrรณifรญl" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "Bain an phrรณifรญl seo as an stair cuardaigh" @@ -3492,23 +4319,27 @@ msgstr "Bain an phrรณifรญl seo as an stair cuardaigh" msgid "Remove quote" msgstr "Bain an t-athfhriotal de" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Scrios an athphostรกil" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 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/UserAddRemoveLists.tsx:165 +#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Baineadh den liosta รฉ" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 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/ProfileList.tsx:320 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Baineadh de do chuid fothaรญ รฉ" @@ -3520,7 +4351,8 @@ msgstr "Baineann sรฉ seo an mhionsamhail rรฉamhshocraithe de {0}" 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/posts/FeedShutdownMsg.tsx:126 +#: src/view/com/posts/FeedShutdownMsg.tsx:130 msgid "Replace with Discover" msgstr "Cuir an fotha Discover ina รกit" @@ -3532,7 +4364,7 @@ msgstr "Freagraรญ" msgid "Replies to this thread are disabled" msgstr "Nรญ fรฉidir freagraรญ a thabhairt ar an gcomhrรก seo" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Freagair" @@ -3541,20 +4373,36 @@ msgstr "Freagair" msgid "Reply Filters" msgstr "Scagairรญ freagra" -#: src/view/com/post/Post.tsx:190 src/view/com/posts/FeedItem.tsx:427 +#: src/view/com/post/Post.tsx:NaN +#~ msgctxt "description" +#~ msgid "Reply to <0/>" +#~ msgstr "Freagra ar <0/>" + +#: src/view/com/post/Post.tsx:190 +#: src/view/com/posts/FeedItem.tsx:427 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Freagra ar <0><1/>" -#: src/components/dms/MessageMenu.tsx:132 src/components/dms/MessagesListBlockedFooter.tsx:77 src/components/dms/MessagesListBlockedFooter.tsx:84 +#: src/components/dms/MessageMenu.tsx:132 +#: src/components/dms/MessagesListBlockedFooter.tsx:77 +#: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "Report" msgstr "Tuairiscigh" -#: src/view/com/profile/ProfileMenu.tsx:321 src/view/com/profile/ProfileMenu.tsx:324 +#: src/components/dms/ConvoMenu.tsx:NaN +#, fuzzy +#~ msgid "Report account" +#~ msgstr "Dรฉan gearรกn faoi chuntas" + +#: src/view/com/profile/ProfileMenu.tsx:321 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Report Account" msgstr "Dรฉan gearรกn faoi chuntas" -#: src/components/dms/ConvoMenu.tsx:197 src/components/dms/ConvoMenu.tsx:200 src/components/dms/ReportConversationPrompt.tsx:18 +#: src/components/dms/ConvoMenu.tsx:197 +#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ReportConversationPrompt.tsx:18 msgid "Report conversation" msgstr "Tuairiscigh an comhrรก seo" @@ -3562,7 +4410,8 @@ msgstr "Tuairiscigh an comhrรก seo" msgid "Report dialog" msgstr "Tuairiscigh comhrรก" -#: src/view/screens/ProfileFeed.tsx:347 src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:347 +#: src/view/screens/ProfileFeed.tsx:349 msgid "Report feed" msgstr "Dรฉan gearรกn faoi fhotha" @@ -3574,7 +4423,8 @@ msgstr "Dรฉan gearรกn faoi liosta" msgid "Report message" msgstr "Tuairiscigh an teachtaireacht seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Dรฉan gearรกn faoi phostรกil" @@ -3590,7 +4440,9 @@ msgstr "Dรฉan gearรกn faoin fhotha seo" msgid "Report this list" msgstr "Dรฉan gearรกn faoin liosta seo" -#: src/components/dms/ReportDialog.tsx:47 src/components/dms/ReportDialog.tsx:140 src/components/ReportDialog/SelectReportOptionView.tsx:59 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 +#: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "Tuairiscigh an teachtaireacht seo" @@ -3602,16 +4454,21 @@ msgstr "Dรฉan gearรกn faoin phostรกil seo" msgid "Report this user" msgstr "Dรฉan gearรกn faoin รบsรกideoir seo" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 src/view/com/util/post-ctrls/RepostButton.tsx:91 src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Athphostรกil" -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 src/view/com/util/post-ctrls/RepostButton.web.tsx:73 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Repost" msgstr "Athphostรกil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 src/view/com/util/post-ctrls/RepostButton.web.tsx:46 src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" msgstr "Athphostรกil nรณ luaigh postรกil" @@ -3623,6 +4480,10 @@ msgstr "Athphostรกilte ag" msgid "Reposted by {0}" msgstr "Athphostรกilte ag {0}" +#: src/view/com/posts/FeedItem.tsx:214 +#~ msgid "Reposted by <0/>" +#~ msgstr "Athphostรกilte ag <0/>" + #: src/view/com/posts/FeedItem.tsx:265 msgid "Reposted by <0><1/>" msgstr "Athphostรกilte ag <0><1/>" @@ -3631,15 +4492,17 @@ msgstr "Athphostรกilte ag <0><1/>" msgid "reposted your post" msgstr "โ€” d'athphostรกil sรฉ/sรญ do phostรกil" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Athphostรกlacha den phostรกil seo" -#: src/view/com/modals/ChangeEmail.tsx:176 src/view/com/modals/ChangeEmail.tsx:178 +#: src/view/com/modals/ChangeEmail.tsx:176 +#: src/view/com/modals/ChangeEmail.tsx:178 msgid "Request Change" msgstr "Iarr Athrรบ" -#: src/view/com/modals/ChangePassword.tsx:242 src/view/com/modals/ChangePassword.tsx:244 +#: src/view/com/modals/ChangePassword.tsx:242 +#: src/view/com/modals/ChangePassword.tsx:244 msgid "Request Code" msgstr "Iarr Cรณd" @@ -3655,7 +4518,8 @@ msgstr "Bรญodh cรณd rรญomhphoist ag teastรกil chun logรกil isteach" msgid "Required for this provider" msgstr "Riachtanach don solรกthraรญ seo" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 msgid "Resend email" msgstr "Athsheol an rรญomhphost" @@ -3667,7 +4531,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:900 +#: src/view/screens/Settings/index.tsx:903 msgid "Reset onboarding state" msgstr "Athshocraigh an prรณiseas clรกraithe" @@ -3675,7 +4540,8 @@ 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:880 +#: src/view/screens/Settings/index.tsx:883 msgid "Reset preferences state" msgstr "Athshocraigh na roghanna" @@ -3691,15 +4557,32 @@ msgstr "Athshocraรญonn sรฉ seo na roghanna" msgid "Retries login" msgstr "Baineann sรฉ seo triail eile as an logรกil isteach" -#: src/view/com/util/error/ErrorMessage.tsx:57 src/view/com/util/error/ErrorScreen.tsx:74 +#: 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 "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/screens/Login/LoginForm.tsx:288 src/screens/Login/LoginForm.tsx:295 src/screens/Messages/Conversation/MessageListError.tsx:25 src/screens/Onboarding/StepInterests/index.tsx:226 src/screens/Onboarding/StepInterests/index.tsx:229 src/screens/Signup/index.tsx:207 src/view/com/util/error/ErrorMessage.tsx:55 src/view/com/util/error/ErrorScreen.tsx:72 +#: src/components/dms/MessageItem.tsx:241 +#: src/components/Error.tsx:90 +#: src/components/Lists.tsx:104 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Messages/Conversation/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:226 +#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Signup/index.tsx:207 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Bain triail eile as" -#: src/components/Error.tsx:98 src/view/screens/ProfileList.tsx:971 +#: src/screens/Messages/Conversation/MessageListError.tsx:54 +#, fuzzy +#~ msgid "Retry." +#~ msgstr "Bain triail eile as" + +#: src/components/Error.tsx:98 +#: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Fill ar an leathanach roimhe seo" @@ -3707,15 +4590,22 @@ msgstr "Fill ar an leathanach roimhe seo" 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/NotFound.tsx:58 +#: src/view/screens/ProfileFeed.tsx:112 msgid "Returns to previous page" msgstr "Filleann sรฉ seo ar an leathanach roimhe seo" -#: src/components/dialogs/BirthDateSettings.tsx:125 src/view/com/composer/GifAltText.tsx:163 src/view/com/composer/GifAltText.tsx:169 src/view/com/modals/ChangeHandle.tsx:168 src/view/com/modals/CreateOrEditList.tsx:326 src/view/com/modals/EditProfile.tsx:225 +#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 +#: src/view/com/modals/ChangeHandle.tsx:168 +#: src/view/com/modals/CreateOrEditList.tsx:326 +#: src/view/com/modals/EditProfile.tsx:225 msgid "Save" msgstr "Sรกbhรกil" -#: src/view/com/lightbox/Lightbox.tsx:133 src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" msgstr "Sรกbhรกil" @@ -3740,7 +4630,8 @@ msgstr "Sรกbhรกil an leasainm nua" msgid "Save image crop" msgstr "Sรกbhรกil an pictiรบr bearrtha" -#: src/view/screens/ProfileFeed.tsx:331 src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:331 +#: src/view/screens/ProfileFeed.tsx:337 msgid "Save to my feeds" msgstr "Sรกbhรกil i mo chuid fothaรญ" @@ -3752,7 +4643,12 @@ msgstr "Fothaรญ Sรกbhรกilte" msgid "Saved to your camera roll" msgstr "Sรกbhรกladh i do rolla ceamara รฉ" -#: src/view/screens/ProfileFeed.tsx:200 src/view/screens/ProfileList.tsx:300 +#: src/view/com/lightbox/Lightbox.tsx:81 +#~ msgid "Saved to your camera roll." +#~ msgstr "Sรกbhรกilte i do rolla ceamara." + +#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Sรกbhรกilte le mo chuid fothaรญ" @@ -3780,7 +4676,21 @@ msgstr "Eolaรญocht" msgid "Scroll to top" msgstr "Fill ar an mbarr" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 src/Navigation.tsx:506 src/view/com/auth/LoggedOut.tsx:123 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:451 src/view/screens/Search/Search.tsx:825 src/view/screens/Search/Search.tsx:853 src/view/shell/bottom-bar/BottomBar.tsx:179 src/view/shell/desktop/LeftNav.tsx:343 src/view/shell/desktop/Search.tsx:194 src/view/shell/desktop/Search.tsx:203 src/view/shell/Drawer.tsx:393 src/view/shell/Drawer.tsx:394 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 +#: src/Navigation.tsx:494 +#: src/view/com/auth/LoggedOut.tsx:123 +#: 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:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 +#: src/view/shell/bottom-bar/BottomBar.tsx:179 +#: src/view/shell/desktop/LeftNav.tsx:343 +#: 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 msgid "Search" msgstr "Cuardaigh" @@ -3788,7 +4698,7 @@ msgstr "Cuardaigh" msgid "Search for \"{query}\"" msgstr "Dรฉan cuardach ar โ€œ{query}โ€" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "Dรฉan cuardach ar \"{searchText}\"" @@ -3801,22 +4711,27 @@ msgid "Search for all posts with tag {displayTag}" msgstr "Lorg na postรกlacha uile leis an gclib {displayTag}" #: src/components/dms/NewChat.tsx:226 -msgid "Search for someone to start a conversation with." -msgstr "Lorg duine รฉigin le comhrรก a dhรฉanamh leo." +#~ 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:105 src/view/com/auth/LoggedOut.tsx:106 src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/auth/LoggedOut.tsx:105 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cuardaigh รบsรกideoirรญ" -#: src/components/dialogs/GifSelect.ios.tsx:159 src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.ios.tsx:159 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Search GIFs" msgstr "Cuardaigh GIFanna" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 msgid "Search profiles" msgstr "Cuardaigh prรณifรญlรญ" -#: src/components/dialogs/GifSelect.ios.tsx:160 src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.ios.tsx:160 +#: src/components/dialogs/GifSelect.tsx:170 msgid "Search Tenor" msgstr "Cuardaigh Tenor" @@ -3840,10 +4755,18 @@ msgstr "Fรฉach na postรกlacha <0>{displayTag}" msgid "See <0>{displayTag} posts by this user" msgstr "Fรฉach na postรกlacha <0>{displayTag} leis an รบsรกideoir seo" +#: src/view/com/notifications/FeedItem.tsx:NaN +#~ msgid "See profile" +#~ msgstr "Fรฉach ar an bprรณifรญl" + #: src/view/screens/SavedFeeds.tsx:187 msgid "See this guide" msgstr "Fรฉach ar an treoirleabhar seo" +#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 +#~ msgid "See what's next" +#~ msgstr "Fรฉach an chรฉad rud eile" + #: src/view/com/util/Selector.tsx:106 msgid "Select {item}" msgstr "Roghnaigh {item}" @@ -3888,11 +4811,15 @@ msgstr "Roghnaigh modhnรณir" msgid "Select option {i} of {numItems}" msgstr "Roghnaigh rogha {i} as {numItems}" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 +#~ msgid "Select some accounts below to follow" +#~ msgstr "Roghnaigh cรบpla cuntas le leanรบint" + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" msgstr "Roghnaigh an emoji {emojiName} mar abhatรกr" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "Roghnaigh na seirbhรญsรญ modhnรณireachta le tuairisciรบ chuige" @@ -3900,6 +4827,14 @@ msgstr "Roghnaigh na seirbhรญsรญ modhnรณireachta le tuairisciรบ chuige" msgid "Select the service that hosts your data." msgstr "Roghnaigh an tseirbhรญs a รณstรกlann do chuid sonraรญ." +#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 +#~ msgid "Select topical feeds to follow from the list below" +#~ msgstr "Roghnaigh fothaรญ le leanรบint รณn liosta thรญos" + +#: 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" + #: 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 "Roghnaigh na teangacha ba mhaith leat a fheiceรกil i do chuid fothaรญ. Mura roghnaรญonn tรบ, taispeรกnfar รกbhar i ngach teanga duit." @@ -3920,11 +4855,20 @@ msgstr "Roghnaigh na rudaรญ a bhfuil suim agat iontu as na roghanna thรญos" msgid "Select your preferred language for translations in your feed." msgstr "Do rogha teanga nuair a dhรฉanfar aistriรบchรกn ar รกbhar i d'fhotha." +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 +#~ msgid "Select your primary algorithmic feeds" +#~ msgstr "Roghnaigh do phrรญomhfhothaรญ algartamacha" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 +#~ msgid "Select your secondary algorithmic feeds" +#~ msgstr "Roghnaigh do chuid fothaรญ algartamacha tรกnaisteacha" + #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" msgstr "Seol suรญomh grรฉasรกin spรฉisiรบil!" -#: src/view/com/modals/VerifyEmail.tsx:210 src/view/com/modals/VerifyEmail.tsx:212 +#: src/view/com/modals/VerifyEmail.tsx:210 +#: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" msgstr "Seol rรญomhphost dearbhaithe" @@ -3937,19 +4881,24 @@ msgctxt "action" msgid "Send Email" msgstr "Seol rรญomhphost" -#: src/view/shell/Drawer.tsx:328 src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Seol aiseolas" -#: src/screens/Messages/Conversation/MessageInput.tsx:163 src/screens/Messages/Conversation/MessageInput.web.tsx:155 +#: src/screens/Messages/Conversation/MessageInput.tsx:163 +#: src/screens/Messages/Conversation/MessageInput.web.tsx:155 msgid "Send message" msgstr "Seol teachtaireacht" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "Seol an phostรกil seo chuig..." -#: src/components/dms/ReportDialog.tsx:232 src/components/dms/ReportDialog.tsx:235 src/components/ReportDialog/SubmitView.tsx:216 src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Seol an tuairisc" @@ -3957,11 +4906,13 @@ msgstr "Seol an tuairisc" msgid "Send report to {0}" msgstr "Seol an tuairisc chuig {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 msgid "Send verification email" msgstr "Seol rรญomhphost dearbhaithe" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "Seol mar theachtaireacht dhรญreach" @@ -4045,7 +4996,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:146 src/view/screens/Settings/index.tsx:332 src/view/shell/desktop/LeftNav.tsx:389 src/view/shell/Drawer.tsx:558 src/view/shell/Drawer.tsx:559 +#: src/Navigation.tsx:145 +#: src/view/screens/Settings/index.tsx:332 +#: src/view/shell/desktop/LeftNav.tsx:389 +#: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Socruithe" @@ -4062,7 +5017,12 @@ msgctxt "action" msgid "Share" msgstr "Comhroinn" -#: src/view/com/profile/ProfileMenu.tsx:217 src/view/com/profile/ProfileMenu.tsx:226 src/view/com/util/forms/PostDropdownBtn.tsx:310 src/view/com/util/forms/PostDropdownBtn.tsx:319 src/view/com/util/post-ctrls/PostCtrls.tsx:297 src/view/screens/ProfileList.tsx:428 +#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:226 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:297 +#: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Comhroinn" @@ -4074,15 +5034,19 @@ msgstr "Inis scรฉal suimiรบil!" msgid "Share a fun fact!" msgstr "Roinn rud รฉigin fรบtsa fรฉin!" -#: src/view/com/profile/ProfileMenu.tsx:375 src/view/com/util/forms/PostDropdownBtn.tsx:464 src/view/com/util/post-ctrls/PostCtrls.tsx:313 +#: src/view/com/profile/ProfileMenu.tsx:375 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Comhroinn mar sin fรฉin" -#: src/view/screens/ProfileFeed.tsx:357 src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:357 +#: src/view/screens/ProfileFeed.tsx:359 msgid "Share feed" msgstr "Comhroinn an fotha" -#: src/view/com/modals/LinkWarning.tsx:89 src/view/com/modals/LinkWarning.tsx:95 +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Comhroinn Nasc" @@ -4094,19 +5058,28 @@ msgstr "Roinn an fotha is fearr leat!" msgid "Shares the linked website" 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:121 src/view/screens/Settings/index.tsx:381 +#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/PostHider.tsx:121 +#: src/view/screens/Settings/index.tsx:381 msgid "Show" msgstr "Taispeรกin" +#: src/view/screens/PreferencesFollowingFeed.tsx:68 +#~ msgid "Show all replies" +#~ msgstr "Taispeรกin gach freagra" + #: src/view/com/util/post-embeds/GifEmbed.tsx:167 msgid "Show alt text" msgstr "Taispeรกin an tรฉacs malartach" -#: src/components/moderation/ScreenHider.tsx:169 src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:169 +#: src/components/moderation/ScreenHider.tsx:172 msgid "Show anyway" msgstr "Taispeรกin mar sin fรฉin" -#: src/lib/moderation/useLabelBehaviorDescription.ts:27 src/lib/moderation/useLabelBehaviorDescription.ts:63 +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 msgid "Show badge" msgstr "Taispeรกin suaitheantas" @@ -4114,7 +5087,7 @@ msgstr "Taispeรกin suaitheantas" msgid "Show badge and filter from feeds" msgstr "Taispeรกin suaitheantas agus scag รณ na fothaรญ รฉ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Taispeรกin cuntais cosรบil le {0}" @@ -4122,15 +5095,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:349 src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "Nรญos lรบ den sรณrt seo" -#: src/view/com/post-thread/PostThreadItem.tsx:538 src/view/com/post/Post.tsx:227 src/view/com/posts/FeedItem.tsx:392 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:227 +#: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Tuilleadh" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "Nรญos mรณ den sรณrt seo" @@ -4146,6 +5123,18 @@ msgstr "Taispeรกin postรกlacha รณ mo chuid fothaรญ" msgid "Show Quote Posts" msgstr "Taispeรกin postรกlacha athluaite" +#: src/screens/Onboarding/StepFollowingFeed.tsx:119 +#~ msgid "Show quote-posts in Following feed" +#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:135 +#~ msgid "Show quotes in Following" +#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:95 +#~ msgid "Show re-posts in Following feed" +#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" + #: src/view/screens/PreferencesFollowingFeed.tsx:118 msgid "Show Replies" msgstr "Taispeรกin freagraรญ" @@ -4154,14 +5143,35 @@ msgstr "Taispeรกin freagraรญ" msgid "Show replies by people you follow before all other replies." msgstr "Taispeรกin freagraรญ รณ na daoine a leanann tรบ roimh aon fhreagra eile." +#: src/screens/Onboarding/StepFollowingFeed.tsx:87 +#~ msgid "Show replies in Following" +#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:71 +#~ msgid "Show replies in Following feed" +#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" + +#: src/view/screens/PreferencesFollowingFeed.tsx:70 +#~ 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 msgid "Show Reposts" msgstr "Taispeรกin athphostรกlacha" -#: src/components/moderation/ContentHider.tsx:69 src/components/moderation/PostHider.tsx:78 +#: src/screens/Onboarding/StepFollowingFeed.tsx:111 +#~ msgid "Show reposts in Following" +#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" + +#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/PostHider.tsx:78 msgid "Show the content" msgstr "Taispeรกin an t-รกbhar" +#: src/view/com/notifications/FeedItem.tsx:347 +#~ msgid "Show users" +#~ msgstr "Taispeรกin รบsรกideoirรญ" + #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" msgstr "Taispeรกin rabhadh" @@ -4174,7 +5184,24 @@ msgstr "Taispeรกin rabhadh agus scag รณ na fothaรญ รฉ" msgid "Shows posts from {0} in your feed" msgstr "Taispeรกnann sรฉ seo postรกlacha รณ {0} i d'fhotha" -#: src/components/dialogs/Signin.tsx:97 src/components/dialogs/Signin.tsx:99 src/screens/Login/index.tsx:100 src/screens/Login/index.tsx:119 src/screens/Login/LoginForm.tsx:154 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:181 src/view/shell/bottom-bar/BottomBarWeb.tsx:182 src/view/shell/bottom-bar/BottomBarWeb.tsx:184 src/view/shell/NavSignupCard.tsx:69 src/view/shell/NavSignupCard.tsx:70 src/view/shell/NavSignupCard.tsx:72 +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/index.tsx:119 +#: src/screens/Login/LoginForm.tsx:154 +#: 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/BottomBarWeb.tsx:207 +#: src/view/shell/NavSignupCard.tsx:69 +#: src/view/shell/NavSignupCard.tsx:70 +#: src/view/shell/NavSignupCard.tsx:72 msgid "Sign in" msgstr "Logรกil isteach" @@ -4194,11 +5221,20 @@ 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:129 +#: src/view/screens/Settings/index.tsx:133 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:171 src/view/shell/bottom-bar/BottomBarWeb.tsx:172 src/view/shell/bottom-bar/BottomBarWeb.tsx:174 src/view/shell/NavSignupCard.tsx:60 src/view/shell/NavSignupCard.tsx:61 src/view/shell/NavSignupCard.tsx:63 +#: 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/BottomBarWeb.tsx:197 +#: src/view/shell/NavSignupCard.tsx:60 +#: src/view/shell/NavSignupCard.tsx:61 +#: src/view/shell/NavSignupCard.tsx:63 msgid "Sign up" msgstr "Clรกraigh" @@ -4206,7 +5242,8 @@ msgstr "Clรกraigh" msgid "Sign up or sign in to join the conversation" msgstr "Clรกraigh nรณ logรกil isteach chun pรกirt a ghlacadh sa chomhrรก" -#: src/components/moderation/ScreenHider.tsx:97 src/lib/moderation/useGlobalLabelStrings.ts:28 +#: src/components/moderation/ScreenHider.tsx:97 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Caithfidh tรบ logรกil isteach" @@ -4214,7 +5251,8 @@ msgstr "Caithfidh tรบ logรกil isteach" msgid "Signed in as" msgstr "Logรกilte isteach mar" -#: src/lib/hooks/useAccountSwitcher.ts:44 src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:44 +#: src/screens/Login/ChooseAccountForm.tsx:60 msgid "Signed in as @{0}" msgstr "Logรกilte isteach mar @{0}" @@ -4234,19 +5272,23 @@ msgstr "Forbairt Bogearraรญ" msgid "Some people can reply" msgstr "Tรก daoine รกirithe in ann freagra a thabhairt" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Theip ar rud รฉigin" -#: src/screens/Deactivated.tsx:94 src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 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/Profile/Sections/Labels.tsx:87 +#: src/components/ReportDialog/index.tsx:59 +#: src/screens/Moderation/index.tsx:114 +#: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Chuaigh rud รฉigin รณ rath. Bain triail eile as." -#: src/App.native.tsx:85 src/App.web.tsx:74 +#: src/App.native.tsx:85 +#: src/App.web.tsx:74 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." @@ -4258,11 +5300,16 @@ msgstr "Sรณrtรกil freagraรญ" msgid "Sort replies to the same post by:" msgstr "Sรณrtรกil freagraรญ ar an bpostรกil chรฉanna de rรฉir:" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#~ msgid "Source:" +#~ msgstr "Foinse:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "Foinse: <0>{0}" -#: src/lib/moderation/useReportOptions.ts:66 src/lib/moderation/useReportOptions.ts:79 +#: src/lib/moderation/useReportOptions.ts:66 +#: src/lib/moderation/useReportOptions.ts:79 msgid "Spam" msgstr "Turscar" @@ -4290,10 +5337,18 @@ msgstr "Tosaigh comhrรก le {displayName}" msgid "Start chatting" msgstr "Tosaigh ag comhrรก" +#: src/view/screens/Settings/index.tsx:862 +#~ msgid "Status page" +#~ msgstr "Leathanach stรกdais" + #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "Leathanach Stรกdais" +#: src/screens/Signup/index.tsx:145 +#~ msgid "Step" +#~ msgstr "Cรฉim" + #: src/screens/Signup/index.tsx:154 msgid "Step {0} of {1}" msgstr "Cรฉim {0} as {1}" @@ -4302,11 +5357,15 @@ msgstr "Cรฉim {0} as {1}" 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:218 src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:224 +#: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 src/components/moderation/LabelsOnMeDialog.tsx:293 src/screens/Messages/Conversation/ChatDisabled.tsx:142 src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" msgstr "Seol" @@ -4322,6 +5381,10 @@ msgstr "Glac sรญntiรบs le @{0} leis na lipรฉid seo a รบsรกid:" msgid "Subscribe to Labeler" msgstr "Glac sรญntiรบs le lipรฉadรณir" +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:NaN +#~ msgid "Subscribe to the {0} feed" +#~ msgstr "Liostรกil leis an bhfotha {0}" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Glac sรญntiรบs leis an lipรฉadรณir seo" @@ -4330,7 +5393,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/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Cuntais le leanรบint" @@ -4342,11 +5405,14 @@ msgstr "Molta duit" msgid "Suggestive" msgstr "Gรกirsiรบil" -#: src/Navigation.tsx:233 src/view/screens/Support.tsx:30 src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:239 +#: src/view/screens/Support.tsx:30 +#: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Tacaรญocht" -#: src/components/dialogs/SwitchAccount.tsx:47 src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:47 +#: src/components/dialogs/SwitchAccount.tsx:50 msgid "Switch Account" msgstr "Athraigh an cuntas" @@ -4366,7 +5432,7 @@ msgstr "Cรณras" msgid "System log" msgstr "Logleabhar an chรณrais" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "clib" @@ -4394,23 +5460,31 @@ msgstr "Inis scรฉal grinn!" msgid "Terms" msgstr "Tรฉarmaรญ" -#: src/Navigation.tsx:243 src/screens/Signup/StepInfo/Policies.tsx:49 src/view/screens/Settings/index.tsx:951 src/view/screens/TermsOfService.tsx:29 src/view/shell/Drawer.tsx:278 +#: src/Navigation.tsx:249 +#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/TermsOfService.tsx:29 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Tรฉarmaรญ Seirbhรญse" -#: src/lib/moderation/useReportOptions.ts:59 src/lib/moderation/useReportOptions.ts:93 src/lib/moderation/useReportOptions.ts:101 +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:93 +#: src/lib/moderation/useReportOptions.ts:101 msgid "Terms used violate community standards" msgstr "Sรกrรบ ar chaighdeรกin an phobail atรก sna tรฉarmaรญ a รบsรกideadh" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "tรฉacs" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Rรฉimse tรฉacs" -#: src/components/dms/ReportDialog.tsx:132 src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Go raibh maith agat. Seoladh do thuairisc." @@ -4422,10 +5496,15 @@ 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/Profile/Header/ProfileHeaderStandard.tsx:291 src/view/com/profile/ProfileMenu.tsx:351 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 +#: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "Beidh an cuntas seo in ann caidreamh a dhรฉanamh leat tar รฉis duit รฉ a dhรญbhlocรกil" +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#~ msgid "the author" +#~ msgstr "an t-รบdar" + #: src/view/screens/CommunityGuidelines.tsx:36 msgid "The Community Guidelines have been moved to <0/>" msgstr "Bogadh Treoirlรญnte an Phobail go dtรญ <0/>" @@ -4438,11 +5517,11 @@ msgstr "Bogadh an Polasaรญ Cรณipchirt go dtรญ <0/>" msgid "The feed has been replaced with Discover." msgstr "Tรก Discover curtha in รกit an fhotha seo." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 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:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "Cuireadh na lipรฉid seo a leanas le do chuid รกbhair." @@ -4450,7 +5529,8 @@ msgstr "Cuireadh na lipรฉid seo a leanas le do chuid รกbhair." msgid "The following steps will help customize your Bluesky experience." msgstr "Cuideoidh na cรฉimeanna seo a leanas leat Bluesky a chur in oiriรบint duit fรฉin." -#: src/view/com/post-thread/PostThread.tsx:189 src/view/com/post-thread/PostThread.tsx:201 +#: src/view/com/post-thread/PostThread.tsx:189 +#: src/view/com/post-thread/PostThread.tsx:201 msgid "The post may have been deleted." msgstr "Is fรฉidir gur scriosadh an phostรกil seo." @@ -4466,35 +5546,54 @@ msgstr "Bogadh an fhoirm tacaรญochta go dtรญ <0/>. Mรก tรก cuidiรบ ag teastรกil msgid "The Terms of Service have been moved to" msgstr "Bogadh รกr dTรฉarmaรญ Seirbhรญse go dtรญ" +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 +#~ msgid "There are many feeds to try:" +#~ msgstr "Tรก a lรกn fothaรญ ann le blaiseadh:" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 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:541 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 +#: src/view/screens/ProfileFeed.tsx:541 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Bhรญ fadhb ann maidir leis an bhfotha seo a bhaint. Seiceรกil do cheangal leis an idirlรญon agus bain triail eile as, le do thoil." -#: src/view/com/posts/FeedShutdownMsg.tsx:52 src/view/com/posts/FeedShutdownMsg.tsx:70 src/view/screens/ProfileFeed.tsx:205 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/screens/ProfileFeed.tsx:205 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." -#: src/components/dialogs/GifSelect.ios.tsx:197 src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.ios.tsx:197 +#: src/components/dialogs/GifSelect.tsx:213 msgid "There was an issue connecting to Tenor." msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh le Tenor." -#: src/view/screens/ProfileFeed.tsx:233 src/view/screens/ProfileList.tsx:303 src/view/screens/ProfileList.tsx:322 src/view/screens/SavedFeeds.tsx:237 src/view/screens/SavedFeeds.tsx:263 src/view/screens/SavedFeeds.tsx:289 +#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#, fuzzy +#~ 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/ProfileList.tsx:303 +#: src/view/screens/ProfileList.tsx:322 +#: src/view/screens/SavedFeeds.tsx:237 +#: src/view/screens/SavedFeeds.tsx:263 +#: src/view/screens/SavedFeeds.tsx:289 msgid "There was an issue contacting the server" msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh leis an bhfreastalaรญ" -#: src/view/com/feeds/FeedSourceCard.tsx:120 src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 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." @@ -4506,27 +5605,48 @@ msgstr "Bhรญ fadhb ann maidir le postรกlacha a fhรกil. Tapรกil anseo le triail e msgid "There was an issue fetching the list. Tap here to try again." msgstr "Bhรญ fadhb ann maidir leis an liosta a fhรกil. Tapรกil anseo le triail eile a bhaint as." -#: src/view/com/feeds/ProfileFeedgens.tsx:153 src/view/com/lists/ProfileLists.tsx:160 +#: src/view/com/feeds/ProfileFeedgens.tsx:153 +#: src/view/com/lists/ProfileLists.tsx:160 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:220 src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 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." +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 +#~ msgid "There was an issue syncing your preferences with the server" +#~ msgstr "Bhรญ fadhb ann maidir le do chuid roghanna a shioncronรบ leis an bhfreastalaรญ" + #: src/view/screens/AppPasswords.tsx:70 msgid "There was an issue with fetching your app passwords" msgstr "Bhรญ fadhb ann maidir le do chuid pasfhocal don aip a fhรกil" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 src/view/com/post-thread/PostThreadFollowBtn.tsx:99 src/view/com/post-thread/PostThreadFollowBtn.tsx:111 src/view/com/profile/ProfileMenu.tsx:109 src/view/com/profile/ProfileMenu.tsx:120 src/view/com/profile/ProfileMenu.tsx:135 src/view/com/profile/ProfileMenu.tsx:146 src/view/com/profile/ProfileMenu.tsx:160 src/view/com/profile/ProfileMenu.tsx:173 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 +#: src/view/com/profile/ProfileMenu.tsx:109 +#: src/view/com/profile/ProfileMenu.tsx:120 +#: src/view/com/profile/ProfileMenu.tsx:135 +#: src/view/com/profile/ProfileMenu.tsx:146 +#: src/view/com/profile/ProfileMenu.tsx:160 +#: src/view/com/profile/ProfileMenu.tsx:173 msgid "There was an issue! {0}" msgstr "Bhรญ fadhb ann! {0}" -#: src/view/screens/ProfileList.tsx:335 src/view/screens/ProfileList.tsx:349 src/view/screens/ProfileList.tsx:363 src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:335 +#: src/view/screens/ProfileList.tsx:349 +#: src/view/screens/ProfileList.tsx:363 +#: src/view/screens/ProfileList.tsx:377 msgid "There was an issue. Please check your internet connection and try again." msgstr "Bhรญ fadhb ann. Seiceรกil do cheangal leis an idirlรญon, le do thoil, agus bain triail eile as." -#: src/components/dialogs/GifSelect.ios.tsx:239 src/components/dialogs/GifSelect.tsx:257 src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.ios.tsx:239 +#: 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 "Dโ€™รฉirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, mรก tharla sรฉ sin duit!" @@ -4534,6 +5654,10 @@ msgstr "Dโ€™รฉirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, mรก msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Tรก rรกchairt ar Bluesky le dรฉanaรญ! Cuirfidh muid do chuntas ag obair chomh luath agus is fรฉidir." +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 +#~ msgid "These are popular accounts you might like:" +#~ msgstr "Is cuntais iad seo a bhfuil a lรกn leantรณirรญ acu. Is fรฉidir go dtaitneoidh siad leat." + #: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Cuireadh bratach leis an {screenDescription} seo:" @@ -4546,7 +5670,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "Cuirfear an t-achomharc seo chuig <0>{0}." @@ -4558,6 +5682,11 @@ msgstr "Seolfar an t-achomharc seo go dtรญ seirbhรญs modhnรณireachta Bluesky." msgid "This chat was disconnected" msgstr "Dรญnascadh an comhrรก seo" +#: src/screens/Messages/Conversation/MessageListError.tsx:26 +#, fuzzy +#~ msgid "This chat was disconnected due to a network error." +#~ msgstr "Dรญnascadh an comhrรก seo" + #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." msgstr "Chuir na modhnรณirรญ an t-รกbhar seo i bhfolach." @@ -4570,30 +5699,40 @@ msgstr "Chuir na modhnรณirรญ folรกireamh ginearรกlta leis an รกbhar seo." msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Tรก an t-รกbhar seo ar fรกil รณ {0}. An bhfuil fonn ort na meรกin sheachtracha a thaispeรกint?" -#: src/components/moderation/ModerationDetailsDialog.tsx:77 src/lib/moderation/useModerationCauseDescription.ts:79 +#: 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 "Nรญl an t-รกbhar seo le feiceรกil toisc gur bhlocรกil duine de na hรบsรกideoirรญ an duine eile." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Nรญl an t-รกbhar seo le feiceรกil gan chuntas Bluesky." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "Tรก an ghnรฉ seo รก tรกstรกil fรณs. Tig leat nรญos mรณ faoi chartlanna easpรณrtรกilte a lรฉamh sa <0>bhlagphost seo." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Tรก rรกchairt an-mhรณr ar an bhfotha seo faoi lรกthair. Nรญl sรฉ ar fรกil anois dรญreach dรก bhrรญ sin. Bain triail eile as nรญos dรฉanaรญ, le do thoil." -#: src/screens/Profile/Sections/Feed.tsx:59 src/view/screens/ProfileFeed.tsx:471 src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Tรก an fotha seo folamh!" +#: src/screens/Profile/Sections/Feed.tsx:NaN +#~ msgid "This feed is empty!" +#~ msgstr "Tรก an fotha seo folamh!" #: 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 "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:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 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." @@ -4606,6 +5745,10 @@ msgstr "Nรญ roinntear an t-eolas seo le hรบsรกideoirรญ eile." msgid "This is important in case you ever need to change your email or reset your password." msgstr "Tรก sรฉ seo tรกbhachtach mรก bhรญonn ort do rรญomhphost nรณ do phasfhocal a athrรบ." +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#~ msgid "This label was applied by {0}." +#~ msgstr "Cuireadh an lipรฉad seo ag {0}." + #: src/components/moderation/ModerationDetailsDialog.tsx:127 msgid "This label was applied by <0>{0}." msgstr "Chuir <0>{0} an lipรฉad seo leis." @@ -4614,7 +5757,12 @@ msgstr "Chuir <0>{0} an lipรฉad seo leis." msgid "This label was applied by the author." msgstr "Chuir an t-รบdar an lipรฉad seo leis." -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +#, fuzzy +#~ msgid "This label was applied by you" +#~ msgstr "Chuir tusa an lipรฉad seo leis." + +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "Chuir tusa an lipรฉad seo leis." @@ -4634,19 +5782,20 @@ msgstr "Tรก an liosta seo folamh!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Nรญl an tseirbhรญs modhnรณireachta ar fรกil. Fรฉach tuilleadh sonraรญ thรญos. Mรก mhaireann an fhadhb seo, tรฉigh i dteagmhรกil linn." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Tรก an t-ainm seo in รบsรกid cheana fรฉin" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Scriosadh an phostรกil seo." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 src/view/com/util/post-ctrls/PostCtrls.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "Nรญ bheidh an phostรกil seo le feiceรกil ar do chuid fothaรญ." @@ -4670,7 +5819,8 @@ msgstr "Nรญl aon leantรณirรญ ag an รบsรกideoir seo." msgid "This user has blocked you" msgstr "Tรก tรบ blocรกilte ag an รบsรกideoir seo." -#: src/components/moderation/ModerationDetailsDialog.tsx:72 src/lib/moderation/useModerationCauseDescription.ts:70 +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:70 msgid "This user has blocked you. You cannot view their content." msgstr "Tรก an t-รบsรกideoir seo tar รฉis thรบ a bhlocรกil. Nรญ fรฉidir leat a gcuid รกbhair a fheiceรกil." @@ -4690,7 +5840,11 @@ msgstr "Tรก an t-รบsรกideoir seo ar an liosta <0>{0} a chuir tรบ i bhfolach. msgid "This user isn't following anyone." msgstr "Nรญl รฉinne รก leanรบint ag an รบsรกideoir seo." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/view/com/modals/SelfLabel.tsx:137 +#~ msgid "This warning is only available for posts with media attached." +#~ msgstr "Nรญl an rabhadh seo ar fรกil ach le haghaidh postรกlacha a bhfuil meรกin ceangailte leo." + +#: src/components/dialogs/MutedWords.tsx:283 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รญ." @@ -4698,7 +5852,8 @@ msgstr "Bainfidh sรฉ seo {0} de do chuid focal i bhfolach. Tig leat รฉ a chur ar msgid "Thread preferences" msgstr "Roghanna snรกitheanna" -#: src/view/screens/PreferencesThreads.tsx:53 src/view/screens/Settings/index.tsx:604 +#: src/view/screens/PreferencesThreads.tsx:53 +#: src/view/screens/Settings/index.tsx:604 msgid "Thread Preferences" msgstr "Roghanna Snรกitheanna" @@ -4706,7 +5861,7 @@ msgstr "Roghanna Snรกitheanna" msgid "Threaded Mode" msgstr "Modh Snรกithithe" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Roghanna Snรกitheanna" @@ -4722,7 +5877,7 @@ msgstr "Chun comhrรก a thuairisciรบ, tuairiscigh teachtaireacht amhรกin as trรญd msgid "To whom would you like to send this report?" msgstr "Cรฉ chuige ar mhaith leat an tuairisc seo a sheoladh?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Scorรกnaigh idir na roghanna maidir le focail atรก le cur i bhfolach." @@ -4734,7 +5889,8 @@ msgstr "Scorรกnaigh an bosca anuas" msgid "Toggle to enable or disable adult content" msgstr "Scorรกnaigh le รกbhar do dhaoine fรกsta a cheadรบ nรณ gan a cheadรบ" -#: src/screens/Hashtag.tsx:88 src/view/screens/Search/Search.tsx:366 +#: src/screens/Hashtag.tsx:88 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "Barr" @@ -4742,7 +5898,12 @@ msgstr "Barr" msgid "Transformations" msgstr "Trasfhoirmithe" -#: src/components/dms/MessageMenu.tsx:103 src/components/dms/MessageMenu.tsx:105 src/view/com/post-thread/PostThreadItem.tsx:691 src/view/com/post-thread/PostThreadItem.tsx:693 src/view/com/util/forms/PostDropdownBtn.tsx:280 src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/components/dms/MessageMenu.tsx:103 +#: src/components/dms/MessageMenu.tsx:105 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Aistrigh" @@ -4771,32 +5932,49 @@ msgstr "Dรญbhlocรกil an liosta" msgid "Un-mute list" 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:142 src/screens/Login/SetNewPasswordForm.tsx:77 src/screens/Signup/index.tsx:66 src/view/com/modals/ChangePassword.tsx:71 +#: src/screens/Login/ForgotPasswordForm.tsx:74 +#: src/screens/Login/index.tsx:78 +#: src/screens/Login/LoginForm.tsx:142 +#: src/screens/Login/SetNewPasswordForm.tsx:77 +#: src/screens/Signup/index.tsx:66 +#: 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/components/dms/MessagesListBlockedFooter.tsx:89 src/components/dms/MessagesListBlockedFooter.tsx:96 src/components/dms/MessagesListBlockedFooter.tsx:104 src/components/dms/MessagesListBlockedFooter.tsx:111 src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 src/view/com/profile/ProfileMenu.tsx:363 src/view/screens/ProfileList.tsx:626 +#: src/components/dms/MessagesListBlockedFooter.tsx:89 +#: src/components/dms/MessagesListBlockedFooter.tsx:96 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:111 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Dรญbhlocรกil" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Dรญbhlocรกil" -#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 msgid "Unblock account" msgstr "Dรญbhlocรกil an cuntas" -#: src/view/com/profile/ProfileMenu.tsx:301 src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:301 +#: src/view/com/profile/ProfileMenu.tsx:307 msgid "Unblock Account" msgstr "Dรญbhlocรกil an cuntas" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 src/view/com/profile/ProfileMenu.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 +#: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "An bhfuil fonn ort an cuntas seo a dhรญbhlocรกil?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 src/view/com/util/post-ctrls/RepostButton.web.tsx:69 src/view/com/util/post-ctrls/RepostButton.web.tsx:73 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" msgstr "Cuir stop leis an athphostรกil" @@ -4809,19 +5987,25 @@ msgstr "Dรญlean" msgid "Unfollow" msgstr "Dรญlean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Dรญlean {0}" -#: src/view/com/profile/ProfileMenu.tsx:243 src/view/com/profile/ProfileMenu.tsx:253 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:253 msgid "Unfollow Account" msgstr "Dรญlean an cuntas seo" +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Unlike" +#~ msgstr "Dรญmhol" + #: src/view/screens/ProfileFeed.tsx:570 msgid "Unlike this feed" msgstr "Dรญmhol an fotha seo" -#: src/components/TagMenu/index.tsx:249 src/view/screens/ProfileList.tsx:633 +#: src/components/TagMenu/index.tsx:249 +#: src/view/screens/ProfileList.tsx:633 msgid "Unmute" msgstr "Nรก coinnigh i bhfolach" @@ -4829,7 +6013,8 @@ msgstr "Nรก coinnigh i bhfolach" msgid "Unmute {truncatedTag}" msgstr "Nรก coinnigh {truncatedTag} i bhfolach" -#: src/view/com/profile/ProfileMenu.tsx:280 src/view/com/profile/ProfileMenu.tsx:286 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:286 msgid "Unmute Account" msgstr "Nรก coinnigh an cuntas seo i bhfolach nรญos mรณ" @@ -4841,11 +6026,18 @@ msgstr "Nรก coinnigh aon phostรกil {displayTag} i bhfolach" msgid "Unmute conversation" msgstr "Dรญbhalbhaigh an comhrรก seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/components/dms/ConvoMenu.tsx:140 +#, fuzzy +#~ msgid "Unmute notifications" +#~ msgstr "Lรณdรกil fรณgraรญ nua" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Nรก coinnigh an snรกithe seo i bhfolach nรญos mรณ" -#: src/view/screens/ProfileFeed.tsx:290 src/view/screens/ProfileList.tsx:617 +#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Dรญghreamaigh" @@ -4869,7 +6061,13 @@ msgstr "Dรญliostรกil" msgid "Unsubscribe from this labeler" msgstr "Dรญliostรกil รณn lipรฉadรณir seo" -#: src/lib/moderation/useReportOptions.ts:71 src/lib/moderation/useReportOptions.ts:84 +#: src/lib/moderation/useReportOptions.ts:85 +#, fuzzy +#~ msgid "Unwanted sexual content" +#~ msgstr "รbhar graosta nach mian liom" + +#: src/lib/moderation/useReportOptions.ts:71 +#: src/lib/moderation/useReportOptions.ts:84 msgid "Unwanted Sexual Content" msgstr "รbhar graosta nach mian liom" @@ -4885,7 +6083,7 @@ msgstr "Dรฉan uasdรกtรบ go {handle}" msgid "Updating..." msgstr "ร uasdรกtรบโ€ฆ" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "Uaslรณdรกil grianghraf in ionad" @@ -4893,15 +6091,22 @@ 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:339 src/view/com/util/UserAvatar.tsx:342 src/view/com/util/UserBanner.tsx:123 src/view/com/util/UserBanner.tsx:126 +#: src/view/com/util/UserAvatar.tsx:339 +#: src/view/com/util/UserAvatar.tsx:342 +#: 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:356 src/view/com/util/UserBanner.tsx:140 +#: src/view/com/util/UserAvatar.tsx:356 +#: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Uaslรณdรกil รณ Chomhaid" -#: src/view/com/util/UserAvatar.tsx:350 src/view/com/util/UserAvatar.tsx:354 src/view/com/util/UserBanner.tsx:134 src/view/com/util/UserBanner.tsx:138 +#: src/view/com/util/UserAvatar.tsx:350 +#: src/view/com/util/UserAvatar.tsx:354 +#: src/view/com/util/UserBanner.tsx:134 +#: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Uaslรณdรกil รณ Leabharlann" @@ -4921,11 +6126,13 @@ msgstr "Bain feidhm as bsky.social mar sholรกthraรญ รณstรกla" msgid "Use default provider" msgstr "รšsรกid an solรกthraรญ rรฉamhshocraithe" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:56 +#: src/view/com/modals/InAppBrowserConsent.tsx:58 msgid "Use in-app browser" msgstr "รšsรกid an brabhsรกlaรญ san aip seo" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:66 +#: src/view/com/modals/InAppBrowserConsent.tsx:68 msgid "Use my default browser" msgstr "รšsรกid an brabhsรกlaรญ rรฉamhshocraithe atรก agam" @@ -4937,7 +6144,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:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -4945,7 +6152,8 @@ msgstr "รšsรกid รฉ seo le logรกil isteach ar an aip eile in รฉindรญ le do leasai msgid "Used by:" msgstr "In รบsรกid ag:" -#: src/components/moderation/ModerationDetailsDialog.tsx:64 src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/components/moderation/ModerationDetailsDialog.tsx:64 +#: src/lib/moderation/useModerationCauseDescription.ts:58 msgid "User Blocked" msgstr "รšsรกideoir blocรกilte" @@ -4969,7 +6177,8 @@ msgstr "รšsรกideoir a bhlocรกlann thรบ" msgid "User Blocks You" msgstr "Blocรกlann an t-รบsรกideoir seo thรบ" -#: src/view/com/lists/ListCard.tsx:87 src/view/com/modals/UserAddRemoveLists.tsx:209 +#: src/view/com/lists/ListCard.tsx:87 +#: src/view/com/modals/UserAddRemoveLists.tsx:209 msgid "User list by {0}" msgstr "Liosta รบsรกideoirรญ le {0}" @@ -4977,7 +6186,9 @@ msgstr "Liosta รบsรกideoirรญ le {0}" msgid "User list by <0/>" msgstr "Liosta รบsรกideoirรญ le <0/>" -#: src/view/com/lists/ListCard.tsx:85 src/view/com/modals/UserAddRemoveLists.tsx:207 src/view/screens/ProfileList.tsx:829 +#: src/view/com/lists/ListCard.tsx:85 +#: src/view/com/modals/UserAddRemoveLists.tsx:207 +#: src/view/screens/ProfileList.tsx:829 msgid "User list by you" msgstr "Liosta รบsรกideoirรญ leat" @@ -5005,7 +6216,10 @@ msgstr "รšsรกideoirรญ" msgid "users followed by <0/>" msgstr "รšsรกideoirรญ a bhfuil <0/> รก leanรบint" -#: src/components/dms/MessagesNUX.tsx:140 src/components/dms/MessagesNUX.tsx:143 src/screens/Messages/Settings.tsx:84 src/screens/Messages/Settings.tsx:87 +#: src/components/dms/MessagesNUX.tsx:140 +#: src/components/dms/MessagesNUX.tsx:143 +#: src/screens/Messages/Settings.tsx:84 +#: src/screens/Messages/Settings.tsx:87 msgid "Users I follow" msgstr "รšsรกideoirรญ a leanaim" @@ -5021,6 +6235,10 @@ msgstr "รšsรกideoirรญ ar thaitin an t-รกbhar nรณ an prรณifรญl seo leo" msgid "Value:" msgstr "Luach:" +#: src/view/com/modals/ChangeHandle.tsx:510 +#~ msgid "Verify {0}" +#~ msgstr "Dearbhaigh {0}" + #: src/view/com/modals/ChangeHandle.tsx:504 msgid "Verify DNS Record" msgstr "Dearbhaigh taifead DNS" @@ -5037,7 +6255,8 @@ msgstr "Dearbhaigh mo rรญomhphost" msgid "Verify My Email" msgstr "Dearbhaigh Mo Rรญomhphost" -#: src/view/com/modals/ChangeEmail.tsx:200 src/view/com/modals/ChangeEmail.tsx:202 +#: src/view/com/modals/ChangeEmail.tsx:200 +#: src/view/com/modals/ChangeEmail.tsx:202 msgid "Verify New Email" msgstr "Dearbhaigh an Rรญomhphost Nua" @@ -5049,6 +6268,10 @@ msgstr "Dearbhaigh comhad tรฉacs" msgid "Verify Your Email" msgstr "Dearbhaigh Do Rรญomhphost" +#: src/view/screens/Settings/index.tsx:852 +#~ msgid "Version {0}" +#~ msgstr "Leagan {0}" + #: src/view/screens/Settings/index.tsx:935 msgid "Version {appVersion} {bundleInfo}" msgstr "Leagan {appVersion} {bundleInfo}" @@ -5085,11 +6308,14 @@ msgstr "Fรฉach ar an snรกithe iomlรกn" msgid "View information about these labels" msgstr "Fรฉach ar eolas faoi na lipรฉid seo" -#: src/components/ProfileHoverCard/index.web.tsx:396 src/components/ProfileHoverCard/index.web.tsx:429 src/view/com/posts/AviFollowButton.tsx:58 src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:396 +#: src/components/ProfileHoverCard/index.web.tsx:429 +#: src/view/com/posts/AviFollowButton.tsx:58 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Fรฉach ar an bprรณifรญl" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Fรฉach ar an abhatรกr" @@ -5101,11 +6327,19 @@ msgstr "Fรฉach ar an tseirbhรญs lipรฉadaithe atรก curtha ar fรกil ag @{0}" msgid "View users who like this feed" msgstr "Fรฉach ar รบsรกideoirรญ ar thaitin an fotha seo leo" -#: src/view/com/modals/LinkWarning.tsx:89 src/view/com/modals/LinkWarning.tsx:95 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" msgstr "Tabhair cuairt ar an suรญomh" -#: src/components/moderation/LabelPreference.tsx:135 src/lib/moderation/useLabelBehaviorDescription.ts:17 src/lib/moderation/useLabelBehaviorDescription.ts:22 +#: src/components/moderation/LabelPreference.tsx:135 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" msgstr "Rabhadh" @@ -5121,7 +6355,7 @@ msgstr "Tabhair folรกireamh faoi รกbhar agus scag as fothaรญ" msgid "We couldn't find any results for that hashtag." msgstr "Nรญor aimsigh muid toradh ar bith don haischlib sin." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "Theip orainn an comhrรก seo a lรณdรกil" @@ -5137,10 +6371,14 @@ msgstr "Tรก sรบil againn go mbeidh an-chraic agat anseo. Nรก dรฉan dearmad go bh msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Nรญl aon รกbhar nua le taispeรกint รณ na cuntais a leanann tรบ. Seo duit an t-รกbhar is dรฉanaรญ รณ <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Molaimid focail choitianta a bhรญonn i go leor pรณstรกlacha a sheachaint, toisc gur fรฉidir nach dtaispeรกnfaรญ aon phostรกil dรก bharr." +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 +#~ msgid "We recommend our \"Discover\" feed:" +#~ msgstr "Molaimid an fotha โ€œDiscoverโ€." + #: src/components/dialogs/BirthDateSettings.tsx:52 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." @@ -5173,15 +6411,20 @@ msgstr "Tรก muid an-sรกsta go bhfuil tรบ linn!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "รr leithscรฉal, ach nรญ fรฉidir linn an liosta seo a thaispeรกint. Mรก mhaireann an fhadhb, dรฉan teagmhรกil leis an duine a chruthaigh an liosta, @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tรก brรณn orainn, ach theip orainn na focail a chuir tรบ i bhfolach a lรณdรกil an uair seo. Bain triail as arรญs." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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/components/Lists.tsx:212 src/view/screens/NotFound.tsx:48 +#: src/view/com/composer/Composer.tsx:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:212 +#: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." msgstr "รr leithscรฉal, ach nรญ fรฉidir linn an leathanach atรก tรบ ag lorg a aimsiรบ." @@ -5193,11 +6436,17 @@ msgstr "Tรก brรณn orainn! Nรญ fรฉidir sรญntiรบis a ghlacadh ach le deich lipรฉad msgid "Welcome back!" msgstr "Fรกilte ar ais!" +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 +#~ msgid "Welcome to <0>Bluesky" +#~ msgstr "Fรกilte go <0>Bluesky" + #: src/screens/Onboarding/StepInterests/index.tsx:135 msgid "What are your interests?" msgstr "Cad iad na rudaรญ a bhfuil suim agat iontu?" -#: src/view/com/auth/SplashScreen.tsx:40 src/view/com/auth/SplashScreen.web.tsx:86 src/view/com/composer/Composer.tsx:340 +#: src/view/com/auth/SplashScreen.tsx:40 +#: src/view/com/auth/SplashScreen.web.tsx:86 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Aon scรฉal?" @@ -5209,7 +6458,8 @@ msgstr "Cad iad na teangacha sa phostรกil seo?" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Cad iad na teangacha ba mhaith leat a fheiceรกil i do chuid fothaรญ algartamacha?" -#: src/components/dms/MessagesNUX.tsx:110 src/components/dms/MessagesNUX.tsx:124 +#: src/components/dms/MessagesNUX.tsx:110 +#: src/components/dms/MessagesNUX.tsx:124 msgid "Who can message you?" msgstr "Cรฉ ar fรฉidir leo teachtaireacht a sheoladh chugat?" @@ -5217,7 +6467,8 @@ msgstr "Cรฉ ar fรฉidir leo teachtaireacht a sheoladh chugat?" msgid "Who can reply" msgstr "Cรฉ atรก in ann freagra a thabhairt" -#: src/screens/Home/NoFeedsPinned.tsx:92 src/screens/Messages/List/index.tsx:185 +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "รšps!" @@ -5249,15 +6500,17 @@ msgstr "Cรฉn fรกth gur cheart athbhreithniรบ a dhรฉanamh ar an รบsรกideoir seo?" msgid "Wide" msgstr "Leathan" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 src/screens/Messages/Conversation/MessageInput.web.tsx:134 +#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/Conversation/MessageInput.web.tsx:134 msgid "Write a message" msgstr "Scrรญobh teachtaireacht" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Scrรญobh postรกil" -#: src/view/com/composer/Composer.tsx:339 src/view/com/composer/Prompt.tsx:39 +#: src/view/com/composer/Composer.tsx:358 +#: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Scrรญobh freagra" @@ -5265,11 +6518,18 @@ msgstr "Scrรญobh freagra" 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/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 msgid "Yes" msgstr "Tรก" -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" msgstr "Tรก, dรญghnรญomhaigh" @@ -5289,7 +6549,8 @@ msgstr "Tรก tรบ sa scuaine." msgid "You are not following anyone." msgstr "Nรญl รฉinne รก leanรบint agat." -#: src/view/com/posts/FollowingEmptyState.tsx:67 src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Is fรฉidir leat sainfhothaรญ nua a aimsiรบ le leanรบint." @@ -5297,6 +6558,10 @@ msgstr "Is fรฉidir leat sainfhothaรญ nua a aimsiรบ le leanรบint." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Is fรฉidir leat do chuntas a dhรญghnรญomhรบ go sealadach, agus รฉ a athghnรญomhรบ uair ar bith." +#: src/screens/Onboarding/StepFollowingFeed.tsx:143 +#~ msgid "You can change these settings later." +#~ msgstr "Is fรฉidir leat na socruithe seo a athrรบ nรญos dรฉanaรญ." + #: src/components/dms/MessagesNUX.tsx:119 msgid "You can change this at any time." msgstr "Is fรฉidir leat รฉ seo a athrรบ uair ar bith." @@ -5305,7 +6570,8 @@ msgstr "Is fรฉidir leat รฉ seo a athrรบ uair ar bith." msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Is fรฉidir leat leanacht le comhrรกite beag beann ar cรฉn socrรบ a roghnaรญonn tรบ." -#: src/screens/Login/index.tsx:158 src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:158 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "You can now sign in with your new password." msgstr "Is fรฉidir leat logรกil isteach le do phasfhocal nua anois." @@ -5317,6 +6583,10 @@ msgstr "Is fรฉidir leat do chuntas a athghnรญomhรบ chun leanacht ort ag logรกil msgid "You do not have any followers." msgstr "Nรญl aon leantรณir agat." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Nรญl aon chรณid chuiridh agat fรณs! Cuirfidh muid cรบpla cรณd chugat tar รฉis duit beagรกn ama a chaitheamh anseo." @@ -5325,6 +6595,10 @@ msgstr "Nรญl aon chรณid chuiridh agat fรณs! Cuirfidh muid cรบpla cรณd chugat tar msgid "You don't have any pinned feeds." msgstr "Nรญl aon fhothaรญ greamaithe agat." +#: src/view/screens/Feeds.tsx:477 +#~ msgid "You don't have any saved feeds!" +#~ msgstr "Nรญl aon fhothaรญ sรกbhรกilte agat!" + #: src/view/screens/SavedFeeds.tsx:158 msgid "You don't have any saved feeds." msgstr "Nรญl aon fhothaรญ sรกbhรกilte agat." @@ -5337,11 +6611,16 @@ msgstr "Bhlocรกil tรบ an t-รบdar nรณ tรก tรบ blocรกilte ag an รบdar." msgid "You have blocked this user" msgstr "Bhlocรกil tรบ an t-รบsรกideoir seo" -#: src/components/moderation/ModerationDetailsDialog.tsx:66 src/lib/moderation/useModerationCauseDescription.ts:52 src/lib/moderation/useModerationCauseDescription.ts:60 +#: src/components/moderation/ModerationDetailsDialog.tsx:66 +#: src/lib/moderation/useModerationCauseDescription.ts:52 +#: src/lib/moderation/useModerationCauseDescription.ts:60 msgid "You have blocked this user. You cannot view their content." msgstr "Bhlocรกil tรบ an cuntas seo. Nรญ fรฉidir leat a gcuid รกbhar a fheiceรกil." -#: src/screens/Login/SetNewPasswordForm.tsx:54 src/screens/Login/SetNewPasswordForm.tsx:91 src/view/com/modals/ChangePassword.tsx:88 src/view/com/modals/ChangePassword.tsx:122 +#: src/screens/Login/SetNewPasswordForm.tsx:54 +#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/view/com/modals/ChangePassword.tsx:88 +#: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." msgstr "Tรก tรบ tar รฉis cรณd mรญchruinn a chur isteach. Ba cheart an cruth seo a bheith air: XXXXX-XXXXX." @@ -5353,7 +6632,8 @@ msgstr "Chuir tรบ an phostรกil seo i bhfolach" msgid "You have hidden this post." msgstr "Chuir tรบ an phostรกil seo i bhfolach." -#: src/components/moderation/ModerationDetailsDialog.tsx:94 src/lib/moderation/useModerationCauseDescription.ts:94 +#: src/components/moderation/ModerationDetailsDialog.tsx:94 +#: src/lib/moderation/useModerationCauseDescription.ts:94 msgid "You have muted this account." msgstr "Chuir tรบ an cuntas seo i bhfolach." @@ -5369,10 +6649,16 @@ msgstr "Nรญl comhrรก ar bith agat fรณs. Tosaigh ceann!" msgid "You have no feeds." msgstr "Nรญl aon fhothaรญ agat." -#: src/view/com/lists/MyLists.tsx:90 src/view/com/lists/ProfileLists.tsx:145 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:145 msgid "You have no lists." msgstr "Nรญl aon liostaรญ agat." +#: src/screens/Messages/List/index.tsx:200 +#, fuzzy +#~ msgid "You have no messages yet. Start a conversation with someone!" +#~ msgstr "Nรญl comhrรก ar bith agat fรณs. Tosaigh ceann!" + #: src/view/screens/ModerationBlockedAccounts.tsx:134 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Nรญor bhlocรกil tรบ aon chuntas fรณs. Le cuntas a bhlocรกil, tรฉigh go dtรญ a bprรณifรญl agus roghnaigh โ€œBlocรกil an cuntas seoโ€ ar an gclรกr ansin." @@ -5389,15 +6675,15 @@ 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/dialogs/MutedWords.tsx:250 +#: 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" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 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:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 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." @@ -5405,7 +6691,11 @@ msgstr "Is fรฉidir leat achomharc a dhรฉanamh maidir leis na lipรฉad seo mรก sh msgid "You must be 13 years of age or older to sign up." msgstr "Caithfidh tรบ a bheith 13 bliana dโ€™aois nรณ nรญos sine le clรกrรบ." -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 +#~ 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/ReportDialog/SubmitView.tsx:205 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" @@ -5413,11 +6703,11 @@ msgstr "Caithfidh tรบ ar a laghad lipรฉadรณir amhรกin a roghnรบ do thuairisc" msgid "You previously deactivated @{0}." msgstr "Rinne tรบ dรญghnรญomhรบ ar @{0} cheana." -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Nรญ bhfaighidh tรบ fรณgraรญ don snรกithe seo a thuilleadh." -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Gheobhaidh tรบ fรณgraรญ don snรกithe seo anois." @@ -5425,23 +6715,30 @@ msgstr "Gheobhaidh tรบ fรณgraรญ don snรกithe seo anois." msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Gheobhaidh tรบ teachtaireacht rรญomhphoist le โ€œcรณd athshocraitheโ€ ann. Cuir an cรณd sin isteach anseo, ansin cuir do phasfhocal nua isteach." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "Tusa {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Tusa: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "Tusa: {short}" -#: src/screens/SignupQueued.tsx:93 src/screens/SignupQueued.tsx:94 src/screens/SignupQueued.tsx:109 +#: src/screens/Onboarding/StepModeration/index.tsx:60 +#~ msgid "You're in control" +#~ msgstr "Tรก sรฉ faoi do stiรบir" + +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:109 msgid "You're in line" msgstr "Tรก tรบ sa scuaine" -#: src/screens/Deactivated.tsx:89 src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +#: 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 "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." @@ -5449,11 +6746,12 @@ msgstr "Tรก tรบ logรกilte isteach le pasfhocal aipe. Logรกil isteach le do phrรญ msgid "You're ready to go!" msgstr "Tรก tรบ rรฉidh!" -#: src/components/moderation/ModerationDetailsDialog.tsx:98 src/lib/moderation/useModerationCauseDescription.ts:103 +#: src/components/moderation/ModerationDetailsDialog.tsx:98 +#: src/lib/moderation/useModerationCauseDescription.ts:103 msgid "You've chosen to hide a word or tag within this post." msgstr "Roghnaigh tรบ focal nรณ clib atรก sa phostรกil seo a chur i bhfolach." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -5481,7 +6779,13 @@ msgstr "Cuireadh do chuid comhrรกite ar ceal" msgid "Your choice will be saved, but can be changed later in settings." msgstr "Sรกbhรกlfar do rogha, ach is fรฉidir รฉ athrรบ nรญos dรฉanaรญ sna socruithe." -#: src/screens/Login/ForgotPasswordForm.tsx:57 src/screens/Signup/state.ts:220 src/view/com/modals/ChangePassword.tsx:55 +#: src/screens/Onboarding/StepFollowingFeed.tsx:62 +#~ msgid "Your default feed is \"Following\"" +#~ msgstr "Is รฉ โ€œFollowingโ€ dโ€™fhotha rรฉamhshocraithe" + +#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Signup/state.ts:220 +#: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Is cosรบil go bhfuil do rรญomhphost neamhbhailรญ." @@ -5493,7 +6797,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -5505,7 +6809,7 @@ msgstr "Do leasainm iomlรกn anseo:" msgid "Your full handle will be <0>@{0}" msgstr "Do leasainm iomlรกn anseo: <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Na focail a chuir tรบ i bhfolach" @@ -5513,7 +6817,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Foilsรญodh do phostรกil" @@ -5529,562 +6833,14 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Foilsรญodh do fhreagra" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 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:166 msgid "Your user handle" msgstr "Do leasainm" - -#: src/components/moderation/LabelsOnMe.tsx:55 -#, fuzzy -#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" -#~ msgstr "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an gcuntas seo} two {Cuireadh # lipรฉad ar an gcuntas seo} few {Cuireadh # lipรฉad ar an gcuntas seo} many {Cuireadh # lipรฉad ar an gcuntas seo} other {Cuireadh # lipรฉad ar an gcuntas seo}}" - -#: src/components/moderation/LabelsOnMe.tsx:61 -#, fuzzy -#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" -#~ msgstr "{0, plural, one {Cuireadh # lipรฉad amhรกin ar an รกbhar seo} two {Cuireadh # lipรฉad ar an รกbhar seo} few {Cuireadh # lipรฉad ar an รกbhar seo} many {Cuireadh # lipรฉad ar an รกbhar seo} other {Cuireadh # lipรฉad ar an รกbhar seo}}" - -#: src/view/screens/ProfileList.tsx:286 -#, fuzzy -#~ msgid "{0} your feeds" -#~ msgstr "Sรกbhรกilte le mo chuid fothaรญ" - -#: src/view/shell/Drawer.tsx:96 -#~ msgid "<0>{0} following" -#~ msgstr "<0>{0} รก leanรบint" - -#: src/components/ProfileHoverCard/index.web.tsx:437 -#~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "<0>{following} <1>{pluralizedFollowers}" - -#: src/components/ProfileHoverCard/index.web.tsx:449 src/screens/Profile/Header/Metrics.tsx:45 -#~ msgid "<0>{following} <1>following" -#~ msgstr "<0>{following} <1>รก leanรบint" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 -#~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "<0>Roghnaigh do chuid<1>Fothaรญ<2>Molta" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 -#~ msgid "<0>Follow some<1>Recommended<2>Users" -#~ msgstr "<0>Lean cรบpla<1>รšsรกideoirรญ<2>Molta" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 -#~ msgid "<0>Welcome to<1>Bluesky" -#~ msgstr "<0>Fรกilte go<1>Bluesky" - -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "account" -#~ msgstr "cuntas" - -#: src/view/com/composer/GifAltText.tsx:175 -#, fuzzy -#~ msgid "Add ALT text" -#~ msgstr "Cuir tรฉacs malartach leis seo" - -#: src/view/com/composer/Composer.tsx:467 -#~ msgid "Add link card" -#~ msgstr "Cuir cรกrta leanรบna leis seo" - -#: src/view/com/composer/Composer.tsx:472 -#~ msgid "Add link card:" -#~ msgstr "Cuir cรกrta leanรบna leis seo:" - -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 -#~ msgid "Added" -#~ msgstr "Curtha leis" - -#: src/screens/Messages/Settings.tsx:61 src/screens/Messages/Settings.tsx:64 -#, fuzzy -#~ msgid "Allow messages from" -#~ msgstr "Ceadaigh teachtaireachtaรญ nua รณ" - -#: src/components/moderation/LabelsOnMeDialog.tsx:193 -#~ msgid "Appeal submitted." -#~ msgstr "Achomharc dรฉanta" - -#: src/components/dms/MessageMenu.tsx:123 -#, fuzzy -#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." -#~ msgstr "An bhfuil tรบ cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse รญ ach nรญ don duine eile atรก pรกirteach." - -#: 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." -#~ msgstr "An bhfuil tรบ cinnte gur mhaith leat imeacht รณn gcomhrรก seo? Scriosfar duitse รฉ ach nรญ don duine eile atรก pรกirteach." - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 -#~ msgid "Based on your interest in {interestsText}" -#~ msgstr "Toisc go bhfuil suim agat in {interestsText}" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 src/view/com/auth/onboarding/WelcomeMobile.tsx:82 -#~ msgid "Bluesky is flexible." -#~ msgstr "Tรก Bluesky solรบbtha." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 src/view/com/auth/onboarding/WelcomeMobile.tsx:71 -#~ msgid "Bluesky is open." -#~ msgstr "Tรก Bluesky oscailte." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 src/view/com/auth/onboarding/WelcomeMobile.tsx:58 -#~ msgid "Bluesky is public." -#~ msgstr "Tรก Bluesky poiblรญ." - -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 -#~ msgid "by {0}" -#~ msgstr "le {0}" - -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 -#~ msgid "by @{0}" -#~ msgstr "ag @{0}" - -#: 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 "Cuir sรบil ar na fothaรญ seo. Brรบigh + len iad a chur le liosta na bhfothaรญ atรก greamaithe agat." - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 -#~ 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/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 "Roghnaigh na halgartaim a shainรญonn an dรณigh a n-oibrรญonn do chuid sainfhothaรญ." - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 -#~ msgid "Choose your main feeds" -#~ msgstr "Roghnaigh do phrรญomhfhothaรญ" - -#: src/screens/Feeds/NoFollowingFeed.tsx:46 -#, fuzzy -#~ msgid "Click here to add one." -#~ msgstr "Cliceรกil anseo do bhreis eolais." - -#: src/components/RichText.tsx:198 -#~ msgid "Click here to open tag menu for #{tag}" -#~ msgstr "Cliceรกil anseo le clรกr na clibe le haghaidh #{tag} a oscailt" - -#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 -#~ msgid "Configure content filtering setting for category: {0}" -#~ msgstr "Socraigh scagadh an รกbhair le haghaidh catagรณir: {0}" - -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "content" -#~ msgstr "รกbhar" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 -#~ msgid "Continue to the next step" -#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 -#~ msgid "Continue to the next step without following any accounts" -#~ msgstr "Lean ar aghaidh go dtรญ an chรฉad chรฉim eile gan aon chuntas a leanรบint" - -#: src/components/dms/ConvoMenu.tsx:68 -#, fuzzy -#~ msgid "Could not unmute chat" -#~ msgstr "Nรญor รฉirรญodh ar an gcomhrรก a bhalbhรบ" - -#: src/view/com/composer/Composer.tsx:469 -#~ msgid "Creates a card with a thumbnail. The card links to {url}" -#~ msgstr "Cruthaรญonn sรฉ seo cรกrta le mionsamhail. Nascann an cรกrta le {url}." - -#: src/view/com/modals/DeleteAccount.tsx:87 -#~ msgid "Delete Account" -#~ msgstr "Scrios an Cuntas" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable haptics" -#~ msgstr "Nรก hรบsรกid aiseolas haptach" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable vibrations" -#~ msgstr "Nรก hรบsรกid creathadh" - -#: 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 "De bharr pholasaรญ Apple, nรญ fรฉidir รกbhar do dhaoine fรกsta ar an nGrรฉasรกn a fhรกil roimh an logรกil isteach a chrรญochnรบ." - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 -#~ msgid "Enable Adult Content" -#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 -#~ msgid "Enable adult content in your feeds" -#~ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil i do chuid fothaรญ" - -#: src/components/Lists.tsx:52 -#, fuzzy -#~ msgid "End of list" -#~ msgstr "Curtha leis an liosta" - -#: src/screens/Messages/Conversation/MessageListError.tsx:28 -#, fuzzy -#~ msgid "Failed to load past messages." -#~ msgstr "Teip ar theachtaireachtaรญ roimhe seo a lรณdรกil" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:110 src/view/com/auth/onboarding/RecommendedFeeds.tsx:143 -#~ msgid "Failed to load recommended feeds" -#~ msgstr "Teip ar lรณdรกil na bhfothaรญ molta" - -#: src/screens/Messages/Conversation/MessageListError.tsx:29 -#, fuzzy -#~ msgid "Failed to send message(s)." -#~ msgstr "Teip ar theachtaireacht a scriosadh" - -#: 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 "Is iad na hรบsรกideoirรญ a chruthaรญonn na fothaรญ le hรกbhar is spรฉis leo a chur ar fรกil. Roghnaigh cรบpla fotha a bhfuil suim agat iontu." - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 -#~ msgid "Feeds can be topical as well!" -#~ msgstr "Is fรฉidir le fothaรญ a bheith bunaithe ar chรบrsaรญ reatha freisin!" - -#: src/view/screens/Search/Search.tsx:589 -#~ msgid "Find users on Bluesky" -#~ msgstr "Aimsigh รบsรกideoirรญ ar Bluesky" - -#: src/view/screens/Search/Search.tsx:587 -#~ msgid "Find users with the search tool on the right" -#~ msgstr "Aimsigh รบsรกideoirรญ leis an uirlis chuardaigh ar dheis" - -#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 -#~ msgid "Finding similar accounts..." -#~ msgstr "Cuntais eile atรก cosรบil leis seo รก n-aimsiรบ..." - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 -#~ msgid "Follow All" -#~ msgstr "Lean iad uile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 -#~ msgid "Follow selected accounts and continue to the next step" -#~ msgstr "Lean na cuntais roghnaithe agus tรฉigh ar aghaidh go dtรญ an chรฉad chรฉim eile" - -#: 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 "Lean cรบpla cuntas mar thosรบ. Tig linn nรญos mรณ รบsรกideoirรญ a mholadh duit a mbeadh suim agat iontu." - -#: src/view/screens/Search/Search.tsx:827 src/view/shell/desktop/Search.tsx:263 -#~ msgid "Go to @{queryMaybeHandle}" -#~ msgstr "Tรฉigh go dtรญ @{queryMaybeHandle}" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 -#~ msgid "Here are some accounts for you to follow" -#~ msgstr "Seo cรบpla cuntas le leanรบint duit" - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 -#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." -#~ msgstr "Seo cรบpla fotha a bhfuil rรกchairt orthu. Is fรฉidir leat an mรฉid acu is mian leat a leanรบint." - -#: 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 "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/screens/Onboarding/StepFollowingFeed.tsx:65 -#~ 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/components/moderation/LabelsOnMe.tsx:59 -#~ msgid "label has been placed on this {labelTarget}" -#~ msgstr "cuireadh lipรฉad ar an {labelTarget} seo" - -#: src/components/moderation/LabelsOnMe.tsx:61 -#~ msgid "labels have been placed on this {labelTarget}" -#~ msgstr "cuireadh lipรฉid ar an {labelTarget}" - -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Like" -#~ msgstr "Mol" - -#: src/view/com/feeds/FeedSourceCard.tsx:268 -#~ msgid "Liked by {0} {1}" -#~ msgstr "Molta ag {0} {1}" - -#: src/components/LabelingServiceCard/index.tsx:72 -#~ msgid "Liked by {count} {0}" -#~ msgstr "Molta ag {count} {0}" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287 src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301 src/view/screens/ProfileFeed.tsx:600 -#~ msgid "Liked by {likeCount} {0}" -#~ msgstr "Molta ag {likeCount} {0}" - -#: src/screens/Feeds/NoFollowingFeed.tsx:38 -#, fuzzy -#~ msgid "Looks like you're missing a following feed." -#~ msgstr "Is cosรบil go bhfuil fotha leanรบna ar iarraidh ort. <0>Cliceรกil anseo le ceann a fhรกil." - -#: src/Navigation.tsx:307 -#, fuzzy -#~ msgid "Messaging settings" -#~ msgstr "Socruithe teachtaireachta" - -#: src/components/dms/ConvoMenu.tsx:136 src/components/dms/ConvoMenu.tsx:142 -#, fuzzy -#~ msgid "Mute notifications" -#~ msgstr "Fรณgraรญ" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:72 src/view/com/auth/onboarding/WelcomeMobile.tsx:74 -#~ 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/view/com/auth/onboarding/WelcomeDesktop.tsx:103 -#~ msgctxt "action" -#~ msgid "Next" -#~ msgstr "Ar aghaidh" - -#: src/components/dms/NewChat.tsx:240 -#, fuzzy -#~ msgid "No search results found for \"{searchText}\"." -#~ msgstr "Gan torthaรญ ar \"{search}\"." - -#: src/view/com/modals/SelfLabel.tsx:135 -#~ msgid "Not Applicable." -#~ msgstr "Nรญ bhaineann sรฉ sin le hรกbhar." - -#: src/screens/Signup/index.tsx:145 -#~ msgid "of" -#~ msgstr "de" - -#: src/view/com/notifications/FeedItem.tsx:349 -#~ msgid "Opens an expanded list of users in this notification" -#~ msgstr "Osclaรญonn sรฉ seo liosta mรฉadaithe dโ€™รบsรกideoirรญ san fhรณgra seo" - -#: src/screens/Messages/List/index.tsx:86 -#, fuzzy -#~ msgid "Opens the message settings page" -#~ msgstr "Osclaรญonn sรฉ seo logleabhar an chรณrais" - -#: src/screens/Messages/Settings.tsx:97 src/screens/Messages/Settings.tsx:104 -#, fuzzy -#~ msgid "Play notification sounds" -#~ msgstr "Fuaimeanna fรณgra" - -#: src/screens/Messages/Conversation/MessagesList.tsx:47 src/screens/Messages/Conversation/MessagesList.tsx:53 -#, fuzzy -#~ msgid "Press to Retry" -#~ msgstr "Brรบigh le iarracht eile a dhรฉanamh" - -#: src/view/com/modals/Repost.tsx:66 -#~ msgctxt "action" -#~ msgid "Quote post" -#~ msgstr "Luaigh an phostรกil seo" - -#: src/view/com/modals/Repost.tsx:71 -#~ msgctxt "action" -#~ msgid "Quote Post" -#~ msgstr "Luaigh an phostรกil seo" - -#: src/components/dms/MessageReportDialog.tsx:149 -#, fuzzy -#~ msgid "Reason: {0}" -#~ msgstr "Fรกth:" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 -#~ msgid "Recommended Feeds" -#~ msgstr "Fothaรญ molta" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 -#~ msgid "Recommended Users" -#~ msgstr "Cuntais mholta" - -#: src/view/com/post/Post.tsx:177 src/view/com/posts/FeedItem.tsx:285 -#~ msgctxt "description" -#~ msgid "Reply to <0/>" -#~ msgstr "Freagra ar <0/>" - -#: src/components/dms/ConvoMenu.tsx:146 src/components/dms/ConvoMenu.tsx:150 -#, fuzzy -#~ msgid "Report account" -#~ msgstr "Dรฉan gearรกn faoi chuntas" - -#: src/view/com/posts/FeedItem.tsx:214 -#~ msgid "Reposted by <0/>" -#~ msgstr "Athphostรกilte ag <0/>" - -#: src/screens/Messages/Conversation/MessageListError.tsx:54 -#, fuzzy -#~ msgid "Retry." -#~ msgstr "Bain triail eile as" - -#: src/view/com/lightbox/Lightbox.tsx:81 -#~ msgid "Saved to your camera roll." -#~ msgstr "Sรกbhรกilte i do rolla ceamara." - -#: src/view/com/notifications/FeedItem.tsx:411 src/view/com/util/UserAvatar.tsx:402 -#~ msgid "See profile" -#~ msgstr "Fรฉach ar an bprรณifรญl" - -#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 -#~ msgid "See what's next" -#~ msgstr "Fรฉach an chรฉad rud eile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 -#~ msgid "Select some accounts below to follow" -#~ msgstr "Roghnaigh cรบpla cuntas le leanรบint" - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 -#~ msgid "Select topical feeds to follow from the list below" -#~ msgstr "Roghnaigh fothaรญ le leanรบint รณn liosta thรญos" - -#: 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" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 -#~ msgid "Select your primary algorithmic feeds" -#~ msgstr "Roghnaigh do phrรญomhfhothaรญ algartamacha" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 -#~ msgid "Select your secondary algorithmic feeds" -#~ msgstr "Roghnaigh do chuid fothaรญ algartamacha tรกnaisteacha" - -#: src/view/screens/PreferencesFollowingFeed.tsx:68 -#~ msgid "Show all replies" -#~ msgstr "Taispeรกin gach freagra" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:119 -#~ msgid "Show quote-posts in Following feed" -#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:135 -#~ msgid "Show quotes in Following" -#~ msgstr "Taispeรกin postรกlacha athluaite san fhotha โ€œร Leanรบintโ€" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:95 -#~ msgid "Show re-posts in Following feed" -#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:87 -#~ msgid "Show replies in Following" -#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:71 -#~ msgid "Show replies in Following feed" -#~ msgstr "Taispeรกin freagraรญ san fhotha โ€œร Leanรบintโ€" - -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#~ msgid "Show replies with at least {value} {0}" -#~ msgstr "Taispeรกin freagraรญ a bhfuil ar a laghad {value} {0} acu" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:111 -#~ msgid "Show reposts in Following" -#~ msgstr "Taispeรกin athphostรกlacha san fhotha โ€œร Leanรบintโ€" - -#: src/view/com/notifications/FeedItem.tsx:347 -#~ msgid "Show users" -#~ msgstr "Taispeรกin รบsรกideoirรญ" - -#: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Foinse:" - -#: src/view/screens/Settings/index.tsx:862 -#~ msgid "Status page" -#~ msgstr "Leathanach stรกdais" - -#: src/screens/Signup/index.tsx:145 -#~ msgid "Step" -#~ msgstr "Cรฉim" - -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:172 src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 -#~ msgid "Subscribe to the {0} feed" -#~ msgstr "Liostรกil leis an bhfotha {0}" - -#: src/components/moderation/ModerationDetailsDialog.tsx:127 -#~ msgid "the author" -#~ msgstr "an t-รบdar" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 -#~ msgid "There are many feeds to try:" -#~ msgstr "Tรก a lรกn fothaรญ ann le blaiseadh:" - -#: src/screens/Messages/Conversation/MessageListError.tsx:23 -#, fuzzy -#~ msgid "There was an issue connecting to the chat." -#~ msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh le Tenor." - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 -#~ msgid "There was an issue syncing your preferences with the server" -#~ msgstr "Bhรญ fadhb ann maidir le do chuid roghanna a shioncronรบ leis an bhfreastalaรญ" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 -#~ msgid "These are popular accounts you might like:" -#~ msgstr "Is cuntais iad seo a bhfuil a lรกn leantรณirรญ acu. Is fรฉidir go dtaitneoidh siad leat." - -#: src/screens/Messages/Conversation/MessageListError.tsx:26 -#, fuzzy -#~ msgid "This chat was disconnected due to a network error." -#~ msgstr "Dรญnascadh an comhrรก seo" - -#: src/components/moderation/ModerationDetailsDialog.tsx:124 -#~ msgid "This label was applied by {0}." -#~ msgstr "Cuireadh an lipรฉad seo ag {0}." - -#: src/components/moderation/LabelsOnMeDialog.tsx:165 -#, fuzzy -#~ msgid "This label was applied by you" -#~ msgstr "Chuir tusa an lipรฉad seo leis." - -#: src/view/com/modals/SelfLabel.tsx:137 -#~ msgid "This warning is only available for posts with media attached." -#~ msgstr "Nรญl an rabhadh seo ar fรกil ach le haghaidh postรกlacha a bhfuil meรกin ceangailte leo." - -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Unlike" -#~ msgstr "Dรญmhol" - -#: src/components/dms/ConvoMenu.tsx:140 -#, fuzzy -#~ msgid "Unmute notifications" -#~ msgstr "Lรณdรกil fรณgraรญ nua" - -#: src/lib/moderation/useReportOptions.ts:85 -#, fuzzy -#~ msgid "Unwanted sexual content" -#~ msgstr "รbhar graosta nach mian liom" - -#: src/view/com/modals/ChangeHandle.tsx:510 -#~ msgid "Verify {0}" -#~ msgstr "Dearbhaigh {0}" - -#: src/view/screens/Settings/index.tsx:852 -#~ msgid "Version {0}" -#~ msgstr "Leagan {0}" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 -#~ msgid "We recommend our \"Discover\" feed:" -#~ msgstr "Molaimid an fotha โ€œDiscoverโ€." - -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 -#~ msgid "Welcome to <0>Bluesky" -#~ msgstr "Fรกilte go <0>Bluesky" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:143 -#~ msgid "You can change these settings later." -#~ msgstr "Is fรฉidir leat na socruithe seo a athrรบ nรญos dรฉanaรญ." - -#: src/view/screens/Feeds.tsx:477 -#~ msgid "You don't have any saved feeds!" -#~ msgstr "Nรญl aon fhothaรญ sรกbhรกilte agat!" - -#: src/screens/Messages/List/index.tsx:200 -#, fuzzy -#~ msgid "You have no messages yet. Start a conversation with someone!" -#~ msgstr "Nรญl comhrรก ar bith agat fรณs. Tosaigh ceann!" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 -#~ 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/screens/Onboarding/StepModeration/index.tsx:60 -#~ msgid "You're in control" -#~ msgstr "Tรก sรฉ faoi do stiรบir" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:62 -#~ msgid "Your default feed is \"Following\"" -#~ msgstr "Is รฉ โ€œFollowingโ€ dโ€™fhotha rรฉamhshocraithe" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index b0327d6498..9544ed9e48 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -45,10 +45,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -63,11 +67,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -79,7 +83,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -136,7 +140,7 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "" @@ -205,12 +209,12 @@ msgstr "" #~ msgid "A new version of the app is available. Please update to continue using the app." #~ msgstr "เคเคช เค•เคพ เคเค• เคจเคฏเคพ เคธเค‚เคธเฅเค•เคฐเคฃ เค‰เคชเคฒเคฌเฅเคง เคนเฅˆ. เค•เฅƒเคชเคฏเคพ เคเคช เค•เคพ เค‰เคชเคฏเฅ‹เค— เคœเคพเคฐเฅ€ เคฐเค–เคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค…เคชเคกเฅ‡เคŸ เค•เคฐเฅ‡เค‚เฅค" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "" @@ -223,7 +227,7 @@ msgstr "เคชเฅเคฐเคตเฅ‡เคฐเฅเคถเคฏเฅ‹เค—เฅเคฏเคคเคพ" msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "" @@ -267,7 +271,7 @@ msgstr "เค…เค•เคพเค‰เค‚เคŸ เค•เฅ‡ เคตเคฟเค•เคฒเฅเคช" msgid "Account removed from quick access" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "" @@ -280,7 +284,7 @@ msgstr "" msgid "Account unmuted" msgstr "" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -302,9 +306,9 @@ msgstr "เค‡เคธ เคธเฅ‚เคšเฅ€ เคฎเฅ‡เค‚ เค•เคฟเคธเฅ€ เค•เฅ‹ เคœเฅ‹เคกเคผเฅ‡เค‚" msgid "Add account" msgstr "เค…เค•เคพเค‰เค‚เคŸ เคœเฅ‹เคกเคผเฅ‡เค‚" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -338,15 +342,15 @@ msgstr "" #~ msgid "Add link card:" #~ msgstr "เคฒเคฟเค‚เค• เค•เคพเคฐเฅเคก เคœเฅ‹เคกเคผเฅ‡เค‚:" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" @@ -363,7 +367,7 @@ msgstr "เค…เคชเคจเฅ‡ เคกเฅ‹เคฎเฅ‡เคจ เคฎเฅ‡เค‚ เคจเคฟเคฎเฅเคจเคฒเคฟเค–เคฟเคค DN msgid "Add to Lists" msgstr "เคธเฅ‚เคšเคฟเคฏเฅ‹เค‚ เคฎเฅ‡เค‚ เคœเฅ‹เคกเคผเฅ‡เค‚" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "เค‡เคธ เคซเคผเฅ€เคก เค•เฅ‹ เคธเคนเฅ‡เคœเฅ‡เค‚" @@ -376,7 +380,7 @@ msgstr "เค‡เคธ เคซเคผเฅ€เคก เค•เฅ‹ เคธเคนเฅ‡เคœเฅ‡เค‚" msgid "Added to list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "" @@ -406,12 +410,12 @@ msgstr "" msgid "Advanced" msgstr "เคตเคฟเค•เคธเคฟเคค" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -434,13 +438,13 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -488,6 +492,7 @@ msgstr "" msgid "an unknown error occurred" msgstr "" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -513,11 +518,11 @@ msgstr "เคเคช เคญเคพเคทเคพ" msgid "App password deleted" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "" @@ -529,18 +534,18 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "" @@ -553,7 +558,7 @@ msgstr "" #~ msgid "Appeal Content Warning" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -578,7 +583,7 @@ msgid "Appearance" msgstr "เคฆเคฟเค–เคพเคตเคŸ" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "" @@ -602,15 +607,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "เค•เฅเคฏเคพ เค†เคช เคตเคพเค•เคˆ เค‡เคธ เคกเฅเคฐเคพเคซเฅเคŸ เค•เฅ‹ เคนเคŸเคพเคจเคพ เค•เคฐเคจเคพ เคšเคพเคนเฅ‡เค‚เค—เฅ‡?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "เค•เฅเคฏเคพ เค†เคช เคตเคพเคธเฅเคคเคต เคฎเฅ‡เค‚ เค‡เคธเฅ‡ เค•เคฐเคจเคพ เคšเคพเคนเคคเฅ‡ เคนเฅˆเค‚?" @@ -635,8 +640,8 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -649,7 +654,7 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "เคตเคพเคชเคธ" @@ -674,7 +679,7 @@ msgstr "เคœเคจเฅเคฎเคฆเคฟเคจ" msgid "Birthday:" msgstr "เคœเคจเฅเคฎเคฆเคฟเคจ:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "" @@ -718,7 +723,7 @@ msgstr "" msgid "Blocked accounts" msgstr "เคฌเฅเคฒเฅ‰เค• เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "เคฌเฅเคฒเฅ‰เค• เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" @@ -799,8 +804,8 @@ msgstr "" msgid "Books" msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "" @@ -816,7 +821,7 @@ msgstr "" #~ msgid "Button disabled. Input custom domain to proceed." #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "" @@ -832,7 +837,7 @@ msgstr "" #~ msgid "by @{0}" #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "" @@ -840,7 +845,7 @@ msgstr "" msgid "By creating an account you agree to the {els}." msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "" @@ -848,7 +853,7 @@ msgstr "" msgid "Camera" msgstr "เค•เฅˆเคฎเคฐเคพ" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 เค…เค•เฅเคทเคฐเฅ‹เค‚ เคธเฅ‡ เค…เคงเคฟเค• เคฒเค‚เคฌเคพ เคจเคนเฅ€เค‚ เคนเฅ‹เคจเคพ เคšเคพเคนเคฟเคเฅคเฅค" @@ -857,8 +862,8 @@ msgstr "เค•เฅ‡เคตเคฒ เค…เค•เฅเคทเคฐ, เคธเค‚เค–เฅเคฏเคพ, เคฐเคฟเค•เฅเคค เคธเฅ #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -874,8 +879,8 @@ msgstr "เค•เฅ‡เคตเคฒ เค…เค•เฅเคทเคฐ, เคธเค‚เค–เฅเคฏเคพ, เคฐเคฟเค•เฅเคค เคธเฅ #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "เค•เฅˆเค‚เคธเคฟเคฒ" @@ -904,7 +909,7 @@ msgstr "เคคเคธเฅเคตเฅ€เคฐ เค•เฅ‹ เค•เฅเคฐเฅ‰เคช เคฎเคค เค•เคฐเฅ‹" msgid "Cancel profile editing" msgstr "เคชเฅเคฐเฅ‹เคซเคผเคพเค‡เคฒ เคธเค‚เคชเคพเคฆเคจ เคฎเคค เค•เคฐเฅ‹" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "เค•เฅ‹เคŸเฅ‡ เคชเฅ‹เคธเฅเคŸ เคฎเคค เค•เคฐเฅ‹" @@ -968,7 +973,7 @@ msgstr "" msgid "Change Your Email" msgstr "เคฎเฅ‡เคฐเคพ เคˆเคฎเฅ‡เคฒ เคฌเคฆเคฒเฅ‡เค‚" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -980,7 +985,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -1074,7 +1079,7 @@ msgid "Clear all storage data (restart after this)" msgstr "" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "เค–เฅ‹เคœ เค•เฅเคตเฅ‡เคฐเฅ€ เคธเคพเคซเคผ เค•เคฐเฅ‡เค‚" @@ -1182,7 +1187,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "" @@ -1206,7 +1211,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "เคธเคฎเฅเคฆเคพเคฏ เคฆเคฟเคถเคพเคจเคฟเคฐเฅเคฆเฅ‡เคถ" @@ -1219,7 +1224,7 @@ msgstr "" msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -1350,7 +1355,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "เค†เค—เฅ‡ เคฌเคขเคผเฅ‡เค‚" @@ -1358,8 +1363,12 @@ msgstr "เค†เค—เฅ‡ เคฌเคขเคผเฅ‡เค‚" msgid "Continue as {0} (currently signed in)" msgstr "" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "" @@ -1372,7 +1381,7 @@ msgstr "" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1380,7 +1389,7 @@ msgstr "" msgid "Cooking" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "เค•เฅ‰เคชเฅ€ เค•เคฐ เคฒเฅ€" @@ -1390,10 +1399,10 @@ msgid "Copied build version to clipboard" msgstr "" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "" @@ -1401,11 +1410,11 @@ msgstr "" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "เค•เฅ‰เคชเฅ€" @@ -1422,8 +1431,8 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "" @@ -1436,12 +1445,12 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "เคชเฅ‹เคธเฅเคŸ เคŸเฅ‡เค•เฅเคธเฅเคŸ เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "เค•เฅ‰เคชเฅ€เคฐเคพเค‡เคŸ เคจเฅ€เคคเคฟ" @@ -1492,11 +1501,11 @@ msgstr "เค–เคพเคคเคพ เคฌเคจเคพเคเค" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "" @@ -1538,7 +1547,7 @@ msgstr "" msgid "Custom domain" msgstr "เค•เคธเฅเคŸเคฎ เคกเฅ‹เคฎเฅ‡เคจ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1585,7 +1594,7 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1644,8 +1653,8 @@ msgstr "เคฎเฅ‡เคฐเคพ เค–เคพเคคเคพ เคนเคŸเคพเคเค‚" msgid "Delete My Accountโ€ฆ" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เคนเคŸเคพเคเค‚" @@ -1653,7 +1662,7 @@ msgstr "เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เคนเคŸเคพเคเค‚" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เคกเฅ€เคฒเฅ€เคŸ เค•เคฐเฅ‡เค‚?" @@ -1676,7 +1685,7 @@ msgstr "" msgid "Description" msgstr "เคตเคฟเคตเคฐเคฃ" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "" @@ -1684,7 +1693,7 @@ msgstr "" #~ msgid "Developer Tools" #~ msgstr "เคกเฅ‡เคตเคฒเคชเคฐ เค‰เคชเค•เคฐเคฃ" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "" @@ -1725,7 +1734,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "" @@ -1733,7 +1742,7 @@ msgstr "" #~ msgid "Discard draft" #~ msgstr "เคกเฅเคฐเคพเคซเฅเคŸ เคนเคŸเคพเคเค‚" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "" @@ -1742,8 +1751,8 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "" @@ -1751,7 +1760,7 @@ msgstr "" #~ msgid "Discover new feeds" #~ msgstr "เคจเค เคซเคผเฅ€เคก เค•เฅ€ เค–เฅ‹เคœ เค•เคฐเฅ‡เค‚" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "" @@ -1791,11 +1800,11 @@ msgstr "เคกเฅ‹เคฎเฅ‡เคจ เคธเคคเฅเคฏเคพเคชเคฟเคค!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1882,6 +1891,11 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "เคชเฅเคฐเคคเฅเคฏเฅ‡เค• เค•เฅ‹เคก เคเค• เคฌเคพเคฐ เค•เคพเคฎ เค•เคฐเคคเคพ เคนเฅˆเฅค เค†เคชเค•เฅ‹ เคธเคฎเคฏ-เคธเคฎเคฏ เคชเคฐ เค…เคงเคฟเค• เค†เคฎเค‚เคคเฅเคฐเคฃ เค•เฅ‹เคก เคชเฅเคฐเคพเคชเฅเคค เคนเฅ‹เค‚เค—เฅ‡เฅค" +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1905,8 +1919,9 @@ msgstr "เคธเฅ‚เคšเฅ€ เคตเคฟเคตเคฐเคฃ เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "เคฎเฅ‡เคฐเฅ€ เคซเคผเฅ€เคก เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" @@ -1916,19 +1931,19 @@ msgid "Edit my profile" msgstr "เคฎเฅ‡เคฐเฅ€ เคชเฅเคฐเฅ‹เคซเคผเคพเค‡เคฒ เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "เคฎเฅ‡เคฐเฅ€ เคชเฅเคฐเฅ‹เคซเคผเคพเค‡เคฒ เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "เคฎเฅ‡เคฐเฅ€ เคชเฅเคฐเฅ‹เคซเคผเคพเค‡เคฒ เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "เคเคกเคฟเคŸ เคธเฅ‡เคตเฅเคก เคซเฅ€เคก" +#~ msgid "Edit Saved Feeds" +#~ msgstr "เคเคกเคฟเคŸ เคธเฅ‡เคตเฅเคก เคซเฅ€เคก" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1981,8 +1996,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "" @@ -2042,7 +2057,7 @@ msgstr "" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "" @@ -2050,8 +2065,8 @@ msgstr "" msgid "Enter a password" msgstr "" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "" @@ -2109,7 +2124,7 @@ msgid "Error receiving captcha response." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "" @@ -2201,7 +2216,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2211,8 +2226,8 @@ msgstr "" msgid "External media settings" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "" @@ -2224,7 +2239,7 @@ msgstr "" msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "" @@ -2258,7 +2273,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -2268,15 +2283,15 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "เคซเคผเฅ€เคก เค‘เคซเคผเคฒเคพเค‡เคจ เคนเฅˆ" @@ -2285,17 +2300,16 @@ msgstr "เคซเคผเฅ€เคก เค‘เคซเคผเคฒเคพเค‡เคจ เคนเฅˆ" #~ msgstr "เคซเคผเฅ€เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพ" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "เคชเฅเคฐเคคเคฟเค•เฅเคฐเคฟเคฏเคพ" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "เคธเคญเฅ€ เคซเคผเฅ€เคก" @@ -2336,12 +2350,12 @@ msgid "Finalizing" msgstr "" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "" @@ -2388,7 +2402,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2399,7 +2413,7 @@ msgctxt "action" msgid "Follow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "" @@ -2429,6 +2443,10 @@ msgstr "" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "เค†เคฐเค‚เคญ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค•เฅเค› เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เคพ เค…เคจเฅเคธเคฐเคฃ เค•เคฐเฅ‡เค‚. เค†เคชเค•เฅ‹ เค•เฅŒเคจ เคฆเคฟเคฒเคšเคธเฅเคช เคฒเค—เคคเคพ เคนเฅˆ, เค‡เคธเค•เฅ‡ เค†เคงเคพเคฐ เคชเคฐ เคนเคฎ เค†เคชเค•เฅ‹ เค”เคฐ เค…เคงเคฟเค• เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ€ เค…เคจเฅเคถเค‚เคธเคพ เค•เคฐ เคธเค•เคคเฅ‡ เคนเฅˆเค‚เฅค" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "" @@ -2450,18 +2468,27 @@ msgstr "" msgid "Followers" msgstr "เคฏเคน เคฏเฅ‚เคœเคฐ เค†เคชเค•เคพ เคซเคผเฅ‹เคฒเฅ‹ เค•เคฐเคคเคพ เคนเฅˆ" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "เคซเฅ‹เคฒเฅเคฒเฅ‹เคตเคฟเค‚เค—" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "" @@ -2473,9 +2500,7 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2497,7 +2522,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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 "เคธเฅเคฐเค•เฅเคทเคพ เค•เคพเคฐเคฃเฅ‹เค‚ เค•เฅ‡ เคฒเคฟเค, เค†เคช เค‡เคธเฅ‡ เคซเคฟเคฐ เคธเฅ‡ เคฆเฅ‡เค–เคจเฅ‡ เคฎเฅ‡เค‚ เคธเค•เฅเคทเคฎ เคจเคนเฅ€เค‚ เคนเฅ‹เค‚เค—เฅ‡เฅค เคฏเคฆเคฟ เค†เคช เค‡เคธ เคชเคพเคธเคตเคฐเฅเคก เค•เฅ‹ เค–เฅ‹ เคฆเฅ‡เคคเฅ‡ เคนเฅˆเค‚, เคคเฅ‹ เค†เคชเค•เฅ‹ เคเค• เคจเคฏเคพ เค‰เคคเฅเคชเคจเฅเคจ เค•เคฐเคจเคพ เคนเฅ‹เค—เคพเฅคเฅค" @@ -2548,7 +2573,7 @@ msgstr "" msgid "Get Started" msgstr "เคชเฅเคฐเคพเคฐเค‚เคญ เค•เคฐเฅ‡เค‚" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "" @@ -2576,9 +2601,9 @@ msgstr "เคตเคพเคชเคธ เคœเคพเค“" msgid "Go Back" msgstr "เคตเคพเคชเคธ เคœเคพเค“" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2598,7 +2623,7 @@ msgstr "" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2631,7 +2656,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "" @@ -2648,11 +2673,11 @@ msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "เคธเคนเคพเคฏเคคเคพ" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2668,7 +2693,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "เคฏเคนเคพเค‚ เค†เคชเค•เคพ เคเคช เคชเคพเคธเคตเคฐเฅเคก เคนเฅˆ." @@ -2679,7 +2704,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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "เค‡เคธเฅ‡ เค›เคฟเคชเคพเคเค‚" @@ -2688,8 +2713,8 @@ msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "" @@ -2698,7 +2723,7 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "" @@ -2710,23 +2735,23 @@ msgstr "เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคธเฅ‚เคšเฅ€ เค›เฅเคชเคพเคเค" #~ msgid "Hides posts from {0} in your feed" #~ msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" @@ -2738,11 +2763,11 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "เคนเฅ‹เคฎ เคซเฅ€เคก" @@ -2803,7 +2828,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -2856,7 +2881,7 @@ msgstr "" #~ msgid "Input invite code to proceed" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "" @@ -2913,7 +2938,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "" @@ -2998,11 +3023,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "" @@ -3014,7 +3039,7 @@ msgstr "เค…เคชเคจเฅ€ เคญเคพเคทเคพ เคšเฅเคจเฅ‡" msgid "Language settings" msgstr "" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "เคญเคพเคทเคพ เคธเฅ‡เคŸเคฟเค‚เค—เฅเคธ" @@ -3028,7 +3053,7 @@ msgstr "เคญเคพเคทเคพ" #~ msgstr "" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "" @@ -3119,8 +3144,8 @@ msgid "Like this feed" msgstr "เค‡เคธ เคซเคผเฅ€เคก เค•เฅ‹ เคฒเคพเค‡เค• เค•เคฐเฅ‹" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "เค‡เคจ เคฏเฅ‚เคœเคฐ เคจเฅ‡ เคฒเคพเค‡เค• เค•เคฟเคฏเคพ เคนเฅˆ" @@ -3156,11 +3181,11 @@ msgstr "" msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "" @@ -3172,7 +3197,7 @@ msgstr "เคธเฅ‚เคšเฅ€ เค…เคตเคคเคพเคฐ" msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "" @@ -3196,12 +3221,12 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "เคธเฅ‚เคšเฅ€" @@ -3214,7 +3239,7 @@ msgstr "" #~ msgid "Load more posts" #~ msgstr "เค…เคงเคฟเค• เคชเฅ‹เคธเฅเคŸ เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "เคจเคˆ เคธเฅ‚เคšเคจเคพเคเค‚ เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" @@ -3233,7 +3258,7 @@ msgstr "" #~ msgid "Local dev server" #~ msgstr "เคธเฅเคฅเคพเคจเฅ€เคฏ เคฆเฅ‡เคต เคธเคฐเฅเคตเคฐ" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "" @@ -3269,7 +3294,7 @@ msgstr "" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "" @@ -3285,7 +3310,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "เคฏเคน เคธเฅเคจเคฟเคถเฅเคšเคฟเคค เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค•เคฟ เค†เคช เค•เคนเคพเค เคœเคพเคจเคพ เคšเคพเคนเคคเฅ‡ เคนเฅˆเค‚!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "" @@ -3315,8 +3340,8 @@ msgstr "" msgid "Mentioned users" msgstr "" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "เคฎเฅ‡เคจเฅ‚" @@ -3325,11 +3350,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "" @@ -3346,7 +3371,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3361,7 +3386,7 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3398,7 +3423,7 @@ msgstr "" msgid "Moderation lists" msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเคฟเคฏเคพเค" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "" @@ -3407,7 +3432,7 @@ msgstr "" msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "" @@ -3420,7 +3445,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "" @@ -3474,11 +3499,11 @@ msgstr "" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "" @@ -3499,21 +3524,21 @@ msgstr "เค‡เคจ เค–เคพเคคเฅ‹เค‚ เค•เฅ‹ เคฎเฅเคฏเฅ‚เคŸ เค•เคฐเฅ‡เค‚?" #~ msgid "Mute this List" #~ msgstr "" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "เคฅเฅเคฐเฅ‡เคก เคฎเฅเคฏเฅ‚เคŸ เค•เคฐเฅ‡เค‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "" @@ -3525,7 +3550,7 @@ msgstr "" msgid "Muted accounts" msgstr "เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" @@ -3551,7 +3576,7 @@ msgstr "เคฎเฅเคฏเฅ‚เคŸ เค•เคฐเคจเคพ เคจเคฟเคœเฅ€ เคนเฅˆ. เคฎเฅเคฏเฅ‚เคŸ เค•เคฟ msgid "My Birthday" msgstr "เคœเคจเฅเคฎเคฆเคฟเคจ" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "เคฎเฅ‡เคฐเฅ€ เคซเคผเฅ€เคก" @@ -3571,7 +3596,7 @@ msgstr "เคฎเฅ‡เคฐเฅ€ เคซเคผเฅ€เคก" #~ msgid "my-server.com" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "เคจเคพเคฎ" @@ -3662,8 +3687,8 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3733,7 +3758,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "" @@ -3741,7 +3766,7 @@ msgstr "" msgid "No longer than 253 characters" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "" @@ -3749,7 +3774,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "" @@ -3760,6 +3785,10 @@ msgstr "" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3773,13 +3802,13 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "\"{query}\" เค•เฅ‡ เคฒเคฟเค เค•เฅ‹เคˆ เคชเคฐเคฟเคฃเคพเคฎ เคจเคนเฅ€เค‚ เคฎเคฟเคฒเคพ" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "{query} เค•เฅ‡ เคฒเคฟเค เค•เฅ‹เคˆ เคชเคฐเคฟเคฃเคพเคฎ เคจเคนเฅ€เค‚ เคฎเคฟเคฒเคพ\"" @@ -3818,7 +3847,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "เคฒเคพเค—เฅ‚ เคจเคนเฅ€เค‚เฅค" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "" @@ -3829,7 +3858,7 @@ msgid "Not right now" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "" @@ -3850,13 +3879,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "เคธเฅ‚เคšเคจเคพเคเค‚" @@ -3910,11 +3939,11 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "เคเค• เคฏเคพ เค…เคงเคฟเค• เค›เคตเคฟเคฏเคพเค alt เคชเคพเค  เคฏเคพเคฆ เค†เคคเฅ€ เคนเฅˆเค‚เฅคเฅค" -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "" @@ -3944,7 +3973,7 @@ msgstr "" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "" @@ -3952,13 +3981,13 @@ msgstr "" #~ msgid "Open content filtering settings" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "" @@ -3982,11 +4011,11 @@ msgstr "" #~ msgid "Open muted words settings" #~ msgstr "" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "เค“เคชเคจ เคจเฅ‡เคตเคฟเค—เฅ‡เคถเคจ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "" @@ -4115,8 +4144,8 @@ msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -4168,8 +4197,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "" @@ -4241,15 +4270,15 @@ msgstr "เคชเคพเคธเคตเคฐเฅเคก เค…เคฆเฅเคฏเคคเคจ!" msgid "Pause" msgstr "" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "" @@ -4332,7 +4361,7 @@ msgstr "" msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "เค‡เคธเฅ‡ เคฌเคฆเคฒเคจเฅ‡ เคธเฅ‡ เคชเคนเคฒเฅ‡ เค•เฅƒเคชเคฏเคพ เค…เคชเคจเฅ‡ เคˆเคฎเฅ‡เคฒ เค•เฅ€ เคชเฅเคทเฅเคŸเคฟ เค•เคฐเฅ‡เค‚เฅค เคฏเคน เคเค• เค…เคธเฅเคฅเคพเคฏเฅ€ เค†เคตเคถเฅเคฏเค•เคคเคพ เคนเฅˆ เคœเคฌเค•เคฟ เคˆเคฎเฅ‡เคฒ-เค…เคชเคกเฅ‡เคŸเคฟเค‚เค— เคŸเฅ‚เคฒ เคœเฅ‹เคกเคผเคพ เคœเคพเคคเคพ เคนเฅˆ, เค”เคฐ เค‡เคธเฅ‡ เคœเคฒเฅเคฆ เคนเฅ€ เคนเคŸเคพ เคฆเคฟเคฏเคพ เคœเคพเคเค—เคพเฅคเฅค" -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" @@ -4340,11 +4369,11 @@ msgstr "" #~ msgid "Please enter a phone number that can receive SMS text messages." #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "เค•เฅƒเคชเคฏเคพ เค‡เคธ เคเคช เคชเคพเคธเคตเคฐเฅเคก เค•เฅ‡ เคฒเคฟเค เคเค• เค…เคฆเฅเคตเคฟเคคเฅ€เคฏ เคจเคพเคฎ เคฆเคฐเฅเคœ เค•เคฐเฅ‡เค‚ เคฏเคพ เคนเคฎเคพเคฐเฅ‡ เคฏเคพเคฆเฅƒเคšเฅเค›เคฟเค• เคฐเฅ‚เคช เคธเฅ‡ เค‰เคคเฅเคชเคจเฅเคจ เคเค• เค•เคพ เค‰เคชเคฏเฅ‹เค— เค•เคฐเฅ‡เค‚เฅคเฅค" -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" @@ -4364,7 +4393,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "เค•เฅƒเคชเคฏเคพ เค…เคชเคจเคพ เคชเคพเคธเคตเคฐเฅเคก เคญเฅ€ เคฆเคฐเฅเคœ เค•เคฐเฅ‡เค‚:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4386,7 +4415,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "" @@ -4402,28 +4431,28 @@ msgstr "" #~ msgid "Pornography" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "เคชเฅ‹เคธเฅเคŸ" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "" @@ -4462,11 +4491,11 @@ msgstr "" msgid "Posts" msgstr "" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "" @@ -4494,6 +4523,10 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "เคชเคฟเค›เคฒเฅ€ เค›เคตเคฟ" @@ -4511,11 +4544,11 @@ msgstr "เค…เคชเคจเฅ‡ เคซเคผเฅ‰เคฒเฅ‹เค…เคฐเฅเคธ เค•เฅ‹ เคชเฅเคฐเคพเคฅเคฎเคฟเค• msgid "Privacy" msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ เคจเฅ€เคคเคฟ" @@ -4535,8 +4568,8 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "เคชเฅเคฐเฅ‹เคซเคผเคพเค‡เคฒ" @@ -4560,16 +4593,16 @@ msgstr "" msgid "Public, shareable lists which can drive feeds." msgstr "เคธเคพเคฐเฅเคตเคœเคจเคฟเค•, เคธเคพเคเคพ เค•เคฐเคจเฅ‡ เคฏเฅ‹เค—เฅเคฏ เคธเฅ‚เคšเคฟเคฏเคพเค เคœเฅ‹ เคซเคผเฅ€เคก เคšเคฒเคพ เคธเค•เคคเฅ€ เคนเฅˆเค‚เฅค" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4597,7 +4630,7 @@ msgstr "เค…เคจเฅเคชเคพเคค" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4605,7 +4638,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "" @@ -4625,12 +4658,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "เคจเคฟเค•เคพเคฒเฅ‡เค‚" @@ -4654,25 +4687,25 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "เคซเคผเฅ€เคก เคนเคŸเคพเคเค" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "เคฎเฅ‡เคฐเฅ‡ เคซเคผเฅ€เคก เคธเฅ‡ เคนเคŸเคพเคเค" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4684,15 +4717,15 @@ msgstr "เค›เคตเคฟ เคจเคฟเค•เคพเคฒเฅ‡เค‚" msgid "Remove image preview" msgstr "เค›เคตเคฟ เคชเฅ‚เคฐเฅเคตเคพเคตเคฒเฅ‹เค•เคจ เคจเคฟเค•เคพเคฒเฅ‡เค‚" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4700,8 +4733,8 @@ msgstr "" msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "" @@ -4709,7 +4742,7 @@ msgstr "" #~ msgid "Remove this feed from my feeds?" #~ msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "" @@ -4722,7 +4755,7 @@ msgstr "" msgid "Removed from list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "" @@ -4753,7 +4786,7 @@ msgstr "" msgid "Replies to this thread are disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "" @@ -4817,8 +4850,8 @@ msgstr "เคฐเคฟเคชเฅ‹เคฐเฅเคŸ เคธเฅ‚เคšเฅ€" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "เคฐเคฟเคชเฅ‹เคฐเฅเคŸ เคชเฅ‹เคธเฅเคŸ" @@ -4834,8 +4867,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "" @@ -4848,9 +4881,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "" @@ -4860,7 +4893,7 @@ msgstr "" msgid "Repost" msgstr "เคชเฅเคจ: เคชเฅ‹เคธเฅเคŸ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4886,7 +4919,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "" @@ -5005,8 +5038,8 @@ msgstr "" #~ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -5086,20 +5119,20 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "เค–เฅ‹เคœ" @@ -5107,7 +5140,7 @@ msgstr "เค–เฅ‹เคœ" msgid "Search for \"{query}\"" msgstr "" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "" @@ -5254,7 +5287,7 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5328,8 +5361,8 @@ msgctxt "action" msgid "Send Email" msgstr "เคˆเคฎเฅ‡เคฒ เคญเฅ‡เคœเฅ‡เค‚" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "เคชเฅเคฐเคคเคฟเค•เฅเคฐเคฟเคฏเคพ เคญเฅ‡เคœเฅ‡เค‚" @@ -5338,14 +5371,14 @@ msgstr "เคชเฅเคฐเคคเคฟเค•เฅเคฐเคฟเคฏเคพ เคญเฅ‡เคœเฅ‡เค‚" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "" @@ -5362,8 +5395,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -5494,11 +5527,11 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "เคธเฅ‡เคŸเคฟเค‚เค—เฅเคธ" @@ -5517,8 +5550,8 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5533,7 +5566,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "" @@ -5589,7 +5622,7 @@ msgstr "" #~ msgid "Show embeds from {0}" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "" @@ -5597,19 +5630,19 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -5702,9 +5735,9 @@ msgstr "" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5745,9 +5778,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5796,7 +5829,7 @@ msgstr "" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "" @@ -5840,7 +5873,7 @@ msgstr "เค‰เคธเฅ€ เคชเฅ‹เคธเฅเคŸ เค•เฅ‡ เค‰เคคเฅเคคเคฐเฅ‹เค‚ เค•เฅ‹ เค‡เคธ เคช #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5901,13 +5934,13 @@ msgstr "" msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5938,7 +5971,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "เค‡เคธ เคธเฅ‚เคšเฅ€ เค•เฅ‹ เคธเคฌเฅเคธเค•เฅเคฐเคพเค‡เคฌ เค•เคฐเฅ‡เค‚" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "เค…เคจเฅเคถเค‚เคธเคฟเคค เคฒเฅ‹เค—" @@ -5950,7 +5983,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5981,7 +6014,7 @@ msgstr "เคชเฅเคฐเคฃเคพเคฒเฅ€" msgid "System log" msgstr "เคธเคฟเคธเฅเคŸเคฎ เคฒเฅ‰เค—" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "" @@ -6013,11 +6046,11 @@ msgstr "" msgid "Terms" msgstr "เคถเคฐเฅเคคเฅ‡เค‚" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "เคธเฅ‡เคตเคพ เค•เฅ€ เคถเคฐเฅเคคเฅ‡เค‚" @@ -6027,17 +6060,17 @@ msgstr "เคธเฅ‡เคตเคพ เค•เฅ€ เคถเคฐเฅเคคเฅ‡เค‚" msgid "Terms used violate community standards" msgstr "" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "เคชเคพเค  เค‡เคจเคชเฅเคŸ เคซเคผเฅ€เคฒเฅเคก" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "" @@ -6049,7 +6082,7 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "เค…เคจเคฌเฅเคฒเฅ‰เค• เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฌเคพเคฆ เค…เค•เคพเค‰เค‚เคŸ เค†เคชเคธเฅ‡ เค‡เค‚เคŸเคฐเฅˆเค•เฅเคŸ เค•เคฐ เคธเค•เฅ‡เค—เคพเฅค" @@ -6070,11 +6103,11 @@ msgstr "เค•เฅ‰เคชเฅ€เคฐเคพเค‡เคŸ เคจเฅ€เคคเคฟ เค•เฅ‹ <0/> เคชเคฐ เคธเฅเคฅเคพเคจ msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "" @@ -6112,7 +6145,7 @@ msgstr "" msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" @@ -6140,12 +6173,12 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" @@ -6162,8 +6195,8 @@ msgstr "" msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -6175,9 +6208,9 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -6226,7 +6259,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6259,10 +6292,14 @@ msgstr "" msgid "This content is not available because one of the users involved has blocked the other." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "" +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:75 #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "" @@ -6271,20 +6308,25 @@ msgstr "" msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "" #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "" +#~ msgid "This feed is empty!" +#~ 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 "" +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6313,7 +6355,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -6333,20 +6375,20 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เคนเคŸเคพ เคฆเคฟเคฏเคพ เค—เคฏเคพ เคนเฅˆเฅคเฅค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "" @@ -6407,7 +6449,7 @@ msgstr "" #~ msgid "This warning is only available for posts with media attached." #~ msgstr "เคฏเคน เคšเฅ‡เคคเคพเคตเคจเฅ€ เค•เฅ‡เคตเคฒ เคฎเฅ€เคกเคฟเคฏเคพ เคธเค‚เคฒเค—เฅเคจ เคชเฅ‹เคธเฅเคŸ เค•เฅ‡ เคฒเคฟเค เค‰เคชเคฒเคฌเฅเคง เคนเฅˆเฅค" -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "" @@ -6428,7 +6470,7 @@ msgstr "เคฅเฅเคฐเฅ‡เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพ" msgid "Threaded Mode" msgstr "เคฅเฅเคฐเฅ‡เคก เคฎเฅ‹เคก" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "" @@ -6444,7 +6486,7 @@ msgstr "" msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "" @@ -6457,7 +6499,7 @@ msgid "Toggle to enable or disable adult content" msgstr "" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "" @@ -6467,10 +6509,10 @@ msgstr "เคชเคฐเคฟเคตเคฐเฅเคคเคจ" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "เค…เคจเฅเคตเคพเคฆ" @@ -6512,14 +6554,14 @@ msgstr "เค†เคชเค•เฅ€ เคธเฅ‡เคตเคพ เคธเฅ‡ เคธเค‚เคชเคฐเฅเค• เค•เคฐเคจเฅ‡ เคฎเฅ‡ #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "เค…เคจเคฌเฅเคฒเฅ‰เค•" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "" @@ -6534,12 +6576,12 @@ msgstr "" msgid "Unblock Account" msgstr "เค…เคจเคฌเฅเคฒเฅ‰เค• เค–เคพเคคเคพ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -6554,7 +6596,7 @@ msgstr "" msgid "Unfollow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "" @@ -6605,8 +6647,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "เคฅเฅเคฐเฅ‡เคก เค•เฅ‹ เค…เคจเคฎเฅเคฏเฅ‚เคŸ เค•เคฐเฅ‡เค‚" @@ -6664,7 +6706,7 @@ msgstr "" msgid "Updating..." msgstr "เค…เคฆเฅเคฏเคคเคจ..เฅค" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "" @@ -6725,7 +6767,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." msgstr "เค…เคชเคจเฅ‡ เคนเฅˆเค‚เคกเคฒ เค•เฅ‡ เคธเคพเคฅ เคฆเฅ‚เคธเคฐเฅ‡ เคเคช เคฎเฅ‡เค‚ เคธเคพเค‡เคจ เค‡เคจ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค‡เคธเค•เคพ เค‰เคชเคฏเฅ‹เค— เค•เคฐเฅ‡เค‚เฅค" @@ -6904,11 +6946,11 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "เค…เคตเคคเคพเคฐ เคฆเฅ‡เค–เฅ‡เค‚" @@ -6920,6 +6962,11 @@ msgstr "" msgid "View users who like this feed" msgstr "" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6947,7 +6994,7 @@ msgstr "" msgid "We couldn't find any results for that hashtag." msgstr "" -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "" @@ -6967,7 +7014,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "" @@ -7011,14 +7058,18 @@ msgstr "เคนเคฎ เค†เคชเค•เฅ‡ เคนเคฎเคพเคฐเฅ€ เคธเฅ‡เคตเคพ เคฎเฅ‡เค‚ เคถเคพเคฎเคฟ msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -7046,7 +7097,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "" @@ -7067,7 +7118,7 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "" @@ -7105,11 +7156,11 @@ msgstr "เคšเฅŒเคกเคผเคพ" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "เคชเฅ‹เคธเฅเคŸ เคฒเคฟเค–เฅ‹" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "เค…เคชเคจเคพ เคœเคตเคพเคฌ เคฆเฅ‡เค‚" @@ -7157,8 +7208,8 @@ msgstr "" msgid "You are not following anyone." msgstr "" -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "" @@ -7195,6 +7246,10 @@ msgstr "" msgid "You do not have any followers." msgstr "" +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "เค†เคชเค•เฅ‡ เคชเคพเคธ เค…เคญเฅ€ เคคเค• เค•เฅ‹เคˆ เค†เคฎเค‚เคคเฅเคฐเคฃ เค•เฅ‹เคก เคจเคนเฅ€เค‚ เคนเฅˆ! เคœเคฌ เค†เคช เค•เฅเค› เค…เคงเคฟเค• เคธเคฎเคฏ เค•เฅ‡ เคฒเคฟเค Bluesky เคชเคฐ เคฐเคนเฅ‡เค‚เค—เฅ‡ เคคเฅ‹ เคนเคฎ เค†เคชเค•เฅ‹ เค•เฅเค› เคญเฅ‡เคœเฅ‡เค‚เค—เฅ‡เฅค" @@ -7294,15 +7349,15 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" @@ -7318,7 +7373,7 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "" @@ -7326,11 +7381,11 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "" @@ -7338,15 +7393,15 @@ msgstr "" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "เค†เคชเค•เฅ‹ \"reset code\" เค•เฅ‡ เคธเคพเคฅ เคเค• เคˆเคฎเฅ‡เคฒ เคชเฅเคฐเคพเคชเฅเคค เคนเฅ‹เค—เคพเฅค เค‰เคธ เค•เฅ‹เคก เค•เฅ‹ เคฏเคนเคพเค เคฆเคฐเฅเคœ เค•เคฐเฅ‡เค‚, เคซเคฟเคฐ เค…เคชเคจเคพ เคจเคฏเคพ เคชเคพเคธเคตเคฐเฅเคก เคฆเคฐเฅเคœ เค•เคฐเฅ‡เค‚เฅคเฅค" -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -7374,7 +7429,7 @@ msgstr "" msgid "You've chosen to hide a word or tag within this post." msgstr "" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" @@ -7424,7 +7479,7 @@ msgstr "เค†เคชเค•เคพ เคˆเคฎเฅ‡เคฒ เค…เคฆเฅเคฏเคคเคจ เค•เคฟเคฏเคพ เค—เคฏเคพ เคน msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "เค†เคชเค•เคพ เคˆเคฎเฅ‡เคฒ เค…เคญเฅ€ เคคเค• เคธเคคเฅเคฏเคพเคชเคฟเคค เคจเคนเฅ€เค‚ เคนเฅเค† เคนเฅˆเฅค เคฏเคน เคเค• เคฎเคนเคคเฅเคตเคชเฅ‚เคฐเฅเคฃ เคธเฅเคฐเค•เฅเคทเคพ เค•เคฆเคฎ เคนเฅˆ เคœเคฟเคธเฅ‡ เคนเคฎ เค…เคจเฅเคถเค‚เคธเคพ เค•เคฐเคคเฅ‡ เคนเฅˆเค‚เฅคเฅค" -#: src/view/com/posts/FollowingEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" @@ -7442,7 +7497,7 @@ msgstr "" #~ msgid "Your invite codes are hidden when logged in using an App Password" #~ msgstr "" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "" @@ -7450,7 +7505,7 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "" @@ -7466,11 +7521,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 1287207c5d..f6186e9b51 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -18,7 +18,7 @@ msgstr "" "X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" "X-Crowdin-File-ID: 12\n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -46,10 +46,14 @@ msgstr "{0, plural, other {# label telah diterapkan pada akun ini}}" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, other {# label telah diterapkan pada konten ini}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {# postingan ulang}}" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -64,11 +68,11 @@ msgstr "{0, plural, other {mengikuti}}" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, other {Suka (# menyukai)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {suka}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: 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}}" @@ -80,7 +84,7 @@ msgstr "{0, plural, other {postingan}}" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, other {Balas (# balasan)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {posting ulang}}" @@ -123,7 +127,7 @@ msgstr "{handle} tidak dapat dikirimi pesan" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {Disukai oleh # pengguna}}" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} belum dibaca" @@ -180,12 +184,12 @@ msgstr "โš Handle Tidak Valid" msgid "2FA Confirmation" msgstr "Konfirmasi 2FA" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Akses tautan navigasi dan pengaturan" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Akses profil dan tautan navigasi lain" @@ -198,7 +202,7 @@ msgstr "Aksesibilitas" msgid "Accessibility settings" msgstr "Pengaturan aksesibilitas" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" @@ -242,7 +246,7 @@ msgstr "Pengaturan akun" msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Akun batal diblokir" @@ -255,7 +259,7 @@ msgstr "Akun batal diikuti" msgid "Account unmuted" msgstr "Akun batal dibisukan" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -277,9 +281,9 @@ msgstr "Tambahkan pengguna ke daftar ini" msgid "Add account" msgstr "Tambahkan akun" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -304,15 +308,15 @@ msgstr "Tambahkan Kata Sandi Aplikasi" #~ msgid "Add link card:" #~ msgstr "" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Tambahkan kata yang akan dibisukan ke pengaturan terpilih" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Tambah kata dan tagar untuk dibisukan" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Tambahkan feed rekomendasi" @@ -329,7 +333,7 @@ msgstr "Tambahkan catatan DNS berikut ke domain Anda:" msgid "Add to Lists" msgstr "Tambahkan ke Daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Tambakan ke feed saya" @@ -342,7 +346,7 @@ msgstr "Tambakan ke feed saya" msgid "Added to list" msgstr "Ditambahkan ke daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Ditambahkan ke feed saya" @@ -364,12 +368,12 @@ msgstr "Konten dewasa dinonaktifkan." msgid "Advanced" msgstr "Lanjutan" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -392,13 +396,13 @@ msgstr "Sudah memiliki kode?" msgid "Already signed in as @{0}" msgstr "Sudah masuk sebagai @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -446,6 +450,7 @@ msgstr "Terjadi masalah, silakan coba lagi." msgid "an unknown error occurred" msgstr "terjadi kesalahan yang tidak diketahui" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -471,11 +476,11 @@ msgstr "Bahasa Aplikasi" msgid "App password deleted" msgstr "Kata sandi aplikasi dihapus" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "Nama Kata Sandi Aplikasi hanya boleh terdiri dari huruf, angka, spasi, tanda hubung, dan garis bawah." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "Nama Kata Sandi Aplikasi harus terdiri dari minimal 4 karakter." @@ -483,22 +488,22 @@ msgstr "Nama Kata Sandi Aplikasi harus terdiri dari minimal 4 karakter." msgid "App password settings" msgstr "Pengaturan kata sandi aplikasi" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Kata sandi Aplikasi" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Ajukan Banding" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Banding label \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Banding diajukan" @@ -519,7 +524,7 @@ msgid "Appearance" msgstr "Tampilan" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "Tambahkan feed yang direkomendasikan secara default" @@ -543,15 +548,15 @@ msgstr "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tet 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." -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Apakah Anda yakin ingin menghapus {0} dari daftar feed Anda?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "Anda yakin untuk membuang draf ini?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Anda yakin?" @@ -572,8 +577,8 @@ msgid "At least 3 characters" msgstr "Minimal 3 karakter" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -586,7 +591,7 @@ msgstr "Minimal 3 karakter" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Kembali" @@ -606,7 +611,7 @@ msgstr "Tanggal lahir" msgid "Birthday:" msgstr "Tanggal lahir:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Blokir" @@ -646,7 +651,7 @@ msgstr "Diblokir" msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Akun yang diblokir" @@ -719,8 +724,8 @@ msgstr "Buramkan gambar dan saring dari feed" msgid "Books" msgstr "Buku" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "Telusuri feed lain" @@ -728,7 +733,7 @@ msgstr "Telusuri feed lain" msgid "Business" msgstr "Bisnis" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "oleh โ€”" @@ -744,7 +749,7 @@ msgstr "Oleh {0}" #~ msgid "by @{0}" #~ msgstr "oleh @{0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "oleh <0/>" @@ -752,7 +757,7 @@ msgstr "oleh <0/>" msgid "By creating an account you agree to the {els}." msgstr "Dengan membuat akun berarti Anda setuju dengan {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "oleh Anda" @@ -760,7 +765,7 @@ msgstr "oleh Anda" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis bawah. Minimal 4 karakter, namun tidak boleh lebih dari 32 karakter." @@ -769,8 +774,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -786,8 +791,8 @@ msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis baw #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Batal" @@ -816,7 +821,7 @@ msgstr "Batal memotong gambar" msgid "Cancel profile editing" msgstr "Batal mengedit profil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Batal mengutip postingan" @@ -872,7 +877,7 @@ msgstr "Ubah bahasa postingan menjadi {0}" msgid "Change Your Email" msgstr "Ubah Email Anda" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -884,7 +889,7 @@ msgstr "Obrolan dibisukan" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -970,7 +975,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Hapus kueri pencarian" @@ -1078,7 +1083,7 @@ msgstr "Menutup bilah navigasi bawah" msgid "Closes password update alert" msgstr "Menutup peringatan pembaruan kata sandi" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "Menutup penyusun postingan dan membuang draf" @@ -1102,7 +1107,7 @@ msgstr "Komedi" msgid "Comics" msgstr "Komik" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Panduan Komunitas" @@ -1115,7 +1120,7 @@ msgstr "Selesaikan onboarding dan mulai menggunakan akun Anda" msgid "Complete the challenge" msgstr "Selesaikan tantangan" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Buat postingan dengan panjang hingga {MAX_GRAPHEME_LENGTH} karakter" @@ -1224,7 +1229,7 @@ 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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Lanjutkan" @@ -1232,8 +1237,12 @@ msgstr "Lanjutkan" msgid "Continue as {0} (currently signed in)" msgstr "Lanjutkan sebagai {0} (sudah masuk)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Lanjutkan ke langkah berikutnya" @@ -1246,7 +1255,7 @@ msgstr "Lanjutkan ke langkah berikutnya" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Lanjutkan ke langkah berikutnya tanpa mengikuti akun apa pun" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "Percakapan dihapus" @@ -1254,7 +1263,7 @@ msgstr "Percakapan dihapus" msgid "Cooking" msgstr "Memasak" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Disalin" @@ -1264,10 +1273,10 @@ msgid "Copied build version to clipboard" msgstr "Menyalin versi build ke papan klip" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "Disalin ke papan klip" @@ -1275,11 +1284,11 @@ msgstr "Disalin ke papan klip" msgid "Copied!" msgstr "Tersalin!" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Menyalin kata sandi aplikasi" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Salin" @@ -1296,8 +1305,8 @@ msgstr "Salin kode" msgid "Copy link to list" msgstr "Salin tautan daftar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Salin tautan postingan" @@ -1306,12 +1315,12 @@ msgstr "Salin tautan postingan" msgid "Copy message text" msgstr "Salin teks pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Salin teks postingan" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" @@ -1358,11 +1367,11 @@ msgstr "Buat Akun" msgid "Create an account" msgstr "Buat akun" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "Buat avatar saja" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Buat Kata Sandi Aplikasi" @@ -1396,7 +1405,7 @@ msgstr "Kustom" msgid "Custom domain" msgstr "Domain kustom" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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." @@ -1439,7 +1448,7 @@ msgid "Debug panel" msgstr "Panel awakutu" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1494,8 +1503,8 @@ msgstr "Hapus akun saya" msgid "Delete My Accountโ€ฆ" msgstr "Hapus Akun Sayaโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Hapus postingan" @@ -1503,7 +1512,7 @@ msgstr "Hapus postingan" msgid "Delete this list?" msgstr "Hapus daftar ini?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Hapus postingan ini?" @@ -1526,11 +1535,11 @@ msgstr "Hapus catatan deklarasi obrolan" msgid "Description" msgstr "Deskripsi" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "Teks alt deskriptif" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Apakah Anda ingin mengatakan sesuatu?" @@ -1571,11 +1580,11 @@ msgstr "Matikan respons haptik" msgid "Disabled" msgstr "Dinonaktifkan" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Buang" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "Buang draf?" @@ -1584,12 +1593,12 @@ msgstr "Buang draf?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cegah aplikasi untuk menampilkan akun saya ke pengguna yang tidak login" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Temukan feed kustom baru" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Temukan Feed Baru" @@ -1625,11 +1634,11 @@ msgstr "Domain terverifikasi!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1708,6 +1717,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1731,8 +1745,9 @@ msgstr "Edit detail daftar" msgid "Edit Moderation List" msgstr "Ubah Daftar Moderasi" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Edit Feed Saya" @@ -1742,19 +1757,19 @@ msgid "Edit my profile" msgstr "Edit profil saya" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Edit profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" 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" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Edit Feed Tersimpan" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1807,8 +1822,8 @@ msgid "Embed HTML code" msgstr "Sematkan kode HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "Sematkan postingan" @@ -1864,7 +1879,7 @@ msgstr "Akhir feed" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Masukkan nama untuk Sandi Aplikasi ini" @@ -1872,8 +1887,8 @@ msgstr "Masukkan nama untuk Sandi Aplikasi ini" msgid "Enter a password" msgstr "Masukkan kata sandi" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Masukkan kata atau tagar" @@ -1923,7 +1938,7 @@ msgid "Error receiving captcha response." msgstr "Gagal menerima respons captcha." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Eror:" @@ -2011,7 +2026,7 @@ msgstr "Media Eksternal" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"play\"." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2021,8 +2036,8 @@ msgstr "Preferensi Media Eksternal" msgid "External media settings" msgstr "Pengaturan media eksternal" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Gagal membuat kata sandi aplikasi." @@ -2034,7 +2049,7 @@ msgstr "Gagal membuat daftar. Periksa koneksi internet Anda dan coba lagi." msgid "Failed to delete message" msgstr "Gagal menghapus pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" @@ -2068,7 +2083,7 @@ msgstr "Gagal mengirim" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: 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." @@ -2078,30 +2093,29 @@ msgstr "Gagal mengirimkan banding, silakan coba lagi." msgid "Failed to update settings" msgstr "Gagal memperbarui pengaturan" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Feed offline" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Masukan" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Feed" @@ -2134,12 +2148,12 @@ msgid "Finalizing" msgstr "Menyelesaikan" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Temukan akun untuk diikuti" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Temukan postingan dan pengguna di Bluesky" @@ -2182,7 +2196,7 @@ msgstr "Balik secara vertikal" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2193,7 +2207,7 @@ msgctxt "action" msgid "Follow" msgstr "Ikuti" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Ikuti {0}" @@ -2223,6 +2237,10 @@ msgstr "Ikuti Balik" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Diikuti oleh {0}" @@ -2244,18 +2262,27 @@ msgstr "mengikuti Anda" msgid "Followers" msgstr "Pengikut" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Mengikuti" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Mengikuti {0}" @@ -2267,9 +2294,7 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2291,7 +2316,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2334,7 +2359,7 @@ msgstr "Memulai" msgid "Get Started" msgstr "Memulai" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "Beri wajah pada profil Anda" @@ -2362,9 +2387,9 @@ msgstr "Kembali" msgid "Go Back" msgstr "Kembali" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2384,7 +2409,7 @@ msgstr "Ke Beranda" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "Buka percakapan dengan {0}" @@ -2417,7 +2442,7 @@ msgstr "Haptik" msgid "Harassment, trolling, or intolerance" msgstr "Pelecehan, unggah sulut, atau intoleransi" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Tagar" @@ -2430,11 +2455,11 @@ msgid "Having trouble?" msgstr "Mengalami masalah?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Bantuan" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau membuat avatar." @@ -2450,7 +2475,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 "Berikut beberapa feed topikal berdasarkan minat Anda: {interestsText}. Anda dapat memilih untuk mengikuti sebanyak yang Anda suka." -#: src/view/com/modals/AddAppPasswords.tsx:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Berikut kata sandi aplikasi Anda." @@ -2461,7 +2486,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Sembunyikan" @@ -2470,8 +2495,8 @@ msgctxt "action" msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Sembunyikan postingan" @@ -2480,7 +2505,7 @@ msgstr "Sembunyikan postingan" msgid "Hide the content" msgstr "Sembunyikan konten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" @@ -2488,23 +2513,23 @@ msgstr "Sembunyikan postingan ini?" msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, terjadi masalah saat menghubungi server feed. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, server feed tampaknya salah konfigurasi. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, server feed tampaknya sedang offline. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, server feed memberikan respons yang buruk. Harap beri tahu pemilik feed tentang masalah ini." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus." @@ -2516,11 +2541,11 @@ msgstr "Hmmmm, tampaknya kami mengalami kesulitan memuat data ini. Lihat detail msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi." -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Beranda" @@ -2574,7 +2599,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 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." @@ -2614,7 +2639,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Masukkan nama untuk kata sandi aplikasi" @@ -2659,7 +2684,7 @@ msgstr "Memperkenalkan Pesan Langsung" msgid "Invalid 2FA confirmation code." msgstr "Kode konfirmasi 2FA tidak valid." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Catatan posting tidak valid atau tidak didukung" @@ -2723,11 +2748,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "Label pada akun Anda" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "Label pada konten Anda" @@ -2739,7 +2764,7 @@ msgstr "Pilih bahasa" msgid "Language settings" msgstr "Pengaturan bahasa" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Pengaturan Bahasa" @@ -2749,7 +2774,7 @@ msgid "Languages" msgstr "Bahasa" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "Terbaru" @@ -2831,8 +2856,8 @@ msgid "Like this feed" msgstr "Suka feed ini" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Disukai oleh" @@ -2868,11 +2893,11 @@ msgstr "menyukai postingan Anda" msgid "Likes" msgstr "Suka" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Suka pada postingan ini" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Daftar" @@ -2884,7 +2909,7 @@ msgstr "Avatar Daftar" msgid "List blocked" msgstr "Daftar diblokir" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Daftar {0}" @@ -2908,12 +2933,12 @@ msgstr "Daftar tidak diblokir" msgid "List unmuted" msgstr "Daftar tidak dibisukan" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Daftar" @@ -2921,7 +2946,7 @@ msgstr "Daftar" msgid "Lists blocking this user:" msgstr "Daftar yang memblokir pengguna ini:" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Muat notifikasi baru" @@ -2936,7 +2961,7 @@ msgstr "Muat postingan baru" msgid "Loading..." msgstr "Memuat..." -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Catatan" @@ -2972,7 +2997,7 @@ msgstr "Seperti XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "Sepertinya Anda belum menyimpan feed apa pun! Gunakan rekomendasi kami atau telusuri lebih banyak di bawah ini." -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "Sepertinya Anda menghapus semua feed tersemat. Tapi jangan khawatir, Anda dapat menambahkan beberapa feed di bawah ini ๐Ÿ˜„" @@ -2988,7 +3013,7 @@ msgstr "Sepertinya Anda kehilangan feed mengikuti. <0>Klik di sini untuk menamba msgid "Make sure this is where you intend to go!" msgstr "Pastikan ini adalah situs web yang Anda tuju!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Kelola kata dan tagar yang dibisukan" @@ -3010,8 +3035,8 @@ msgstr "pengguna yang disebutkan" msgid "Mentioned users" msgstr "Pengguna yang Anda sebut" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menu" @@ -3020,11 +3045,11 @@ msgid "Message {0}" msgstr "Kirim pesan ke {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "Pesan dihapus" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Pesan dari server: {0}" @@ -3041,7 +3066,7 @@ msgstr "Pesan terlalu panjang" msgid "Message settings" msgstr "Pengaturan pesan" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3056,7 +3081,7 @@ msgstr "Pesan" msgid "Misleading Account" msgstr "Akun Menyesatkan" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3093,7 +3118,7 @@ msgstr "Daftar moderasi diperbarui" msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Daftar Moderasi" @@ -3102,7 +3127,7 @@ msgstr "Daftar Moderasi" msgid "Moderation settings" msgstr "Pengaturan moderasi" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "Status moderasi" @@ -3115,7 +3140,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Lebih lanjut" @@ -3157,11 +3182,11 @@ msgstr "Bisukan semua postingan {displayTag}" msgid "Mute conversation" msgstr "Bisukan percakapan" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Bisukan di tagar saja" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "Bisukan di teks & tagar" @@ -3178,21 +3203,21 @@ msgstr "Bisukan daftar" msgid "Mute these accounts?" msgstr "Bisukan akun-akun ini?" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Bisukan kata ini di teks postingan dan tagar" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "Bisukan kata ini hanya dalam tagar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Bisukan utasan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Bisukan kata & tagar" @@ -3204,7 +3229,7 @@ msgstr "Dibisukan" msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" @@ -3230,7 +3255,7 @@ msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi msgid "My Birthday" msgstr "Tanggal Lahir Saya" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Feed Saya" @@ -3246,7 +3271,7 @@ msgstr "Feed tersimpan saya" msgid "My Saved Feeds" msgstr "Feed Tersimpan Saya" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nama" @@ -3328,8 +3353,8 @@ msgctxt "action" msgid "New post" msgstr "Postingan baru" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3399,7 +3424,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/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" @@ -3407,7 +3432,7 @@ msgstr "Tidak lagi mengikuti {0}" msgid "No longer than 253 characters" msgstr "Tidak lebih dari 253 karakter" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "Belum ada pesan" @@ -3415,7 +3440,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:118 msgid "No notifications yet!" msgstr "Belum ada notifikasi!" @@ -3426,6 +3451,10 @@ msgstr "Belum ada notifikasi!" msgid "No one" msgstr "Tidak seorang pun" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3439,13 +3468,13 @@ msgstr "Tidak ada hasil" msgid "No results found" msgstr "Tidak ditemukan hasil" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "Tidak ada hasil ditemukan untuk \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "Tidak ada hasil ditemukan untuk {query}" @@ -3484,7 +3513,7 @@ msgstr "Ketelanjangan Non-Seksual" #~ msgid "Not Applicable." #~ msgstr "" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Tidak ditemukan" @@ -3495,7 +3524,7 @@ msgid "Not right now" msgstr "Jangan sekarang" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "Catatan tentang berbagi" @@ -3516,13 +3545,13 @@ msgstr "Suara notifikasi" msgid "Notification Sounds" msgstr "Suara Notifikasi" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Notifikasi" @@ -3572,11 +3601,11 @@ msgstr "Balasan terlama terlebih dahulu" msgid "Onboarding reset" msgstr "Atur ulang orientasi" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Satu atau lebih gambar belum ada teks alt." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "Hanya mendukung berkas .jpg dan .png" @@ -3606,17 +3635,17 @@ msgstr "Buka" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "Buka pembuat avatar" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "Buka opsi percakapan" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Buka pemilih emoji" @@ -3636,11 +3665,11 @@ msgstr "Buka opsi pesan" msgid "Open muted words and tags settings" msgstr "Buka pengaturan kata dan tagar yang dibisukan" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Buka navigasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Buka menu opsi postingan" @@ -3749,8 +3778,8 @@ 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" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "Membuka layar untuk mengedit Feed Tersimpan" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3794,8 +3823,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Opsi {0} dari {numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Jika perlu, berikan informasi tambahan di bawah ini:" @@ -3859,15 +3888,15 @@ msgstr "Kata sandi diganti!" msgid "Pause" msgstr "Jeda" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "Orang" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" @@ -3946,15 +3975,15 @@ msgstr "Mohon selesaikan verifikasi captcha." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Harap konfirmasi email Anda sebelum mengubahnya. Ini adalah persyaratan sementara selama alat pembaruan email ditambahkan, dan akan segera dihapus." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 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." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Silakan masukkan kata, tagar, atau frasa yang valid untuk dibisukan" @@ -3966,7 +3995,7 @@ msgstr "Masukkan email Anda." msgid "Please enter your password as well:" msgstr "Masukkan juga kata sandi Anda:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: 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" @@ -3983,7 +4012,7 @@ msgstr "Silakan masuk sebagai @{0}" msgid "Please Verify Your Email" msgstr "Mohon Verifikasi Email Anda" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Harap tunggu hingga kartu tautan Anda selesai dimuat" @@ -3995,28 +4024,28 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Posting" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Postingan" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Postingan oleh {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Postingan dihapus" @@ -4055,11 +4084,11 @@ msgstr "postingan" msgid "Posts" msgstr "Postingan" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "Postingan dapat dibisukan berdasarkan teks, tagar mereka, atau keduanya." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Postingan disembunyikan" @@ -4087,6 +4116,10 @@ msgstr "Tekan untuk mengulangi" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Gambar sebelumnya" @@ -4104,11 +4137,11 @@ msgstr "Prioritaskan Pengikut Anda" msgid "Privacy" msgstr "Privasi" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Kebijakan Privasi" @@ -4128,8 +4161,8 @@ msgstr "profil" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Profil" @@ -4153,16 +4186,16 @@ msgstr "Daftar publik yang dapat dibagikan untuk memblokir atau membisukan pengg msgid "Public, shareable lists which can drive feeds." msgstr "Daftar bersifat publik yang dapat dibagikan dan digunakan sebagai feed." -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Publikasikan postingan" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Publikasikan balasan" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4190,7 +4223,7 @@ msgstr "Rasio" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "Alasan:" @@ -4198,7 +4231,7 @@ msgstr "Alasan:" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "Pencarian Terakhir" @@ -4218,12 +4251,12 @@ msgstr "Hubungkan kembali" msgid "Reload conversations" msgstr "Memuat ulang percakapan" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Hapus" @@ -4243,25 +4276,25 @@ msgstr "Hapus Spanduk" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Hapus feed" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "Hapus feed?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Hapus dari feed saya" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Hapus dari feed saya?" @@ -4273,15 +4306,15 @@ msgstr "Hapus gambar" msgid "Remove image preview" msgstr "Hapus pratinjau gambar" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Hapus kata yang dibisukan dari daftar Anda" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4289,12 +4322,12 @@ msgstr "" msgid "Remove quote" msgstr "Hapus kutipan" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Hapus postingan ulang" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "Hapus feed ini dari feed tersimpan Anda" @@ -4303,7 +4336,7 @@ msgstr "Hapus feed ini dari feed tersimpan Anda" msgid "Removed from list" msgstr "Dihapus dari daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Dihapus dari feed saya" @@ -4334,7 +4367,7 @@ msgstr "Balasan" msgid "Replies to this thread are disabled" msgstr "Balasan ke utas ini dinonaktifkan" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Balas" @@ -4394,8 +4427,8 @@ msgstr "Laporkan Daftar" msgid "Report message" msgstr "Laporkan pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Laporkan postingan" @@ -4411,8 +4444,8 @@ msgstr "Laporkan feed ini" msgid "Report this list" msgstr "Laporkan daftar ini" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "Laporkan pesan ini" @@ -4425,9 +4458,9 @@ msgstr "Laporkan postingan ini" msgid "Report this user" msgstr "Laporkan pengguna ini" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Posting ulang" @@ -4437,7 +4470,7 @@ msgstr "Posting ulang" msgid "Repost" msgstr "Posting ulang" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4463,7 +4496,7 @@ msgstr "Diposting ulang oleh <0><1/>" msgid "reposted your post" msgstr "memposting ulang postingan Anda" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Posting ulang postingan ini" @@ -4566,8 +4599,8 @@ msgid "Returns to previous page" msgstr "Kembali ke halaman sebelumnya" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4647,20 +4680,20 @@ msgid "Scroll to top" msgstr "Gulir ke atas" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Cari" @@ -4668,7 +4701,7 @@ msgstr "Cari" msgid "Search for \"{query}\"" msgstr "Cari \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "Cari \"{searchText}\"" @@ -4790,7 +4823,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:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "Pilih layanan moderasi untuk melaporkan" @@ -4852,8 +4885,8 @@ msgctxt "action" msgid "Send Email" msgstr "Kirim Email" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Kirim masukan" @@ -4862,14 +4895,14 @@ msgstr "Kirim masukan" msgid "Send message" msgstr "Kirim pesan" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Kirim laporan" @@ -4882,8 +4915,8 @@ msgstr "Kirim laporan ke {0}" msgid "Send verification email" msgstr "Kirim email verifikasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -4967,11 +5000,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:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Pengaturan" @@ -4990,8 +5023,8 @@ msgstr "Bagikan" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5006,7 +5039,7 @@ msgid "Share a fun fact!" msgstr "Bagikan fakta menarik!" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Tetap bagikan" @@ -5058,7 +5091,7 @@ msgstr "Tampilkan lencana" msgid "Show badge and filter from feeds" msgstr "Tampilkan lencana dan saring dari feed" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Tampilkan pengguna lain yang serupa dengan {0}" @@ -5066,19 +5099,19 @@ msgstr "Tampilkan pengguna lain yang serupa dengan {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "Tampilkan lebih sedikit" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Tampilkan Lebih Lanjut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "Tampilkan lebih banyak" @@ -5167,9 +5200,9 @@ msgstr "Tampilkan postingan dari {0} di feed Anda" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5200,9 +5233,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5243,7 +5276,7 @@ msgstr "Pengembang Perangkat Lunak" msgid "Some people can reply" msgstr "Beberapa orang dapat membalas" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Terjadi kesalahan" @@ -5275,7 +5308,7 @@ msgstr "Urutkan balasan ke postingan yang sama berdasarkan:" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "Sumber: <0>{0}" @@ -5328,13 +5361,13 @@ msgstr "Langkah {0} dari {1}" msgid "Storage cleared, you need to restart the app now." msgstr "Penyimpanan dihapus, Anda perlu memulai ulang aplikasi sekarang." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5365,7 +5398,7 @@ msgstr "Berlangganan pelabel ini" msgid "Subscribe to this list" msgstr "Berlangganan ke daftar ini" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Disarankan untuk Mengikuti" @@ -5377,7 +5410,7 @@ msgstr "Disarankan untuk Anda" msgid "Suggestive" msgstr "Sugestif" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5404,7 +5437,7 @@ msgstr "Sistem" msgid "System log" msgstr "Log sistem" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "tagar" @@ -5432,11 +5465,11 @@ msgstr "Ceritakan sebuah lelucon!" msgid "Terms" msgstr "Ketentuan" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Ketentuan Layanan" @@ -5446,17 +5479,17 @@ msgstr "Ketentuan Layanan" msgid "Terms used violate community standards" msgstr "Istilah yang digunakan melanggar standar komunitas" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "teks" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Area input teks" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Terima kasih. Laporan Anda telah terkirim." @@ -5468,7 +5501,7 @@ msgstr "Berisi hal berikut:" msgid "That handle is already taken." msgstr "Handle telah terpakai." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah pemblokiran dibuka." @@ -5489,11 +5522,11 @@ msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" msgid "The feed has been replaced with Discover." msgstr "Feed telah diganti dengan Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "Label berikut telah diterapkan pada akun Anda." -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "Label berikut telah diterapkan pada konten Anda." @@ -5531,7 +5564,7 @@ msgstr "" 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Ada masalah saat menghapus feed ini. Periksa koneksi internet Anda dan coba lagi." @@ -5559,12 +5592,12 @@ msgstr "Ada masalah saat menghubungkan ke Tenor." msgid "There was an issue contacting the server" msgstr "Ada masalah saat menghubungi server" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." @@ -5581,8 +5614,8 @@ msgstr "Ada masalah saat mengambil daftar. Ketuk di sini untuk mencoba lagi." 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet Anda." @@ -5594,9 +5627,9 @@ msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet A msgid "There was an issue with fetching your app passwords" msgstr "Ada masalah dengan pengambilan kata sandi aplikasi Anda" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5641,7 +5674,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "Banding ini akan dikirim ke <0>{0}." @@ -5674,28 +5707,37 @@ msgstr "Konten ini disediakan oleh {0}. Apakah Anda ingin mengaktifkan media eks msgid "This content is not available because one of the users involved has blocked the other." msgstr "Konten ini tidak tersedia karena salah satu pengguna yang terlibat telah memblokir pengguna lainnya." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." 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 "" + #: src/view/screens/Settings/ExportCarDialog.tsx:93 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Fitur ini masih dalam versi beta. Anda dapat membaca lebih lanjut tentang ekspor repositori di <0>postingan blog ini." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak tersedia. Silakan coba lagi nanti." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Feed ini kosong!" +#~ msgid "This feed is empty!" +#~ msgstr "Feed ini kosong!" #: 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." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 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." @@ -5724,7 +5766,7 @@ msgstr "Label ini diterapkan oleh pemosting." #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "Label ini diterapkan oleh Anda." @@ -5744,20 +5786,20 @@ msgstr "Daftar ini kosong!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Layanan moderasi ini tidak tersedia. Lihat detail lebih lanjut di bawah. Jika masalah berlanjut, hubungi kami." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Nama ini sudah digunakan" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Postingan ini telah dihapus." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "Postingan ini akan disembunyikan dari feed." @@ -5806,7 +5848,7 @@ msgstr "Pengguna ini tidak mengikuti siapa pun." #~ msgid "This warning is only available for posts with media attached." #~ msgstr "" -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 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." @@ -5823,7 +5865,7 @@ msgstr "Preferensi Utasan" msgid "Threaded Mode" msgstr "Mode Utasan" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -5839,7 +5881,7 @@ msgstr "Untuk melaporkan percakapan, silakan laporkan salah satu pesannya melalu msgid "To whom would you like to send this report?" msgstr "Kepada siapa Anda ingin mengirimkan laporan ini?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Beralih antara opsi kata yang dibisukan." @@ -5852,7 +5894,7 @@ msgid "Toggle to enable or disable adult content" msgstr "Beralih untuk mengaktifkan atau menonaktifkan konten dewasa" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "Teratas" @@ -5862,10 +5904,10 @@ msgstr "Transformasi" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Terjemahkan" @@ -5907,14 +5949,14 @@ msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Buka blokir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Buka blokir" @@ -5929,12 +5971,12 @@ msgstr "Buka blokir akun" msgid "Unblock Account" msgstr "Buka blokir Akun" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "Buka Blokir Akun?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5949,7 +5991,7 @@ msgstr "Berhenti mengikuti" msgid "Unfollow" msgstr "Batal ikuti" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Berhenti mengikuti {0}" @@ -5992,8 +6034,8 @@ msgstr "Bunyikan percakapan" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Bunyikan utasan" @@ -6043,7 +6085,7 @@ msgstr "Ubah ke {handle}" msgid "Updating..." msgstr "Memperbarui..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "Unggah foto saja" @@ -6104,7 +6146,7 @@ msgstr "Gunakan rekomendasi" msgid "Use the DNS panel" msgstr "Gunakan panel DNS" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: 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." @@ -6271,11 +6313,11 @@ msgstr "Lihat informasi tentang label ini" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Lihat profil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Lihat avatar" @@ -6287,6 +6329,11 @@ msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}" msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6310,7 +6357,7 @@ msgstr "Peringatkan konten dan saring dari feed" msgid "We couldn't find any results for that hashtag." msgstr "Kami tidak dapat menemukan hasil apa pun untuk tagar tersebut." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "Kami tidak dapat memuat percakapan ini" @@ -6326,7 +6373,7 @@ msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky adalah:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Kami kehabisan postingan dari akun yang Anda ikuti. Inilah yang terbaru dari <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dapat mengakibatkan tidak adanya postingan yang ditampilkan." @@ -6366,14 +6413,18 @@ msgstr "Kami sangat senang Anda bergabung dengan kami!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Mohon maaf, kami tidak dapat menyelesaikan daftar ini. Jika hal ini terus berlanjut, silakan hubungi pembuat daftar, @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisukan. Silakan coba lagi." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6397,7 +6448,7 @@ msgstr "Apa saja minat Anda?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Apa kabar?" @@ -6418,7 +6469,7 @@ msgstr "Siapa yang dapat mengirim pesan kepada Anda?" msgid "Who can reply" msgstr "Siapa yang dapat membalas" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "Waduh!" @@ -6456,11 +6507,11 @@ msgstr "Lebar" msgid "Write a message" msgstr "Tulis pesan" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Tulis postingan" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Tulis balasan Anda" @@ -6500,8 +6551,8 @@ msgstr "Anda sedang dalam antrian." msgid "You are not following anyone." msgstr "Anda tidak mengikuti siapa pun." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Anda juga bisa menemukan Feed Kustom baru untuk diikuti." @@ -6534,6 +6585,10 @@ msgstr "" msgid "You do not have any followers." msgstr "Anda tidak memiliki pengikut." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Anda belum memiliki kode undangan! Kami akan mengirimkan kode saat Anda sudah sedikit lama di Bluesky." @@ -6621,15 +6676,15 @@ 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/dialogs/MutedWords.tsx:250 +#: 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" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 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:92 +#: 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." @@ -6641,7 +6696,7 @@ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan" @@ -6649,11 +6704,11 @@ msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Anda tidak akan lagi menerima notifikasi untuk utas ini" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" @@ -6661,15 +6716,15 @@ msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Anda akan menerima email berisikan \"kode reset\". Masukkan kode tersebut di sini, lalu masukkan kata sandi baru." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "Anda: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6697,7 +6752,7 @@ msgstr "Anda siap untuk mulai!" msgid "You've chosen to hide a word or tag within this post." msgstr "Anda telah memilih untuk menyembunyikan kata atau tagar dalam postingan ini." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: 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." @@ -6743,7 +6798,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -6755,7 +6810,7 @@ msgstr "Handle lengkap Anda akan menjadi" msgid "Your full handle will be <0>@{0}" msgstr "Handle lengkap Anda akan menjadi <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Kata yang Anda bisukan" @@ -6763,7 +6818,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Postingan Anda telah dipublikasikan" @@ -6779,11 +6834,11 @@ 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 "" -#: src/view/com/composer/Composer.tsx:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Balasan Anda telah dipublikasikan" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Laporan Anda akan dikirim ke Layanan Moderasi Bluesky" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 63ab49a31b..e2c2bdb3ac 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Poedit 3.4.4\n" "X-Poedit-SourceCharset: UTF-8\n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -26,6 +26,9 @@ msgstr "(no email)" msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# codice d'invito disponibile} other {# codici d'inviti disponibili}}" + #: 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 "{0, plural, one {# un etichetta รจ stata applicata a questo account} other {# etichette sono stata applicate a questo account}}" @@ -34,16 +37,20 @@ msgstr "{0, plural, one {# un etichetta รจ stata applicata a questo account} oth msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {# un etichetta รจ stata applicata a questo contenuto} other {# etichette sono state applicate a questo contenuto}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# ripubblicazione} other {# ripubblicazioni}}" -#: src/components/ProfileHoverCard/index.web.tsx:377 +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:381 +#: src/components/ProfileHoverCard/index.web.tsx:380 #: src/screens/Profile/Header/Metrics.tsx:27 msgid "{0, plural, one {following} other {following}}" msgstr "" @@ -52,11 +59,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -68,7 +75,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -82,9 +89,8 @@ msgstr "" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Lista {purposeLabel} {0}" -#: src/view/screens/ProfileList.tsx:286 #~ msgid "{0} your feeds" -#~ msgstr "" +#~ msgstr "{0} tuoi feed" #: src/view/com/util/UserAvatar.tsx:406 msgid "{0}'s avatar" @@ -102,7 +108,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:458 +#: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} following" @@ -111,13 +117,25 @@ msgstr "{following} following" msgid "{handle} can't be messaged" msgstr "{handle} non puรฒ ricevere messaggi" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Codici d'invito: # available} other {Codici d'invito: # available}}" + +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} codice d'invito disponibile" + +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} codici d'invito disponibili" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 #: src/view/screens/ProfileFeed.tsx:585 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#~ msgid "{message}" +#~ msgstr "{message}" + +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non letto" @@ -137,15 +155,33 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#~ msgid "<0>{0} following" +#~ msgstr "<0>{0} following" + +#~ msgid "<0>{followers} <1>{pluralizedFollowers}" +#~ msgstr "<0>{followers} <1>{pluralizedFollowers}" + +#~ msgid "<0>{following} <1>following" +#~ msgstr "<0>{following} <1>following" + +#~ msgid "<0>Choose your<1>Recommended<2>Feeds" +#~ msgstr "<0>Scegli i tuoi<1>feeds<2>consigliati" + +#~ msgid "<0>Follow some<1>Recommended<2>Users" +#~ msgstr "<0>Segui alcuni<1>utenti<2>consigliati" + #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>Non applicabile. Questo avviso รจ disponibile solo per i post che contengono media." +#~ msgid "<0>Welcome to<1>Bluesky" +#~ msgstr "<0>Ti diamo il benvenuto su<1>Bluesky" + #: src/screens/Profile/Header/Handle.tsx:43 msgid "โš Invalid Handle" msgstr "โš Nome utente non valido" -#: src/screens/Login/LoginForm.tsx:241 +#: src/screens/Login/LoginForm.tsx:244 msgid "2FA Confirmation" msgstr "Conferma 2FA" @@ -155,12 +191,12 @@ msgstr "Conferma 2FA" #~ 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." -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Accedi alle impostazioni di navigazione" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Accedi al profilo e ad altre impostazioni di navigazione" @@ -173,11 +209,11 @@ msgstr "Accessibilitร " msgid "Accessibility settings" msgstr "Impostazioni di accessibilitร " -#: src/Navigation.tsx:290 src/view/screens/AccessibilitySettings.tsx:63 +#: src/Navigation.tsx:296 +#: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Impostazioni di Accessibilitร " -#: src/components/moderation/LabelsOnMe.tsx:42 #~ msgid "account" #~ msgstr "account" @@ -216,7 +252,7 @@ msgstr "Opzioni dell'account" msgid "Account removed from quick access" msgstr "Account rimosso dall'accesso immediato" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Account sbloccato" @@ -256,15 +292,31 @@ msgstr "Aggiungi account" #: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:117 +#: src/view/com/modals/AltImage.tsx:118 msgid "Add alt text" msgstr "Aggiungi testo alternativo" -#: src/view/screens/AppPasswords.tsx:104 src/view/screens/AppPasswords.tsx:145 -#: src/view/screens/AppPasswords.tsx:158 +#~ msgid "Add ALT text" +#~ msgstr "Agguingo del testo descrittivo" + +#: src/view/screens/AppPasswords.tsx:106 +#: src/view/screens/AppPasswords.tsx:148 +#: src/view/screens/AppPasswords.tsx:161 msgid "Add App Password" msgstr "Aggiungi la Password per l'App" +#~ msgid "Add details" +#~ msgstr "Aggiungi i dettagli" + +#~ msgid "Add details to report" +#~ msgstr "Aggiungi dettagli da segnalare" + +#~ msgid "Add link card" +#~ msgstr "Aggiungi anteprima del link" + +#~ msgid "Add link card:" +#~ msgstr "Aggiungi anteprima del link:" + #: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Aggiungi parola silenziata alle impostazioni configurate" @@ -273,7 +325,7 @@ msgstr "Aggiungi parola silenziata alle impostazioni configurate" msgid "Add muted words and tags" msgstr "Aggiungi parole silenziate e tags" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Aggiungi feed raccomandati" @@ -290,16 +342,19 @@ msgstr "Aggiungi il seguente record DNS al tuo dominio:" msgid "Add to Lists" msgstr "Aggiungi alle Liste" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Aggiungi ai miei feed" +#~ msgid "Added" +#~ msgstr "Aggiunto" + #: src/view/com/modals/ListAddRemoveUsers.tsx:191 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Aggiunto alla lista" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Aggiunto ai miei feeds" @@ -312,6 +367,9 @@ msgstr "Modifica il numero di \"Mi piace\" che una risposta deve avere per esser msgid "Adult Content" 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/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Il contenuto per adulti รจ disattivato." @@ -321,13 +379,23 @@ msgstr "Il contenuto per adulti รจ disattivato." msgid "Advanced" msgstr "Avanzato" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "Tutti i feed che hai salvato, in un unico posto." -#: src/screens/Messages/Settings.tsx:61 src/screens/Messages/Settings.tsx:64 -msgid "Allow messages from" -msgstr "Permetti tutti i messaggi di" +#: 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:NaN +#~ msgid "Allow messages from" +#~ msgstr "Permetti tutti i messaggi di" + +#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:65 +msgid "Allow new messages from" +msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:178 #: src/view/com/modals/ChangePassword.tsx:171 @@ -371,6 +439,9 @@ msgstr "Una email รจ stata inviata al tuo indirizzo precedente, {0}. Include un msgid "An error occured" msgstr "Si รจ verificato un errore" +#~ 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/lib/moderation/useReportOptions.ts:27 msgid "An issue not included in these options" msgstr "Un problema non incluso in queste opzioni" @@ -388,6 +459,7 @@ msgstr "Si รจ verificato un problema, riprova un'altra volta." msgid "an unknown error occurred" msgstr "si รจ verificato un errore sconosciuto" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -409,15 +481,15 @@ msgstr "Comportamento antisociale" msgid "App Language" msgstr "Lingua dell'app" -#: src/view/screens/AppPasswords.tsx:223 +#: src/view/screens/AppPasswords.tsx:228 msgid "App password deleted" msgstr "Password dell'app eliminata" -#: src/view/com/modals/AddAppPasswords.tsx:135 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "Le password dell'app possono contenere solo lettere, numeri, spazi, trattini e trattini bassi." -#: src/view/com/modals/AddAppPasswords.tsx:100 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "Le password delle app devono contenere almeno 4 caratteri." @@ -428,26 +500,38 @@ msgstr "Impostazioni della password dell'app" #~ msgid "App passwords" #~ msgstr "Passwords dell'app" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Password dell'App" -#: src/components/moderation/LabelsOnMeDialog.tsx:152 -#: src/components/moderation/LabelsOnMeDialog.tsx:155 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Ricorso" -#: src/components/moderation/LabelsOnMeDialog.tsx:237 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Etichetta \"{0}\" del ricorso" -#: src/components/moderation/LabelsOnMeDialog.tsx:228 +#~ msgid "Appeal content warning" +#~ msgstr "Ricorso contro l'avviso sui contenuti" + +#~ msgid "Appeal Content Warning" +#~ msgstr "Ricorso contro l'Avviso sui Contenuti" + +#~ msgid "Appeal Decision" +#~ msgstr "Decisiรณn de apelaciรณn" + +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Appello inviato" +#~ msgid "Appeal submitted." +#~ msgstr "Ricorso presentato." + #: src/screens/Messages/Conversation/ChatDisabled.tsx:51 #: src/screens/Messages/Conversation/ChatDisabled.tsx:53 #: src/screens/Messages/Conversation/ChatDisabled.tsx:99 @@ -463,11 +547,11 @@ msgid "Appearance" msgstr "Aspetto" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "Applica i feed raccomandati predefiniti" -#: src/view/screens/AppPasswords.tsx:265 +#: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Confermi di voler eliminare la password dell'app \"{name}\"?" @@ -483,11 +567,11 @@ msgstr "Sei sicuro di voler cancellare questo messaggio? Il messaggio verrร  can 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." -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confermi di voler rimuovere {0} dai tuoi feed?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "Confermi di voler eliminare questa bozza?" @@ -495,6 +579,9 @@ msgstr "Confermi di voler eliminare questa bozza?" msgid "Are you sure?" msgstr "Confermi?" +#~ msgid "Are you sure? This cannot be undone." +#~ msgstr "Vuoi proseguire? Questa operazione non puรฒ essere annullata." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 msgid "Are you writing in <0>{0}?" msgstr "Stai scrivendo in <0>{0}?" @@ -512,22 +599,28 @@ msgid "At least 3 characters" msgstr "Almeno 3 caratteri" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:272 src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 +#: src/screens/Login/LoginForm.tsx:281 #: 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:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Indietro" +#~ msgctxt "action" +#~ msgid "Back" +#~ msgstr "Indietro" + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basato sui tuoi interessi {interestsText}" @@ -544,7 +637,7 @@ msgstr "Compleanno" msgid "Birthday:" msgstr "Compleanno:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Blocca" @@ -587,7 +680,8 @@ msgstr "Bloccato" msgid "Blocked accounts" msgstr "Accounts bloccati" -#: src/Navigation.tsx:141 src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:140 +#: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Accounts bloccati" @@ -628,10 +722,25 @@ 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." +#~ msgid "Bluesky is flexible." +#~ msgstr "Bluesky รจ flessibile." + +#~ msgid "Bluesky is open." +#~ msgstr "Bluesky รจ aperto." + +#~ msgid "Bluesky is public." +#~ msgstr "Bluesky รจ pubblico." + +#~ 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/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." 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." +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" + #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" msgstr "Sfoca le immagini" @@ -644,11 +753,14 @@ msgstr "Sfoca le immagini e filtra dai feed" msgid "Books" msgstr "Libri" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "Cerca altri feed" +#~ msgid "Build version {0} {1}" +#~ msgstr "Versione {0} {1}" + #: src/view/com/auth/SplashScreen.web.tsx:151 msgid "Business" msgstr "Attivitร  commerciale" @@ -656,10 +768,13 @@ msgstr "Attivitร  commerciale" #~ msgid "Button disabled. Input custom domain to proceed." #~ msgstr "Pulsante disabilitato. Inserisci il dominio personalizzato per procedere." -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "da โ€”" +#~ msgid "by {0}" +#~ msgstr "di {0}" + #: src/components/LabelingServiceCard/index.tsx:56 msgid "By {0}" msgstr "Di {0}" @@ -668,7 +783,7 @@ msgstr "Di {0}" #~ msgid "by @{0}" #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "di <0/>" @@ -676,7 +791,7 @@ msgstr "di <0/>" msgid "By creating an account you agree to the {els}." msgstr "Creando un account accetti i {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "da te" @@ -684,7 +799,7 @@ msgstr "da te" msgid "Camera" msgstr "Fotocamera" -#: src/view/com/modals/AddAppPasswords.tsx:217 +#: 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 "Puรฒ contenere solo lettere, numeri, spazi, trattini e trattini bassi. Deve contenere almeno 4 caratteri, ma non piรน di 32 caratteri." @@ -693,8 +808,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -710,8 +825,8 @@ msgstr "Puรฒ contenere solo lettere, numeri, spazi, trattini e trattini bassi. D #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Cancella" @@ -728,6 +843,9 @@ msgstr "Cancella" msgid "Cancel account deletion" msgstr "Annulla la cancellazione dell'account" +#~ msgid "Cancel add image alt text" +#~ msgstr "Cancelยทla afegir text a la imatge" + #: src/view/com/modals/ChangeHandle.tsx:144 msgid "Cancel change handle" msgstr "Annulla il cambio del tuo nome utente" @@ -740,7 +858,7 @@ msgstr "Annulla il ritaglio dell'immagine" msgid "Cancel profile editing" msgstr "Annulla la modifica del profilo" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Annnulla la citazione del post" @@ -753,6 +871,9 @@ msgstr "" msgid "Cancel search" msgstr "Annulla la ricerca" +#~ msgid "Cancel waitlist signup" +#~ msgstr "Annulla l'iscrizione alla lista d'attesa" + #: src/view/com/modals/LinkWarning.tsx:106 msgid "Cancels opening the linked website" msgstr "Annulla l'apertura del sito collegato" @@ -792,11 +913,15 @@ msgstr "Cambia la Password" msgid "Change post language to {0}" msgstr "Cambia la lingua del post a {0}" +#~ msgid "Change your Bluesky password" +#~ msgstr "Cambia la tua password di Bluesky" + #: src/view/com/modals/ChangeEmail.tsx:104 msgid "Change Your Email" msgstr "Cambia la tua email" -#: src/Navigation.tsx:302 src/view/shell/bottom-bar/BottomBar.tsx:201 +#: src/Navigation.tsx:308 +#: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" msgstr "Messaggi" @@ -807,7 +932,7 @@ msgstr "Conversazione silenziata" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -831,7 +956,13 @@ msgstr "Conversizione non silenziata" msgid "Check my status" msgstr "Verifica il mio stato" -#: src/screens/Login/LoginForm.tsx:265 +#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." +#~ msgstr "Dai un'occhiata ad alcuni feed consigliati. Clicca + per aggiungerli al tuo elenco dei feed." + +#~ 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:268 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." @@ -843,6 +974,9 @@ 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\"" +#~ msgid "Choose a new Bluesky username or create" +#~ msgstr "Scegli un nuovo nome utente Bluesky o creane uno" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Scegli il servizio" @@ -851,6 +985,9 @@ msgstr "Scegli il servizio" msgid "Choose the algorithms that power your custom feeds." msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati." +#~ msgid "Choose the algorithms that power your experience with custom feeds." +#~ msgstr "Scegli gli algoritmi che migliorano la tua esperienza con i feed personalizzati." + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" msgstr "Scegli questo colore per il tuo avatar" @@ -880,7 +1017,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Cancella tutti i dati in archivio (poi ricomincia)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Annulla la ricerca" @@ -974,7 +1111,8 @@ msgstr "Chiudi finestra" msgid "Close navigation footer" msgstr "Chiudi la navigazione del footer" -#: src/components/Menu/index.tsx:209 src/components/TagMenu/index.tsx:262 +#: src/components/Menu/index.tsx:209 +#: src/components/TagMenu/index.tsx:262 msgid "Close this dialog" msgstr "Chiudi la finestra" @@ -986,7 +1124,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:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "Chiude l'editore del post ed elimina la bozza del post" @@ -1010,7 +1148,8 @@ msgstr "Commedia" msgid "Comics" msgstr "Fumetti" -#: src/Navigation.tsx:248 src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:254 +#: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Linee guida della community" @@ -1022,7 +1161,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:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Componi un post fino a {MAX_GRAPHEME_LENGTH} caratteri" @@ -1042,7 +1181,8 @@ msgstr "Configura l'impostazione del filtro dei contenuti per la categoria: {nam msgid "Configured in <0>moderation settings." msgstr "Configurato nelle <0>impostazioni di moderazione." -#: src/components/Prompt.tsx:159 src/components/Prompt.tsx:162 +#: src/components/Prompt.tsx:159 +#: src/components/Prompt.tsx:162 #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 @@ -1053,6 +1193,10 @@ msgstr "Configurato nelle <0>impostazioni di moderazione." msgid "Confirm" msgstr "Conferma" +#~ msgctxt "action" +#~ msgid "Confirm" +#~ msgstr "Conferma" + #: src/view/com/modals/ChangeEmail.tsx:188 #: src/view/com/modals/ChangeEmail.tsx:190 msgid "Confirm Change" @@ -1066,6 +1210,9 @@ msgstr "Conferma le impostazioni della lingua del contenuto" msgid "Confirm delete account" 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 msgid "Confirm your age:" msgstr "Conferma la tua etร :" @@ -1084,7 +1231,10 @@ msgstr "Conferma la tua data di nascita" msgid "Confirmation code" msgstr "Codice di conferma" -#: src/screens/Login/LoginForm.tsx:299 +#~ msgid "Confirms signing up {email} to the waitlist" +#~ msgstr "Conferma l'iscrizione di {email} alla lista d'attesa" + +#: src/screens/Login/LoginForm.tsx:302 msgid "Connecting..." msgstr "Connessione in corso..." @@ -1092,10 +1242,19 @@ msgstr "Connessione in corso..." msgid "Contact support" msgstr "Contatta il supporto" +#~ msgid "content" +#~ msgstr "contenuto" + #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" msgstr "Contenuto Bloccato" +#~ msgid "Content filtering" +#~ msgstr "Filtro dei contenuti" + +#~ msgid "Content Filtering" +#~ msgstr "Filtro dei Contenuti" + #: src/screens/Moderation/index.tsx:285 msgid "Content filters" msgstr "Filtri dei contenuti" @@ -1126,7 +1285,7 @@ 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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continua" @@ -1134,8 +1293,12 @@ msgstr "Continua" msgid "Continue as {0} (currently signed in)" msgstr "Continua come {0} (attualmente connesso)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Vai al passaggio successivo" @@ -1148,7 +1311,7 @@ msgstr "Vai al passaggio successivo" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Vai al passaggio successivo senza seguire nessun account" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "Conversazione cancellata" @@ -1156,7 +1319,7 @@ msgstr "Conversazione cancellata" msgid "Cooking" msgstr "Cucina" -#: src/view/com/modals/AddAppPasswords.tsx:196 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiato" @@ -1166,10 +1329,10 @@ msgid "Copied build version to clipboard" msgstr "Versione di build copiata nella clipboard" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "Copiato nel clipboard" @@ -1177,11 +1340,11 @@ msgstr "Copiato nel clipboard" msgid "Copied!" msgstr "Copiato!" -#: src/view/com/modals/AddAppPasswords.tsx:190 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Copia la password dell'app" -#: src/view/com/modals/AddAppPasswords.tsx:189 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copia" @@ -1189,7 +1352,8 @@ msgstr "Copia" msgid "Copy {0}" msgstr "Copia {0}" -#: src/components/dialogs/Embed.tsx:120 src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:120 +#: src/components/dialogs/Embed.tsx:139 msgid "Copy code" msgstr "Copia il codice" @@ -1197,8 +1361,8 @@ msgstr "Copia il codice" msgid "Copy link to list" msgstr "Copia il link alla lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Copia il link al post" @@ -1210,12 +1374,13 @@ msgstr "Copia il link al post" msgid "Copy message text" msgstr "Copia il testo del messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Copia il testo del post" -#: src/Navigation.tsx:253 src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:259 +#: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" @@ -1239,6 +1404,9 @@ msgstr "No si รจ potuto caricare la lista" msgid "Could not mute chat" msgstr "Errore nel silenziare la conversazione" +#~ msgid "Country" +#~ msgstr "Paese" + #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 msgid "Create a new account" @@ -1252,15 +1420,16 @@ msgstr "Crea un nuovo Bluesky account" msgid "Create Account" msgstr "Crea un account" -#: src/components/dialogs/Signin.tsx:86 src/components/dialogs/Signin.tsx:88 +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 msgid "Create an account" msgstr "Crea un account" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "In alternativa crea un avatar" -#: src/view/com/modals/AddAppPasswords.tsx:227 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Crea un password per l'app" @@ -1273,7 +1442,7 @@ msgstr "Crea un nuovo account" msgid "Create report for {0}" msgstr "Crea un report per {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:251 msgid "Created {0}" msgstr "Creato {0}" @@ -1299,7 +1468,7 @@ msgstr "Personalizzato" msgid "Custom domain" msgstr "Dominio personalizzato" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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." @@ -1345,7 +1514,7 @@ msgid "Debug panel" msgstr "Pannello per il debug" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1355,7 +1524,6 @@ msgstr "Elimina" msgid "Delete account" msgstr "Elimina l'account" -#: src/view/com/modals/DeleteAccount.tsx:87 #~ msgid "Delete Account" #~ msgstr "Elimina l'Account" @@ -1363,11 +1531,11 @@ msgstr "Elimina l'account" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Cancella l'account <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:244 msgid "Delete app password" msgstr "Elimina la password dell'app" -#: src/view/screens/AppPasswords.tsx:263 +#: src/view/screens/AppPasswords.tsx:280 msgid "Delete app password?" msgstr "Eliminare la password dell'app?" @@ -1403,8 +1571,8 @@ msgstr "Cancellare account" msgid "Delete My Accountโ€ฆ" msgstr "Cancellare Accountโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Elimina il post" @@ -1412,7 +1580,7 @@ msgstr "Elimina il post" msgid "Delete this list?" msgstr "Elimina questa lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Eliminare questo post?" @@ -1439,7 +1607,13 @@ msgstr "Descrizione" msgid "Descriptive alt text" msgstr "Testo descrittivo alternativo" -#: src/view/com/composer/Composer.tsx:264 +#~ msgid "Dev Server" +#~ msgstr "Server di sviluppo" + +#~ msgid "Developer Tools" +#~ msgstr "Strumenti per sviluppatori" + +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Volevi dire qualcosa?" @@ -1466,35 +1640,37 @@ msgstr "Disattiva il feedback tattile" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:124 src/screens/Messages/Settings.tsx:127 +#: src/screens/Messages/Settings.tsx:140 +#: src/screens/Messages/Settings.tsx:143 #: src/screens/Moderation/index.tsx:341 msgid "Disabled" msgstr "Disabilitato" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Scartare" #~ msgid "Discard draft" #~ msgstr "Scarta la bozza" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "Scartare la bozza?" -#: src/screens/Moderation/index.tsx:518 src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:518 +#: src/screens/Moderation/index.tsx:522 msgid "Discourage apps from showing my account to logged-out users" msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Scopri nuovi feeds personalizzati" #~ msgid "Discover new feeds" #~ msgstr "Scopri nuovi feeds" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Scopri nuovi feeds" @@ -1526,16 +1702,19 @@ msgstr "Valore del dominio" msgid "Domain verified!" msgstr "Dominio verificato!" +#~ msgid "Don't have an invite code?" +#~ msgstr "Non hai un codice di invito?" + #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:227 -#: src/view/com/modals/AltImage.tsx:140 +#: src/view/com/modals/AddAppPasswords.tsx:242 +#: 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 @@ -1619,6 +1798,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1642,8 +1826,9 @@ msgstr "Modifica i dettagli della lista" msgid "Edit Moderation List" msgstr "Modifica l'elenco di moderazione" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Modifica i miei feeds" @@ -1653,19 +1838,19 @@ msgid "Edit my profile" msgstr "Modifica il mio profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Modifica il profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "Modifica il Profilo" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "Modifica i feeds memorizzati" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Modifica i feeds memorizzati" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1718,8 +1903,8 @@ msgid "Embed HTML code" msgstr "Incorpora il codice HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "Incorpora il post" @@ -1749,6 +1934,9 @@ msgstr "Attiva il contenuto per adulti" msgid "Enable external media" msgstr "Abilita i media esterni" +#~ msgid "Enable External Media" +#~ msgstr "Attiva Media Esterna" + #: src/view/screens/PreferencesExternalEmbeds.tsx:76 msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" @@ -1761,7 +1949,8 @@ msgstr "Abilita questa impostazione per vedere solo le risposte delle persone ch msgid "Enable this source only" msgstr "Abilita solo questa fonte" -#: src/screens/Messages/Settings.tsx:115 src/screens/Messages/Settings.tsx:118 +#: src/screens/Messages/Settings.tsx:131 +#: src/screens/Messages/Settings.tsx:134 #: src/screens/Moderation/index.tsx:339 msgid "Enabled" msgstr "Abilitato" @@ -1770,7 +1959,7 @@ msgstr "Abilitato" msgid "End of feed" msgstr "Fine del feed" -#: src/view/com/modals/AddAppPasswords.tsx:167 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Inserisci un nome per questa password dell'app" @@ -1806,6 +1995,9 @@ msgstr "Inserisci l'e-mail che hai utilizzato per creare il tuo account. Ti invi msgid "Enter your birth date" msgstr "Inserisci la tua data di nascita" +#~ msgid "Enter your email" +#~ msgstr "Inserisci la tua email" + #: src/screens/Login/ForgotPasswordForm.tsx:105 #: src/screens/Signup/StepInfo/index.tsx:92 msgid "Enter your email address" @@ -1819,6 +2011,9 @@ msgstr "Inserisci la tua nuova email qui sopra" msgid "Enter your new email address below." msgstr "Inserisci il tuo nuovo indirizzo email qui sotto." +#~ msgid "Enter your phone number" +#~ msgstr "Inserisci il tuo numero di telefono" + #: src/screens/Login/index.tsx:101 msgid "Enter your username and password" msgstr "Inserisci il tuo nome di utente e la tua password" @@ -1832,7 +2027,7 @@ msgid "Error receiving captcha response." msgstr "Errore nella risposta del captcha." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Errore:" @@ -1845,8 +2040,9 @@ msgid "Everybody can reply" msgstr "Tutti possono rispondere" #: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 src/screens/Messages/Settings.tsx:74 -#: src/screens/Messages/Settings.tsx:77 +#: src/components/dms/MessagesNUX.tsx:134 +#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:78 msgid "Everyone" msgstr "Tutti" @@ -1879,6 +2075,9 @@ msgstr "Uscita dalla visualizzazione dell'immagine" msgid "Exits inputting search query" msgstr "Uscita dall'inserzione della domanda di ricerca" +#~ msgid "Exits signing up for waitlist with {email}" +#~ msgstr "Uscita dall'iscrizione alla lista d'attesa con {email}" + #: src/view/com/lightbox/Lightbox.web.tsx:183 msgid "Expand alt text" msgstr "Ampliare il testo alternativo" @@ -1919,7 +2118,7 @@ msgstr "Media esterni" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "I 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:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1929,8 +2128,8 @@ msgstr "Preferenze multimediali esterni" msgid "External media settings" msgstr "Impostazioni multimediali esterni" -#: src/view/com/modals/AddAppPasswords.tsx:116 -#: src/view/com/modals/AddAppPasswords.tsx:120 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Impossibile creare la password dell'app." @@ -1942,7 +2141,7 @@ msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova msgid "Failed to delete message" msgstr "Errore nel cancellare il messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "Non possiamo eliminare il post, riprova di nuovo" @@ -1955,6 +2154,9 @@ msgstr "Ha fallito il Il caricamento delle GIF's" msgid "Failed to load past messages" msgstr "Errore nel caricare i vecchi messaggi" +#~ msgid "Failed to load recommended feeds" +#~ msgstr "Non possiamo caricare i feed consigliati" + #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Failed to save image: {0}" msgstr "Non รจ possibile salvare l'immagine: {0}" @@ -1963,24 +2165,25 @@ msgstr "Non รจ possibile salvare l'immagine: {0}" msgid "Failed to send" msgstr "Errore nell'invio" -#: src/components/moderation/LabelsOnMeDialog.tsx:224 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: 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/components/dms/MessagesNUX.tsx:60 src/screens/Messages/Settings.tsx:34 +#: src/components/dms/MessagesNUX.tsx:60 +#: src/screens/Messages/Settings.tsx:35 msgid "Failed to update settings" msgstr "Errore nell'aggiornamento delle impostazioni" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed fatto da {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Feed offline" @@ -1988,21 +2191,19 @@ msgstr "Feed offline" #~ msgstr "Preferenze del feed" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Commenti" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 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 "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni feed che ritieni interessanti." @@ -2031,19 +2232,31 @@ msgid "Finalizing" msgstr "Finalizzando" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Trova account da seguire" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Trova post e utenti su Bluesky" +#~ msgid "Find users on Bluesky" +#~ msgstr "Trova utenti su Bluesky" + +#~ msgid "Find users with the search tool on the right" +#~ msgstr "Trova gli utenti con lo strumento di ricerca sulla destra" + +#~ msgid "Finding similar accounts..." +#~ msgstr "Trovare account similiโ€ฆ" + #: src/view/screens/PreferencesFollowingFeed.tsx:110 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 msgid "Fine-tune the discussion threads." msgstr "Ottimizza i la visualizzazione delle discussioni." @@ -2060,13 +2273,14 @@ msgstr "Flessibile" msgid "Flip horizontal" msgstr "Gira in orizzontale" -#: src/view/com/modals/EditImage.tsx:121 src/view/com/modals/EditImage.tsx:288 +#: src/view/com/modals/EditImage.tsx:121 +#: src/view/com/modals/EditImage.tsx:288 msgid "Flip vertically" msgstr "Gira in verticale" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2077,7 +2291,7 @@ msgctxt "action" msgid "Follow" msgstr "Segui" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Segui {0}" @@ -2103,10 +2317,13 @@ msgstr "Seguire" #~ msgid "Follow selected accounts and continue to the next step" #~ msgstr "Segui gli account selezionati e vai al passaggio successivo" -#: 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 "Segui alcuni utenti per iniziare. Possiamo consigliarti piรน utenti in base a chi trovi interessante." +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Seguito da {0}" @@ -2128,18 +2345,30 @@ msgstr "ti segue" msgid "Followers" msgstr "Followers" -#: src/components/ProfileHoverCard/index.web.tsx:412 -#: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + +#~ msgid "following" +#~ msgstr "following" + +#: src/components/ProfileHoverCard/index.web.tsx:411 +#: src/components/ProfileHoverCard/index.web.tsx:422 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Following" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Seguiti {0}" @@ -2151,8 +2380,7 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferenze del Following feed" -#: src/Navigation.tsx:269 src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2174,19 +2402,26 @@ 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:210 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." -#: src/screens/Login/index.tsx:129 src/screens/Login/index.tsx:144 +#~ msgid "Forgot" +#~ msgstr "Dimenticato" + +#~ msgid "Forgot password" +#~ msgstr "Ho dimenticato il password" + +#: src/screens/Login/index.tsx:129 +#: src/screens/Login/index.tsx:144 msgid "Forgot Password" msgstr "Hai dimenticato la Password" -#: src/screens/Login/LoginForm.tsx:221 +#: src/screens/Login/LoginForm.tsx:224 msgid "Forgot password?" msgstr "Hai dimenticato la password?" -#: src/screens/Login/LoginForm.tsx:232 +#: src/screens/Login/LoginForm.tsx:235 msgid "Forgot?" msgstr "Hai dimenticato?" @@ -2216,7 +2451,7 @@ msgstr "Iniziamo" msgid "Get Started" msgstr "Inizia" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "Dai un volto al tuo profilo" @@ -2244,10 +2479,11 @@ msgstr "Torna indietro" msgid "Go Back" msgstr "Torna Indietro" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 #: src/components/ReportDialog/SubmitView.tsx:104 -#: src/screens/Onboarding/Layout.tsx:102 src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 msgid "Go back to previous step" msgstr "Torna al passaggio precedente" @@ -2260,11 +2496,10 @@ msgstr "Torna Home" msgid "Go Home" msgstr "Torna Home" -#: src/view/screens/Search/Search.tsx:NaN #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Vai a @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "Vai alla conversazione con {0}" @@ -2297,7 +2532,7 @@ msgstr "Aptica" msgid "Harassment, trolling, or intolerance" msgstr "Molestie, trolling o intolleranza" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Hashtag" @@ -2310,11 +2545,11 @@ msgid "Having trouble?" msgstr "Ci sono problemi?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Aiuto" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o creando un avatar." @@ -2330,7 +2565,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:154 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Ecco la password dell'app." @@ -2341,7 +2576,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Nascondi" @@ -2350,8 +2585,8 @@ msgctxt "action" msgid "Hide" msgstr "Nascondi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Nascondi il messaggio" @@ -2360,7 +2595,7 @@ msgstr "Nascondi il messaggio" msgid "Hide the content" msgstr "Nascondere il contenuto" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Vuoi nascondere questo post?" @@ -2368,23 +2603,26 @@ msgstr "Vuoi nascondere questo post?" msgid "Hide user list" msgstr "Nascondi elenco utenti" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#~ msgid "Hides posts from {0} in your feed" +#~ msgstr "Nasconde i post di {0} nel tuo feed" + +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Si รจ verificato un problema durante il contatto con il server del feed. Informa il proprietario del feed del problema." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Il server del feed sembra non รจ configurato correttamente. Informa il proprietario del feed del problema." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Il server del feed sembra essere offline. Informa il proprietario del feed di questo problema." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Il server del feed ha dato una risposta negativa. Informa il proprietario del feed di questo problema." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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." @@ -2396,24 +2634,31 @@ 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:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Home" +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferenze per i feed per la pagina d'inizio" + #: src/view/com/modals/ChangeHandle.tsx:414 msgid "Host:" msgstr "Hosting:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:154 src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Signup/StepInfo/index.tsx:40 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Servizio di hosting" +#~ msgid "Hosting provider address" +#~ msgstr "Indirizzo del fornitore di hosting" + #: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "How should we open this link?" msgstr "Come dovremmo aprire questo link?" @@ -2453,7 +2698,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "Se rimuovi questo post, non potrai recuperarlo." @@ -2473,10 +2718,13 @@ msgstr "Illegale e Urgente" msgid "Image" msgstr "Immagine" -#: src/view/com/modals/AltImage.tsx:121 +#: src/view/com/modals/AltImage.tsx:122 msgid "Image alt text" msgstr "Testo alternativo dell'immagine" +#~ msgid "Image options" +#~ msgstr "Opzioni per l'immagine" + #: src/lib/moderation/useReportOptions.ts:48 msgid "Impersonation or false claims about identity or affiliation" msgstr "Furto d'identitร  o false affermazioni sull'identitร  o sull'affiliazione" @@ -2493,7 +2741,13 @@ msgstr "Inserisci il codice inviato alla tua email per reimpostare la password" msgid "Input confirmation code for account deletion" msgstr "Inserisci il codice di conferma per la cancellazione dell'account" -#: src/view/com/modals/AddAppPasswords.tsx:181 +#~ msgid "Input email for Bluesky account" +#~ msgstr "Inserisci l'e-mail per l'account di Bluesky" + +#~ msgid "Input invite code to proceed" +#~ msgstr "Inserisci il codice di invito per procedere" + +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Inserisci il nome per la password dell'app" @@ -2505,19 +2759,28 @@ msgstr "Inserisci la nuova password" msgid "Input password for account deletion" msgstr "Inserisci la password per la cancellazione dell'account" -#: src/screens/Login/LoginForm.tsx:260 +#~ msgid "Input phone number for SMS verification" +#~ msgstr "Inserisci il numero di telefono per la verifica via SMS" + +#: src/screens/Login/LoginForm.tsx:263 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:215 +#: src/screens/Login/LoginForm.tsx:218 msgid "Input the password tied to {identifier}" msgstr "Inserisci la password relazionata a {identifier}" -#: src/screens/Login/LoginForm.tsx:188 +#: src/screens/Login/LoginForm.tsx:191 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" -#: src/screens/Login/LoginForm.tsx:214 +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "Inserisci il codice di verifica che ti abbiamo inviato tramite SMS" + +#~ 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:217 msgid "Input your password" msgstr "Inserisci la tua password" @@ -2533,19 +2796,22 @@ msgstr "Inserisci il tuo identificatore" msgid "Introducing Direct Messages" msgstr "Introduzione ai Messaggi Diretti" -#: src/screens/Login/LoginForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:132 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Codice di conferma 2FA non valido." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Protocollo del post non valido o non supportato" -#: src/screens/Login/LoginForm.tsx:134 +#: src/screens/Login/LoginForm.tsx:137 msgid "Invalid username or password" msgstr "Nome dell'utente o password errato" +#~ msgid "Invite" +#~ msgstr "Invita" + #: src/view/com/modals/InviteCodes.tsx:94 msgid "Invite a Friend" msgstr "Invita un amico" @@ -2562,6 +2828,9 @@ msgstr "Codice invito non accettato. Controlla di averlo inserito correttamente msgid "Invite codes: {0} available" msgstr "Codici di invito: {0} disponibili" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Codici di invito: {invitesAvailable} disponibili" + #: src/view/com/modals/InviteCodes.tsx:170 msgid "Invite codes: 1 available" msgstr "Codici di invito: 1 disponibile" @@ -2587,7 +2856,6 @@ msgstr "Lavori" msgid "Journalism" msgstr "Giornalismo" -#: src/components/moderation/LabelsOnMe.tsx:59 #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "l'etichetta รจ stata inserita su questo {labelTarget}" @@ -2607,6 +2875,9 @@ msgstr "Etichette" msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere utilizzate per nascondere, avvisare e classificare il network." +#~ msgid "labels have been placed on this {labelTarget}" +#~ msgstr "le etichette sono state inserite su questo {labelTarget}" + #: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "Etichette sul tuo account" @@ -2623,7 +2894,7 @@ msgstr "Seleziona la lingua" msgid "Language settings" msgstr "Impostazione delle lingue" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Impostazione delle Lingue" @@ -2636,10 +2907,13 @@ msgstr "Lingue" #~ msgstr "Ultimo passo!" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "Ultime" +#~ msgid "Learn more" +#~ msgstr "Ulteriori informazioni" + #: src/components/moderation/ScreenHider.tsx:136 msgid "Learn More" msgstr "Ulteriori Informazioni" @@ -2695,7 +2969,8 @@ msgstr "mancano." msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'archivio legacy รจ stato cancellato, riattiva la app." -#: src/screens/Login/index.tsx:130 src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:130 +#: src/screens/Login/index.tsx:145 msgid "Let's get your password reset!" msgstr "Reimpostazione della password!" @@ -2710,13 +2985,17 @@ msgstr "Andiamo!" msgid "Light" msgstr "Chiaro" +#~ msgid "Like" +#~ msgstr "Mi piace" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:570 msgid "Like this feed" msgstr "Metti mi piace a questo feed" -#: src/components/LikesDialog.tsx:87 src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/components/LikesDialog.tsx:87 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Piace a" @@ -2726,17 +3005,12 @@ msgstr "Piace a" msgid "Liked By" msgstr "Piace A" -#: src/view/com/feeds/FeedSourceCard.tsx:268 #~ msgid "Liked by {0} {1}" #~ msgstr "Piace a {0} {1}" -#: src/components/LabelingServiceCard/index.tsx:72 #~ msgid "Liked by {count} {0}" #~ msgstr "รˆ piaciuto a {count} {0}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301 -#: src/view/screens/ProfileFeed.tsx:600 #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Piace a {likeCount} {0}" @@ -2755,11 +3029,11 @@ msgstr "piace il tuo post" msgid "Likes" msgstr "Mi piace" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Mi Piace in questo post" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Lista" @@ -2771,7 +3045,7 @@ msgstr "Lista avatar" msgid "List blocked" msgstr "Lista bloccata" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Lista di {0}" @@ -2795,9 +3069,12 @@ msgstr "Lista sbloccata" msgid "List unmuted" msgstr "Lista non mutata" -#: src/Navigation.tsx:121 src/view/screens/Profile.tsx:192 -#: src/view/screens/Profile.tsx:198 src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 src/view/shell/Drawer.tsx:509 +#: src/Navigation.tsx:120 +#: src/view/screens/Profile.tsx:192 +#: src/view/screens/Profile.tsx:198 +#: src/view/shell/desktop/LeftNav.tsx:373 +#: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Liste" @@ -2805,7 +3082,10 @@ msgstr "Liste" msgid "Lists blocking this user:" msgstr "Liste che bloccano questo utente:" -#: src/view/screens/Notifications.tsx:168 +#~ msgid "Load more posts" +#~ msgstr "Carica piรน post" + +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Carica piรน notifiche" @@ -2820,7 +3100,10 @@ msgstr "Carica nuovi posts" msgid "Loading..." msgstr "Caricamento..." -#: src/Navigation.tsx:228 +#~ msgid "Local dev server" +#~ msgstr "Server di sviluppo locale" + +#: src/Navigation.tsx:234 msgid "Log" msgstr "Log" @@ -2848,6 +3131,9 @@ msgstr "Accedi all'account che non รจ nella lista" msgid "Long press to open tag menu for #{tag}" msgstr "Tieni premutoper aprire il menu dei tag per #{tag}" +#~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" +#~ msgstr "Sembra che questo feed sia disponibile solo per gli utenti con un account Bluesky. Per favore registrati o accedi per visualizzare questo feed!" + #: src/screens/Login/SetNewPasswordForm.tsx:116 msgid "Looks like XXXXX-XXXXX" msgstr "Sembra XXXX-XXXXX" @@ -2856,7 +3142,7 @@ msgstr "Sembra XXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "Sembra che tu non abbia salvato nessun feed! Usa le nostre raccomandazioni o cerca qui sotto." -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "Sembra che tu non abbia piรน feed fissati. Ma non ti preoccupare, puoi aggiungerne qualcuno di quelli qui sotto ๐Ÿ˜„" @@ -2877,6 +3163,12 @@ msgstr "Gestisci le parole mute e i tags" msgid "Mark as read" msgstr "Segna come letto" +#~ msgid "May not be longer than 253 characters" +#~ msgstr "Non puรฒ contenere piรน di 253 caratteri" + +#~ msgid "May only contain letters and numbers" +#~ msgstr "Puรฒ contenere solo lettere e numeri" + #: src/view/screens/AccessibilitySettings.tsx:89 #: src/view/screens/Profile.tsx:195 msgid "Media" @@ -2890,8 +3182,8 @@ msgstr "utenti menzionati" msgid "Mentioned users" msgstr "Utenti menzionati" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menรน" @@ -2900,11 +3192,14 @@ msgid "Message {0}" msgstr "Messaggio {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "Messaggio cancellato" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#~ msgid "Message from server" +#~ msgstr "Messaggio dal server" + +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Messaggio dal server: {0}" @@ -2917,11 +3212,11 @@ msgstr "" msgid "Message is too long" msgstr "Il messaggio รจ troppo lungo" -#: src/screens/Messages/List/index.tsx:301 +#: src/screens/Messages/List/index.tsx:321 msgid "Message settings" msgstr "Impostazione messaggio" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -2932,7 +3227,7 @@ msgstr "Messaggi" msgid "Misleading Account" msgstr "Account Ingannevole" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -2969,7 +3264,8 @@ msgstr "Lista di moderazione aggiornata" msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:131 src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:130 +#: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liste di Moderazione" @@ -2977,7 +3273,7 @@ msgstr "Liste di Moderazione" msgid "Moderation settings" msgstr "Impostazioni di moderazione" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "Stati di moderazione" @@ -2990,7 +3286,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Di piรน" @@ -3002,10 +3298,16 @@ msgstr "Altri feed" msgid "More options" msgstr "Altre opzioni" +#~ msgid "More post options" +#~ msgstr "Altre impostazioni per il post" + #: src/view/screens/PreferencesThreads.tsx:82 msgid "Most-liked replies first" msgstr "Dai prioritร  alle risposte con piรน likes" +#~ msgid "Must be at least 3 characters" +#~ msgstr "Deve contenere almeno 3 caratteri" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Silenzia" @@ -3053,6 +3355,9 @@ msgstr "Silenziare la lista" msgid "Mute these accounts?" msgstr "Vuoi silenziare queste liste?" +#~ msgid "Mute this List" +#~ msgstr "Silenzia questa Lista" + #: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Silenzia questa parola nel testo e nei tag del post" @@ -3061,13 +3366,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:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Silenzia questa discussione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Silenzia parole & tags" @@ -3079,7 +3384,8 @@ msgstr "Silenziato" msgid "Muted accounts" msgstr "Account silenziato" -#: src/Navigation.tsx:136 src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:135 +#: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Accounts Silenziati" @@ -3104,7 +3410,7 @@ msgstr "Silenziare un account รจ privato. Gli account silenziati possono interag msgid "My Birthday" msgstr "Il mio Compleanno" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "I miei Feeds" @@ -3123,7 +3429,7 @@ msgstr "I miei Feeds Salvati" #~ msgid "my-server.com" #~ msgstr "my-server.com" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nome" @@ -3159,8 +3465,6 @@ msgstr "Hai bisogno di segnalare una violazione del copyright?" #~ msgid "Never load embeds from {0}" #~ msgstr "Non caricare mai gli inserimenti di {0}" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:72 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:74 #~ msgid "Never lose access to your followers and data." #~ msgstr "Non perdere mai l'accesso ai tuoi follower e ai tuoi dati." @@ -3208,8 +3512,8 @@ msgctxt "action" msgid "New post" msgstr "Nuovo Post" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3240,7 +3544,8 @@ msgstr "Notizie" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:305 src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:308 +#: src/screens/Login/LoginForm.tsx:315 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:220 @@ -3249,6 +3554,10 @@ msgstr "Notizie" msgid "Next" msgstr "Seguente" +#~ msgctxt "action" +#~ msgid "Next" +#~ msgstr "Seguente" + #: src/view/com/lightbox/Lightbox.web.tsx:169 msgid "Next image" msgstr "Immagine seguente" @@ -3276,7 +3585,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/Profile/Header/ProfileHeaderStandard.tsx:117 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "Non segui piรน {0}" @@ -3284,24 +3593,29 @@ msgstr "Non segui piรน {0}" msgid "No longer than 253 characters" msgstr "Non piรน di 253 caratteri" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "Ancora nessun messaggio" -#: src/screens/Messages/List/index.tsx:254 +#: src/screens/Messages/List/index.tsx:274 msgid "No more conversations to show" msgstr "Nessuna conversazione da visualizzare" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "Ancora nessuna notifica!" #: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 src/screens/Messages/Settings.tsx:92 -#: src/screens/Messages/Settings.tsx:95 +#: src/components/dms/MessagesNUX.tsx:152 +#: src/screens/Messages/Settings.tsx:93 +#: src/screens/Messages/Settings.tsx:96 msgid "No one" msgstr "Nessuno" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3315,13 +3629,13 @@ msgstr "Nessun risultato" msgid "No results found" msgstr "Non si รจ trovato nessun risultato" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "Nessun risultato trovato per \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "Nessun risultato trovato per {query}" @@ -3343,7 +3657,8 @@ msgstr "Nessuno" msgid "Nobody can reply" msgstr "Nessuno puo rispondere" -#: src/components/LikedByList.tsx:79 src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:79 +#: src/components/LikesDialog.tsx:99 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nessuno ha fatto ancora un like. Fai il primo tu!" @@ -3351,7 +3666,11 @@ msgstr "Nessuno ha fatto ancora un like. Fai il primo tu!" msgid "Non-sexual Nudity" msgstr "Nuditร  non sessuale" -#: src/Navigation.tsx:116 src/view/screens/Profile.tsx:100 +#~ msgid "Not Applicable." +#~ msgstr "Non applicabile." + +#: src/Navigation.tsx:115 +#: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Non trovato" @@ -3361,7 +3680,7 @@ msgid "Not right now" msgstr "Non adesso" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "Nota sulla condivisione" @@ -3370,24 +3689,25 @@ msgstr "Nota sulla condivisione" 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." -#: src/screens/Messages/List/index.tsx:195 +#: src/screens/Messages/List/index.tsx:215 msgid "Nothing here" msgstr "Nulla qui" -#: src/screens/Messages/Settings.tsx:108 +#: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "Suoni di notifica" -#: src/screens/Messages/Settings.tsx:105 +#: src/screens/Messages/Settings.tsx:121 msgid "Notification Sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 src/view/shell/Drawer.tsx:456 +#: src/view/shell/desktop/LeftNav.tsx:350 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Notifiche" @@ -3403,6 +3723,12 @@ msgstr "Nuditร " msgid "Nudity or adult content not labeled as such" msgstr "Nuditร  o contenuti per adulti non etichettati come tali" +#~ msgid "Nudity or pornography not labeled as such" +#~ msgstr "Nuditร  o pornografia non etichettata come tale" + +#~ msgid "of" +#~ msgstr "spento" + #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" msgstr "Spento" @@ -3433,11 +3759,11 @@ msgstr "Mostrare prima le risposte piรน vecchie" msgid "Onboarding reset" msgstr "Reimpostazione dell'onboarding" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "A una o piรน immagini manca il testo alternativo." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "Solo i file .jpg e .png sono supportati" @@ -3453,7 +3779,8 @@ msgstr "Contiene solo lettere, numeri e trattini" msgid "Oops, something went wrong!" msgstr "Ops! Qualcosa รจ andato male!" -#: src/components/Lists.tsx:191 src/view/screens/AppPasswords.tsx:67 +#: src/components/Lists.tsx:191 +#: src/view/screens/AppPasswords.tsx:69 #: src/view/screens/Profile.tsx:100 msgid "Oops!" msgstr "Ops!" @@ -3466,17 +3793,17 @@ msgstr "Apri" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "Apri il generatore di avatar" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "Apri opzioni conversazione" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Apri il selettore emoji" @@ -3496,11 +3823,11 @@ msgstr "Apri opzioni messaggio" msgid "Open muted words and tags settings" msgstr "Apri le impostazioni delle parole e dei tag silenziati" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Apri la navigazione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Apri il menu delle opzioni del post" @@ -3576,6 +3903,9 @@ msgstr "Apre il procedimento per accedere al tuo account esistente di Bluesky" msgid "Opens GIF select dialog" msgstr "Apre la finestra per selezionare i GIF" +#~ msgid "Opens invite code list" +#~ msgstr "Apre la lista dei codici di invito" + #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Apre la lista dei codici di invito" @@ -3615,14 +3945,14 @@ msgstr "Apre il modal per l'utilizzo del dominio personalizzato" msgid "Opens moderation settings" msgstr "Apre le impostazioni di moderazione" -#: src/screens/Login/LoginForm.tsx:222 +#: src/screens/Login/LoginForm.tsx:225 msgid "Opens password reset form" msgstr "Apre il modulo di reimpostazione della password" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "Apre la schermata per modificare i feed salvati" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "Apre la schermata per modificare i feed salvati" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3639,6 +3969,9 @@ msgstr "Apre le impostazioni della password dell'app" msgid "Opens the Following feed preferences" msgstr "Apre le preferenze del feed Following" +#~ msgid "Opens the home feed preferences" +#~ msgstr "Apre le preferenze del home feed" + #: src/view/com/modals/LinkWarning.tsx:93 msgid "Opens the linked website" msgstr "Apre il sito Web collegato" @@ -3669,7 +4002,7 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Opzione {0} di {numItems}" -#: src/components/dms/ReportDialog.tsx:181 +#: src/components/dms/ReportDialog.tsx:183 #: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Facoltativamente, fornisci ulteriori informazioni di seguito:" @@ -3705,7 +4038,8 @@ msgstr "Altro..." msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "I nostri moderatori hanno revisionato i report e deciso di disabilitare il tuo accesso ai messaggi su Bluesky." -#: src/components/Lists.tsx:208 src/view/screens/NotFound.tsx:45 +#: src/components/Lists.tsx:208 +#: src/view/screens/NotFound.tsx:45 msgid "Page not found" msgstr "Pagina non trovata" @@ -3713,7 +4047,7 @@ msgstr "Pagina non trovata" msgid "Page Not Found" msgstr "Pagina non trovata" -#: src/screens/Login/LoginForm.tsx:198 +#: src/screens/Login/LoginForm.tsx:201 #: src/screens/Signup/StepInfo/index.tsx:102 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 @@ -3736,15 +4070,15 @@ msgstr "Password aggiornata!" msgid "Pause" msgstr "Pausa" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "Gente" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Persone che seguono @{0}" @@ -3760,6 +4094,9 @@ msgstr "L'autorizzazione per accedere la cartella delle immagini รจ stata negata msgid "Pets" msgstr "Animali di compagnia" +#~ msgid "Phone number" +#~ msgstr "Numero di telefono" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Immagini per adulti." @@ -3818,11 +4155,14 @@ msgstr "Si prega di completare il captcha di verifica." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Conferma la tua email prima di cambiarla. Si tratta di un requisito temporaneo durante l'aggiunta degli strumenti di aggiornamento della posta elettronica e verrร  presto rimosso." -#: src/view/com/modals/AddAppPasswords.tsx:91 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Inserisci un nome per la password dell'app. Tutti gli spazi non sono consentiti." -#: src/view/com/modals/AddAppPasswords.tsx:146 +#~ 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 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." @@ -3830,6 +4170,12 @@ msgstr "Inserisci un nome unico per la password dell'app o utilizzane uno genera msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Inserisci una parola, un tag o una frase valida da silenziare" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "Inserisci il codice che hai ricevuto via SMS." + +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}." + #: src/screens/Signup/state.ts:213 msgid "Please enter your email." msgstr "Inserisci la tua email." @@ -3838,7 +4184,7 @@ msgstr "Inserisci la tua email." msgid "Please enter your password as well:" msgstr "Inserisci anche la tua password:" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 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}" @@ -3851,11 +4197,17 @@ msgstr "Per favore spiega perchรฉ pensi che i tuoi messaggi siano stati erroneam msgid "Please sign in as @{0}" msgstr "Accedi come @{0}" +#~ msgid "Please tell us why you think this content warning was incorrectly applied!" +#~ msgstr "Spiegaci perchรฉ ritieni che questo avviso sui contenuti sia stato applicato in modo errato!" + +#~ msgid "Please tell us why you think this decision was incorrect." +#~ msgstr "Per favore spiegaci perchรฉ ritieni che questa decisione sia stata sbagliata." + #: src/view/com/modals/VerifyEmail.tsx:109 msgid "Please Verify Your Email" msgstr "Verifica la tua email" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Attendi il caricamento della scheda di collegamento" @@ -3870,13 +4222,13 @@ msgstr "Porno" #~ msgid "Pornography" #~ msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Post" @@ -3884,19 +4236,21 @@ msgstr "Post" #~ msgid "Post" #~ msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Pubblicato da {0}" -#: src/Navigation.tsx:183 src/Navigation.tsx:190 src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Post eliminato" -#: src/view/com/post-thread/PostThread.tsx:157 +#: src/view/com/post-thread/PostThread.tsx:193 msgid "Post hidden" msgstr "Post nascosto" @@ -3918,8 +4272,8 @@ msgstr "Lingua del post" msgid "Post Languages" msgstr "Lingue del post" -#: src/view/com/post-thread/PostThread.tsx:152 -#: src/view/com/post-thread/PostThread.tsx:164 +#: src/view/com/post-thread/PostThread.tsx:188 +#: src/view/com/post-thread/PostThread.tsx:200 msgid "Post not found" msgstr "Post non trovato" @@ -3935,7 +4289,7 @@ msgstr "Post" msgid "Posts can be muted based on their text, their tags, or both." msgstr "I post possono essere silenziati โ€‹โ€‹in base al testo, ai tag o entrambi." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Post nascosto" @@ -3951,12 +4305,17 @@ msgstr "Premere per tentare di riconnetterti" msgid "Press to change hosting provider" msgstr "Premi per cambiare provider di hosting" -#: src/components/Error.tsx:85 src/components/Lists.tsx:93 +#: src/components/Error.tsx:85 +#: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 #: src/screens/Signup/index.tsx:200 msgid "Press to retry" msgstr "Premere per riprovare" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Immagine precedente" @@ -3974,10 +4333,11 @@ msgstr "Dai prioritร  a quelli che segui" msgid "Privacy" msgstr "Privacy" -#: src/Navigation.tsx:238 src/screens/Signup/StepInfo/Policies.tsx:56 +#: src/Navigation.tsx:244 +#: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Informativa sulla privacy" @@ -3989,13 +4349,16 @@ msgstr "Messaggia privatamente con altri utenti." msgid "Processing..." msgstr "Elaborazione in corsoโ€ฆ" -#: src/view/screens/DebugMod.tsx:889 src/view/screens/Profile.tsx:345 +#: src/view/screens/DebugMod.tsx:894 +#: src/view/screens/Profile.tsx:345 msgid "profile" msgstr "profilo" #: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:381 src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 src/view/shell/Drawer.tsx:542 +#: src/view/shell/desktop/LeftNav.tsx:381 +#: src/view/shell/Drawer.tsx:78 +#: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Profilo" @@ -4019,16 +4382,16 @@ 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 feeds." -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Pubblica il post" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Pubblica la risposta" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4044,6 +4407,9 @@ msgstr "Cita il post" #~ msgid "Quote Post" #~ msgstr "Cita il post" +#~ msgid "Quote Post" +#~ msgstr "Cita il post" + #: src/view/screens/PreferencesThreads.tsx:86 msgid "Random (aka \"Poster's Roulette\")" msgstr "Selezione a caso (nota anche come \"Poster's Roulette\")" @@ -4056,31 +4422,40 @@ msgstr "Rapporti" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "Motivazione:" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "Ricerche recenti" +#~ msgid "Recommended Feeds" +#~ msgstr "Feeds consigliati" + +#~ msgid "Recommended Users" +#~ msgstr "Utenti consigliati" + #: src/screens/Messages/Conversation/MessageListError.tsx:20 msgid "Reconnect" msgstr "Riconnetti" -#: src/screens/Messages/List/index.tsx:180 +#: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "Ricarica conversazioni" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Rimuovi" +#~ msgid "Remove {0} from my feeds?" +#~ msgstr "Rimuovere {0} dai miei feeds?" + #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" msgstr "Rimuovi l'account" @@ -4097,25 +4472,25 @@ msgstr "Rimuovi il Banner" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Rimuovi il feed" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "Rimuovere il feed?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Rimuovere dai miei feed?" @@ -4131,11 +4506,11 @@ msgstr "Rimuovi l'anteprima dell'immagine" msgid "Remove mute word from your list" msgstr "Rimuovi la parola silenziata dalla tua lista" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4143,21 +4518,27 @@ msgstr "" msgid "Remove quote" msgstr "Rimuovi citazione" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Rimuovi la ripubblicazione" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#~ msgid "Remove this feed from my feeds?" +#~ msgstr "Rimuovere questo feed dai miei feeds?" + +#: src/view/com/posts/FeedErrorMessage.tsx:210 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 feeds salvati?" + #: src/view/com/modals/ListAddRemoveUsers.tsx:199 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Elimina dalla lista" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Rimuovere dai miei feeds" @@ -4188,7 +4569,7 @@ msgstr "Risposte" msgid "Replies to this thread are disabled" msgstr "Le risposte a questo thread sono disabilitate" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Risposta" @@ -4213,6 +4594,9 @@ msgstr "Rispondi a <0><1/>" msgid "Report" msgstr "Segnala" +#~ msgid "Report {collectionName}" +#~ msgstr "Segnala {collectionName}" + #: src/view/com/profile/ProfileMenu.tsx:321 #: src/view/com/profile/ProfileMenu.tsx:324 msgid "Report Account" @@ -4228,7 +4612,8 @@ msgstr "Segnala la conversazione" msgid "Report dialog" msgstr "Segnala il dialogo" -#: src/view/screens/ProfileFeed.tsx:347 src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:347 +#: src/view/screens/ProfileFeed.tsx:349 msgid "Report feed" msgstr "Segnala il feed" @@ -4240,8 +4625,8 @@ msgstr "Segnala la lista" msgid "Report message" msgstr "Segnala il messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Segnala il post" @@ -4257,8 +4642,8 @@ msgstr "Segnala questo feed" msgid "Report this list" msgstr "Segnala questa lista" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "Segnala questo messaggio" @@ -4271,9 +4656,9 @@ msgstr "Segnala questo post" msgid "Report this user" msgstr "Segnala questo utente" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Ripubblicare" @@ -4283,12 +4668,15 @@ msgstr "Ripubblicare" msgid "Repost" msgstr "Ripubblicare" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" msgstr "Ripubblica o cita il post" +#~ msgid "Reposted by" +#~ msgstr "Repost di" + #: src/view/screens/PostRepostedBy.tsx:27 msgid "Reposted By" msgstr "Ripubblicato da" @@ -4311,7 +4699,7 @@ msgstr "Ripubblicato da <0><1/>" msgid "reposted your post" msgstr "ripubblicato il tuo post" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Ripubblicazioni di questo post" @@ -4381,7 +4769,7 @@ msgstr "Reimposta lo stato dell'incorporazione" msgid "Resets the preferences state" msgstr "Reimposta lo stato delle preferenze" -#: src/screens/Login/LoginForm.tsx:286 +#: src/screens/Login/LoginForm.tsx:289 msgid "Retries login" msgstr "Ritenta l'accesso" @@ -4404,7 +4792,6 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" msgid "Retry" msgstr "Riprova" -#: src/screens/Messages/Conversation/MessageListError.tsx:54 #~ msgid "Retry." #~ msgstr "Riprova." @@ -4417,10 +4804,14 @@ msgstr "Ritorna alla pagina precedente" msgid "Returns to home page" msgstr "Ritorna su Home" -#: src/view/screens/NotFound.tsx:58 src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/NotFound.tsx:58 +#: src/view/screens/ProfileFeed.tsx:112 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "SANDBOX. I post e gli account non sono permanenti." + #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 @@ -4436,7 +4827,7 @@ msgctxt "action" msgid "Save" msgstr "Salva" -#: src/view/com/modals/AltImage.tsx:131 +#: src/view/com/modals/AltImage.tsx:132 msgid "Save alt text" msgstr "Salva il testo alternativo" @@ -4456,7 +4847,8 @@ msgstr "Salva la modifica del tuo identificatore" msgid "Save image crop" msgstr "Salva il ritaglio dell'immagine" -#: src/view/screens/ProfileFeed.tsx:331 src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:331 +#: src/view/screens/ProfileFeed.tsx:337 msgid "Save to my feeds" msgstr "Salva nei miei feed" @@ -4468,7 +4860,6 @@ msgstr "Canali salvati" msgid "Saved to your camera roll" msgstr "Salvata nella tua galleria" -#: src/view/com/lightbox/Lightbox.tsx:81 #~ msgid "Saved to your camera roll." #~ msgstr "Salvato nel rullino fotografico." @@ -4502,18 +4893,20 @@ msgid "Scroll to top" msgstr "Scorri verso l'alto" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:343 src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 src/view/shell/Drawer.tsx:393 +#: src/view/shell/desktop/LeftNav.tsx:343 +#: 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 msgid "Search" msgstr "Cerca" @@ -4521,7 +4914,7 @@ msgstr "Cerca" msgid "Search for \"{query}\"" msgstr "Cerca \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "Cerca \"{searchText}\"" @@ -4533,7 +4926,8 @@ 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/view/com/auth/LoggedOut.tsx:105 src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:105 +#: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cerca utenti" @@ -4582,6 +4976,9 @@ msgstr "Vedi <0>{displayTag} posts di questo utente" msgid "See this guide" msgstr "Consulta questa guida" +#~ msgid "See what's next" +#~ msgstr "Scopri cosa c'รจ dopo" + #: src/view/com/util/Selector.tsx:106 msgid "Select {item}" msgstr "Seleziona {item}" @@ -4602,6 +4999,9 @@ msgstr "Scegli un avatar" msgid "Select an emoji" msgstr "Scegli un emoji" +#~ msgid "Select Bluesky Social" +#~ msgstr "Seleziona Bluesky Social" + #: src/screens/Login/index.tsx:120 msgid "Select from an existing account" msgstr "Seleziona da un account esistente" @@ -4626,6 +5026,9 @@ msgstr "Seleziona moderatore" msgid "Select option {i} of {numItems}" msgstr "Seleziona l'opzione {i} di {numItems}" +#~ msgid "Select service" +#~ msgstr "Selecciona el servei" + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 #~ msgid "Select some accounts below to follow" #~ msgstr "Seleziona alcuni account da seguire qui giรน" @@ -4702,7 +5105,11 @@ msgctxt "action" msgid "Send Email" msgstr "Invia email" -#: src/view/shell/Drawer.tsx:328 src/view/shell/Drawer.tsx:349 +#~ msgid "Send Email" +#~ msgstr "Envia Email" + +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Invia feedback" @@ -4711,17 +5118,20 @@ msgstr "Invia feedback" msgid "Send message" msgstr "Invia messaggio" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 #: src/components/ReportDialog/SubmitView.tsx:215 #: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Invia la segnalazione" +#~ msgid "Send Report" +#~ msgstr "Invia segnalazione" + #: src/components/ReportDialog/SelectLabelerView.tsx:44 msgid "Send report to {0}" msgstr "Invia la segnalazione a {0}" @@ -4731,8 +5141,8 @@ msgstr "Invia la segnalazione a {0}" msgid "Send verification email" msgstr "Invia la email di verifica" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -4744,14 +5154,39 @@ msgstr "Invia un'email con il codice di conferma per la cancellazione dell'accou msgid "Server address" msgstr "Indirizzo del server" +#~ msgid "Set {value} for {labelGroup} content moderation policy" +#~ msgstr "Imposta {value} per la politica di moderazione dei contenuti di {labelGroup}" + +#~ msgctxt "action" +#~ msgid "Set Age" +#~ msgstr "Imposta l'etร " + #: src/screens/Moderation/index.tsx:304 msgid "Set birthdate" msgstr "Imposta la data di nascita" +#~ msgid "Set color theme to dark" +#~ msgstr "Imposta il colore del tema scuro" + +#~ msgid "Set color theme to light" +#~ msgstr "Imposta il colore del tema su chiaro" + +#~ msgid "Set color theme to system setting" +#~ msgstr "Imposta il colore del tema basato sulle impostazioni del tuo sistema" + +#~ msgid "Set dark theme to the dark theme" +#~ msgstr "Imposta il tema scuro sul tema scuro" + +#~ msgid "Set dark theme to the dim theme" +#~ msgstr "Imposta il tema scuro sul tema scuro" + #: src/screens/Login/SetNewPasswordForm.tsx:102 msgid "Set new password" msgstr "Imposta una nuova password" +#~ msgid "Set password" +#~ msgstr "Imposta la password" + #: src/view/screens/PreferencesFollowingFeed.tsx:224 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." @@ -4768,6 +5203,9 @@ msgstr "Seleziona \"No\" per nascondere tutte le ripubblicazioni dal tuo feed." 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 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." @@ -4804,6 +5242,9 @@ msgstr "Imposta il tema scuro sul tema semi fosco" msgid "Sets email for password reset" msgstr "Imposta l'email per la reimpostazione della password" +#~ msgid "Sets hosting provider for password reset" +#~ msgstr "Imposta il provider del hosting per la reimpostazione della password" + #: src/view/com/modals/crop-image/CropImage.web.tsx:146 msgid "Sets image aspect ratio to square" msgstr "Imposta le proporzioni quadrate sull'immagine" @@ -4819,11 +5260,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:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Impostazioni" @@ -4842,8 +5283,8 @@ msgstr "Condividi" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4858,12 +5299,13 @@ msgid "Share a fun fact!" msgstr "Condividi un fatto divertente!" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Condividi comunque" -#: src/view/screens/ProfileFeed.tsx:357 src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:357 +#: src/view/screens/ProfileFeed.tsx:359 msgid "Share feed" msgstr "Condividi il feed" @@ -4887,6 +5329,9 @@ msgstr "Condivide il sito Web nel link" msgid "Show" msgstr "Mostra" +#~ msgid "Show all replies" +#~ msgstr "Mostra tutte le repliche" + #: src/view/com/util/post-embeds/GifEmbed.tsx:167 msgid "Show alt text" msgstr "Mostra testo alternativo" @@ -4905,7 +5350,10 @@ msgstr "Mostra badge" msgid "Show badge and filter from feeds" msgstr "Mostra badge e filtra dai feed" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:212 +#~ msgid "Show embeds from {0}" +#~ msgstr "Mostra incorporamenti di {0}" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Mostra follows simile a {0}" @@ -4913,19 +5361,19 @@ msgstr "Mostra follows simile a {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "Mostra meno come questo" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Mostra di piรน" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -4969,6 +5417,9 @@ msgstr "Mostra le risposte delle persone che segui prima delle altre risposte." #~ msgid "Show replies in Following feed" #~ msgstr "Mostra le risposte nel feed Seguiti" +#~ msgid "Show replies with at least {value} {0}" +#~ msgstr "Mostra risposte con almeno {value} {0}" + #: src/view/screens/PreferencesFollowingFeed.tsx:187 msgid "Show Reposts" msgstr "Mostra ripubblicazioni" @@ -4994,27 +5445,37 @@ msgstr "Mostra avviso" msgid "Show warning and filter from feeds" msgstr "Mostra avviso e filtra dai feed" +#~ msgid "Shows a list of users similar to this user." +#~ msgstr "Mostra un elenco di utenti simili a questo utente." + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Shows posts from {0} in your feed" msgstr "Mostra i post di {0} nel tuo feed" -#: src/components/dialogs/Signin.tsx:97 src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:151 src/view/com/auth/SplashScreen.tsx:63 +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/index.tsx:119 +#: src/screens/Login/LoginForm.tsx:154 +#: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 -#: src/view/shell/NavSignupCard.tsx:69 src/view/shell/NavSignupCard.tsx:70 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/NavSignupCard.tsx:69 +#: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 msgid "Sign in" msgstr "Accedi" +#~ msgid "Sign In" +#~ msgstr "Accedi" + #: src/components/AccountList.tsx:114 msgid "Sign in as {0}" msgstr "Accedi come... {0}" @@ -5027,6 +5488,9 @@ msgstr "Accedi come..." msgid "Sign in or create your account to join the conversation!" msgstr "Accedi o crea il tuo account per partecipare alla conversazione!" +#~ msgid "Sign into" +#~ msgstr "Accedere a" + #: src/components/dialogs/Signin.tsx:46 msgid "Sign into Bluesky or create a new account" msgstr "Accedi a Bluesky o crea un nuovo account" @@ -5039,10 +5503,11 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 -#: src/view/shell/NavSignupCard.tsx:60 src/view/shell/NavSignupCard.tsx:61 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/NavSignupCard.tsx:60 +#: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 msgid "Sign up" msgstr "Iscrizione" @@ -5087,10 +5552,13 @@ msgstr "Sviluppo Software" msgid "Some people can reply" msgstr "Solo alcune persone possono rispondere" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Qualcosa รจ andato storto" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "Qualcosa รจ andato storto ma non siamo sicuri di cosa." + #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" @@ -5102,7 +5570,11 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Qualcosa รจ andato male, prova di nuovo." -#: src/App.native.tsx:85 src/App.web.tsx:73 +#~ msgid "Something went wrong. Check your email and try again." +#~ msgstr "Qualcosa รจ andato storto. Controlla la tua email e riprova." + +#: src/App.native.tsx:85 +#: src/App.web.tsx:74 msgid "Sorry! Your session expired. Please log in again." msgstr "Scusa! La tua sessione รจ scaduta. Per favore accedi di nuovo." @@ -5114,7 +5586,10 @@ msgstr "Ordina le risposte" msgid "Sort replies to the same post by:" msgstr "Ordina le risposte allo stesso post per:" -#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#~ msgid "Source:" +#~ msgstr "Origine:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "Fonte: <0>{0}" @@ -5150,7 +5625,6 @@ msgstr "Avvia conversazione con {displayName}" msgid "Start chatting" msgstr "Iniza a conversare" -#: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Pagina di stato" @@ -5158,21 +5632,27 @@ msgstr "Iniza a conversare" msgid "Status Page" msgstr "Pagina di stato" +#~ msgid "Step" +#~ msgstr "Passo" + #: src/screens/Signup/index.tsx:154 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 msgid "Storage cleared, you need to restart the app now." msgstr "Spazio di archiviazione eliminato. Riavvia l'app." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Cronologia" +#: src/components/moderation/LabelsOnMeDialog.tsx:290 #: src/components/moderation/LabelsOnMeDialog.tsx:291 -#: src/components/moderation/LabelsOnMeDialog.tsx:292 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5203,7 +5683,7 @@ msgstr "Iscriviti a questo labeler" msgid "Subscribe to this list" msgstr "Iscriviti alla lista" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Accounts da seguire" @@ -5215,11 +5695,15 @@ msgstr "Suggerito per te" msgid "Suggestive" msgstr "Suggestivo" -#: src/Navigation.tsx:233 src/view/screens/Support.tsx:30 +#: src/Navigation.tsx:239 +#: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Supporto" +#~ msgid "Swipe up to see more" +#~ msgstr "Scorri verso l'alto per vedere di piรน" + #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 msgid "Switch Account" @@ -5269,11 +5753,11 @@ msgstr "Racconta una barzalletta!" msgid "Terms" msgstr "Termini" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Termini di servizio" @@ -5287,12 +5771,12 @@ msgstr "I termini utilizzati violano gli standard della comunitร " msgid "text" msgstr "testo" -#: src/components/moderation/LabelsOnMeDialog.tsx:255 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo di testo" -#: src/components/dms/ReportDialog.tsx:132 +#: src/components/dms/ReportDialog.tsx:134 #: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Grazie. La tua segnalazione รจ stata inviata." @@ -5305,11 +5789,14 @@ msgstr "Che contiene il seguente:" msgid "That handle is already taken." msgstr "Questo handle รจ giร  stato preso." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "L'account sarร  in grado di interagire con te dopo lo sblocco." +#~ msgid "the author" +#~ msgstr "l'autore" + #: src/view/screens/CommunityGuidelines.tsx:36 msgid "The Community Guidelines have been moved to <0/>" msgstr "Le Linee guida della community sono state spostate a<0/>" @@ -5334,8 +5821,8 @@ msgstr "Ai tuoi contenuti sono state applicate le seguenti etichette." msgid "The following steps will help customize your Bluesky experience." msgstr "I passaggi seguenti ti aiuteranno a personalizzare la tua esperienza con Bluesky." -#: src/view/com/post-thread/PostThread.tsx:153 -#: src/view/com/post-thread/PostThread.tsx:165 +#: src/view/com/post-thread/PostThread.tsx:189 +#: src/view/com/post-thread/PostThread.tsx:201 msgid "The post may have been deleted." msgstr "Il post potrebbe essere stato cancellato." @@ -5347,6 +5834,9 @@ msgstr "La politica sulla privacy รจ stata spostata a <0/><0/>" msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Il modulo di supporto รจ stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." +#~ msgid "The support form has been moved. If you need help, please<0/> or visit {HELP_DESK_URL} to get in touch with us." +#~ msgstr "Il modulo di supporto รจ stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." + #: src/view/screens/TermsOfService.tsx:33 msgid "The Terms of Service have been moved to" msgstr "I Termini di Servizio sono stati spostati a" @@ -5364,7 +5854,7 @@ msgstr "" 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. 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." @@ -5392,12 +5882,12 @@ msgstr "Si รจ verificato un problema durante la connessione a Tenor." msgid "There was an issue contacting the server" msgstr "Si รจ verificato un problema durante il contatto con il server" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 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." @@ -5414,7 +5904,7 @@ msgstr "Si รจ verificato un problema durante il recupero dell'elenco. Tocca qui 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:220 +#: src/components/dms/ReportDialog.tsx:222 #: src/components/ReportDialog/SubmitView.tsx:82 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." @@ -5423,13 +5913,13 @@ msgstr "Si รจ verificato un problema durante l'invio della segnalazione. Per fav #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Si รจ verificato un problema durante la sincronizzazione delle tue preferenze con il server" -#: src/view/screens/AppPasswords.tsx:68 +#: src/view/screens/AppPasswords.tsx:70 msgid "There was an issue with fetching your app passwords" msgstr "Si รจ verificato un problema durante il recupero delle password dell'app" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:126 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5458,10 +5948,16 @@ msgstr "Si รจ verificato un problema imprevisto nell'applicazione. Per favore fa msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "C'รจ stata un'ondata di nuovi utenti su Bluesky! Attiveremo il tuo account il prima possibile." +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "C'รจ qualcosa di sbagliato in questo numero. Scegli il tuo Paese e inserisci il tuo numero di telefono completo!" + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #~ msgid "These are popular accounts you might like:" #~ msgstr "Questi sono gli account popolari che potrebbero piacerti:" +#~ msgid "This {0} has been labeled." +#~ msgstr "Questo {0} รจ stato etichettato." + #: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Questa {screenDescription} รจ stata segnalata:" @@ -5474,7 +5970,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:240 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "Questo ricorso verrร  inviato a <0>{0}." @@ -5503,10 +5999,14 @@ msgstr "Questo contenuto รจ hosted da {0}. Vuoi abilitare i media esterni?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Questo contenuto non รจ disponibile perchรฉ uno degli utenti coinvolti ha bloccato l'altro." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Questo contenuto non รจ visualizzabile senza un account Bluesky." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "" + #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "Questa funzionalitร  รจ in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni dell' archivio in <0>questo post del blog." @@ -5514,20 +6014,25 @@ msgstr "Questo contenuto non รจ visualizzabile senza un account Bluesky." msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Questa funzionalitร  รจ in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni del repository in <0>questo post del blog." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Questo canale al momento sta ricevendo molte visite ed รจ temporaneamente non disponibile. Riprova piรน tardi." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Questo feed รจ vuoto!" +#~ msgid "This feed is empty!" +#~ msgstr "Questo feed รจ vuoto!" #: 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 "Questo feed รจ vuoto! Prova a seguire piรน utenti o ottimizza le impostazioni della lingua." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 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." @@ -5540,6 +6045,12 @@ msgstr "Queste informazioni non vengono condivise con altri utenti." msgid "This is important in case you ever need to change your email or reset your password." msgstr "Questo รจ importante nel caso in cui avessi bisogno di modificare la tua email o reimpostare la password." +#~ msgid "This is the service that keeps you online." +#~ msgstr "Questo รจ il servizio che ti mantiene online." + +#~ msgid "This label was applied by {0}." +#~ msgstr "Questa etichetta รจ stata applicata da {0}." + #: src/components/moderation/ModerationDetailsDialog.tsx:127 msgid "This label was applied by <0>{0}." msgstr "Questa etichetta รจ stata applicata da <0>{0}." @@ -5548,7 +6059,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:167 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "Questa etichetta รจ stata applicata da te." @@ -5568,20 +6079,20 @@ msgstr "La lista รจ vuota!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Questo servizio di moderazione non รจ disponibile. Vedi giรน per ulteriori dettagli. Se il problema persiste, contattaci." -#: src/view/com/modals/AddAppPasswords.tsx:107 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Questo nome รจ giร  in uso" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Questo post รจ stato cancellato." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "Questo post verrร  nascosto dai feed." @@ -5614,6 +6125,12 @@ msgstr "Questo utente ti ha bloccato. Non รจ possibile visualizzare il suo conte msgid "This user has requested that their content only be shown to signed-in users." msgstr "Questo utente ha richiesto che i suoi contenuti vengano mostrati solo agli utenti che hanno effettuato l'accesso." +#~ msgid "This user is included in the <0/> list which you have blocked." +#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai bloccato." + +#~ msgid "This user is included in the <0/> list which you have muted." +#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai disattivato." + #: src/components/moderation/ModerationDetailsDialog.tsx:55 msgid "This user is included in the <0>{0} list which you have blocked." msgstr "Questo utente รจ incluso nell'elenco <0>{0} che hai bloccato." @@ -5622,10 +6139,16 @@ msgstr "Questo utente รจ incluso nell'elenco <0>{0} che hai bloccato." msgid "This user is included in the <0>{0} list which you have muted." 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/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." msgstr "Questo utente non sta seguendo nessuno." +#~ msgid "This warning is only available for posts with media attached." +#~ msgstr "Questo avviso รจ disponibile solo per i post con contenuti multimediali allegati." + #: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Questo eliminerร  {0} dalle parole disattivate. Puoi sempre aggiungerla nuovamente in seguito." @@ -5646,7 +6169,7 @@ msgstr "Preferenze delle Discussioni" msgid "Threaded Mode" msgstr "Modalitร  discussione" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" @@ -5675,7 +6198,7 @@ msgid "Toggle to enable or disable adult content" msgstr "Seleziona per abilitare o disabilitare i contenuti per adulti" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "Top" @@ -5685,10 +6208,10 @@ msgstr "Trasformazioni" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Tradurre" @@ -5733,14 +6256,14 @@ msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessi #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Sblocca" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Sblocca" @@ -5755,12 +6278,12 @@ msgstr "Sblocca l'account" msgid "Unblock Account" msgstr "Sblocca Account" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "Sblocca Account?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5775,7 +6298,7 @@ msgstr "Smetti di seguire" msgid "Unfollow" msgstr "Smetti di seguire" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Smetti di seguire {0}" @@ -5784,6 +6307,12 @@ msgstr "Smetti di seguire {0}" msgid "Unfollow Account" msgstr "Smetti di seguire questo account" +#~ msgid "Unfortunately, you do not meet the requirements to create an account." +#~ msgstr "Sfortunatamente, non soddisfi i requisiti per creare un account." + +#~ msgid "Unlike" +#~ msgstr "Togli Mi piace" + #: src/view/screens/ProfileFeed.tsx:570 msgid "Unlike this feed" msgstr "Togli il like a questo feed" @@ -5810,8 +6339,8 @@ msgstr "Riattiva tutti i post di {displayTag}" msgid "Unmute conversation" msgstr "Riattiva conversazione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Riattiva questa discussione" @@ -5832,6 +6361,9 @@ msgstr "Stacca la lista di moderazione" msgid "Unpinned from your feeds" msgstr "Sblocca dai tuoi feed" +#~ msgid "Unsave" +#~ msgstr "Rimuovi" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Unsubscribe" msgstr "Annulla l'iscrizione" @@ -5849,6 +6381,9 @@ msgstr "Contenuti Sessuali Indesiderati" msgid "Update {displayName} in Lists" msgstr "Aggiorna {displayName} negli elenchi" +#~ msgid "Update Available" +#~ msgstr "Aggiornamento disponibile" + #: src/view/com/modals/ChangeHandle.tsx:502 msgid "Update to {handle}" msgstr "Aggiorna a {handle}" @@ -5857,7 +6392,7 @@ msgstr "Aggiorna a {handle}" msgid "Updating..." msgstr "In aggiornamento..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "Alternativamente carica una foto" @@ -5888,7 +6423,7 @@ msgstr "Carica dalla Libreria" msgid "Use a file on your server" msgstr "Utilizza un file sul tuo server" -#: src/view/screens/AppPasswords.tsx:197 +#: 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 "Utilizza le password dell'app per accedere ad altri client Bluesky senza fornire l'accesso completo al tuo account o alla tua password." @@ -5918,10 +6453,13 @@ msgstr "Usa consigliati" msgid "Use the DNS panel" msgstr "Utilizza il pannello DNS" -#: src/view/com/modals/AddAppPasswords.tsx:156 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "Utilizza il tuo dominio come provider di servizi clienti Bluesky" + #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" msgstr "Usato da:" @@ -5981,7 +6519,7 @@ msgstr "Lista aggiornata" msgid "User Lists" msgstr "Liste publiche" -#: src/screens/Login/LoginForm.tsx:171 +#: src/screens/Login/LoginForm.tsx:174 msgid "Username or email address" msgstr "Nome utente o indirizzo Email" @@ -5994,8 +6532,9 @@ msgid "users followed by <0/>" msgstr "utenti seguiti da <0/>" #: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 src/screens/Messages/Settings.tsx:83 -#: src/screens/Messages/Settings.tsx:86 +#: src/components/dms/MessagesNUX.tsx:143 +#: src/screens/Messages/Settings.tsx:84 +#: src/screens/Messages/Settings.tsx:87 msgid "Users I follow" msgstr "Utenti che seguo" @@ -6011,6 +6550,12 @@ msgstr "Utenti a cui รจ piaciuto questo contenuto o profilo" msgid "Value:" msgstr "Valore:" +#~ msgid "Verification code" +#~ msgstr "Codice di verifica" + +#~ msgid "Verify {0}" +#~ msgstr "Verifica {0}" + #: src/view/com/modals/ChangeHandle.tsx:504 msgid "Verify DNS Record" msgstr "Verifica record DNS" @@ -6040,7 +6585,6 @@ msgstr "" msgid "Verify Your Email" msgstr "Verifica la tua email" -#: src/view/screens/Settings/index.tsx:852 #~ msgid "Version {0}" #~ msgstr "Versione {0}" @@ -6083,11 +6627,11 @@ msgstr "Visualizza le informazioni su queste etichette" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Vedi il profilo" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Vedi l'avatar" @@ -6099,6 +6643,11 @@ msgstr "Visualizza il servizio di etichettatura fornito da @{0}" msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6118,11 +6667,14 @@ msgstr "Avvisa il contenuto" msgid "Warn content and filter from feeds" msgstr "Avvisa i contenuti e filtra dai feed" +#~ msgid "We also think you'll like \"For You\" by Skygaze:" +#~ msgstr "Pensiamo che ti piacerร  anche \"Per Te\" di Skygaze:" + #: src/screens/Hashtag.tsx:210 msgid "We couldn't find any results for that hashtag." msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "Non riusciamo a caricare questa conversazione" @@ -6185,11 +6737,16 @@ msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il p msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Siamo spiacenti, ma al momento non siamo riusciti a caricare le parole silenziate. Per favore riprova si nuovo." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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/components/Lists.tsx:212 src/view/screens/NotFound.tsx:48 +#: src/view/com/composer/Composer.tsx:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:212 +#: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." @@ -6201,7 +6758,6 @@ msgstr "Ci dispiace! Puoi abbonarti solo a dieci etichettatori e hai raggiunto i msgid "Welcome back!" msgstr "" -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Ti diamo il benvenuto a <0>Bluesky" @@ -6209,9 +6765,15 @@ msgstr "" msgid "What are your interests?" msgstr "Quali sono i tuoi interessi?" +#~ msgid "What is the issue with this {collectionName}?" +#~ msgstr "Qual รจ il problema con questo {collectionName}?" + +#~ msgid "What's next?" +#~ msgstr "Qual รจ il prossimo?" + #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Come va?" @@ -6232,8 +6794,8 @@ msgstr "Chi puoi inviarti messaggi?" msgid "Who can reply" msgstr "Chi puรฒ rispondere" -#: src/screens/Home/NoFeedsPinned.tsx:92 -#: src/screens/Messages/List/index.tsx:165 +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "Ops!" @@ -6270,11 +6832,11 @@ msgstr "Largo" msgid "Write a message" msgstr "Scrivi un messaggio" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Scrivi un post" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Scrivi la tua risposta" @@ -6283,6 +6845,9 @@ msgstr "Scrivi la tua risposta" msgid "Writers" msgstr "Scrittori" +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 #: src/view/screens/PreferencesFollowingFeed.tsx:128 #: src/view/screens/PreferencesFollowingFeed.tsx:200 @@ -6314,8 +6879,8 @@ msgstr "Sei nella fila." msgid "You are not following anyone." msgstr "Non stai seguendo nessuno." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Puoi anche scoprire nuovi feed personalizzati da seguire." @@ -6334,7 +6899,12 @@ msgstr "" msgid "You can change this at any time." msgstr "Puoi modificarlo in qualsiasi momento." -#: src/screens/Login/index.tsx:158 src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Messages/Settings.tsx:111 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/screens/Login/index.tsx:158 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "You can now sign in with your new password." msgstr "Adesso puoi accedere con la tua nuova password." @@ -6346,6 +6916,10 @@ msgstr "" msgid "You do not have any followers." msgstr "Non hai follower." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Non hai ancora alcun codice di invito! Te ne invieremo alcuni quando utilizzerai Bluesky per un po' piรน a lungo." @@ -6354,7 +6928,6 @@ msgstr "Non hai ancora alcun codice di invito! Te ne invieremo alcuni quando uti msgid "You don't have any pinned feeds." msgstr "Non hai fissato nessun feed." -#: src/view/screens/Feeds.tsx:477 #~ msgid "You don't have any saved feeds!" #~ msgstr "Non hai salvato nessun feed!" @@ -6362,7 +6935,7 @@ msgstr "Non hai fissato nessun feed." msgid "You don't have any saved feeds." msgstr "Non hai salvato nessun feed." -#: src/view/com/post-thread/PostThread.tsx:159 +#: src/view/com/post-thread/PostThread.tsx:195 msgid "You have blocked the author or you have been blocked by the author." msgstr "Hai bloccato l'autore o sei stato bloccato dall'autore." @@ -6400,7 +6973,10 @@ msgstr "Hai silenziato questo account." msgid "You have muted this user" msgstr "Hai silenziato questo utente" -#: src/screens/Messages/List/index.tsx:205 +#~ msgid "You have muted this user." +#~ msgstr "Hai disattivato questo utente." + +#: src/screens/Messages/List/index.tsx:225 msgid "You have no conversations yet. Start one!" msgstr "Non hai ancora nessuna conversazione. Avviane una!" @@ -6417,7 +6993,10 @@ msgstr "Non hai liste." msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Non hai ancora bloccato nessun account. Per bloccare un account, vai sul profilo e seleziona \"Blocca account\" dal menu dell'account." -#: src/view/screens/AppPasswords.tsx:89 +#~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." +#~ msgstr "Non hai ancora bloccato nessun conto. Per bloccare un conto, vai al profilo e seleziona \"Blocca conto\" dal menu del suo conto." + +#: 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 "Non hai ancora creato alcuna password per l'app. Puoi crearne uno premendo il pulsante qui sotto." @@ -6425,6 +7004,9 @@ msgstr "Non hai ancora creato alcuna password per l'app. Puoi crearne uno premen msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai al suo profilo e seleziona \"Silenzia account\" dal menu dell' account." +#~ msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." +#~ msgstr "Non hai ancora disattivato alcun account. Per disattivare un account, vai al suo profilo e seleziona \"Disattiva account\" dal menu del account." + #: src/components/Lists.tsx:52 msgid "You have reached the end" msgstr "Hai raggiunto la fine" @@ -6445,6 +7027,9 @@ msgstr "Puoi presentare ricorso contro queste etichette se ritieni che siano sta msgid "You must be 13 years of age or older to sign up." msgstr "Per iscriverti devi avere almeno 13 anni." +#~ msgid "You must be 18 or older to enable adult content." +#~ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti." + #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti" @@ -6457,11 +7042,11 @@ msgstr "รˆ necessario selezionare almeno un'etichettatore per un report" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Non riceverai piรน notifiche per questo filo di discussione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Adesso riceverai le notifiche per questa discussione" @@ -6469,15 +7054,15 @@ msgstr "Adesso riceverai le notifiche per questa discussione" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Riceverai un'email con un \"codice di reset\". Inserisci il codice qui, poi inserisci la nuova password." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "Tu: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6505,7 +7090,7 @@ msgstr "Sei pronto per iniziare!" msgid "You've chosen to hide a word or tag within this post." msgstr "Hai scelto di nascondere una parola o un tag in questo post." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -6543,6 +7128,9 @@ msgstr "La tua scelta verrร  salvata, ma potrร  essere modificata successivament msgid "Your email appears to be invalid." msgstr "Your email appears to be invalid." +#~ msgid "Your email has been saved! We'll be in touch soon." +#~ msgstr "La tua email รจ stata salvata! Ci metteremo in contatto al piรน presto." + #: src/view/com/modals/ChangeEmail.tsx:120 msgid "Your email has been updated but not verified. As a next step, please verify your new email." msgstr "La tua email รจ stata aggiornata ma non verificata. Come passo successivo, verifica la tua nuova email." @@ -6551,7 +7139,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -6563,6 +7151,12 @@ msgstr "Il tuo nome di utente completo sarร " msgid "Your full handle will be <0>@{0}" msgstr "Il tuo nome di utente completo sarร  <0>@{0}" +#~ msgid "Your hosting provider" +#~ msgstr "Il tuo fornitore di hosting" + +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "I tuoi codici di invito vengono celati quando accedi utilizzando una password per l'app" + #: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Le tue parole silenziate" @@ -6571,7 +7165,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Il tuo post รจ stato pubblicato" @@ -6587,718 +7181,14 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "La tua risposta รจ stata pubblicata" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 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:166 msgid "Your user handle" msgstr "Il tuo handle utente" - -#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -#~ msgstr "{0, plural, one {# codice d'invito disponibile} other {# codici d'inviti disponibili}}" - -#~ msgid "{0}" -#~ msgstr "{0}" - -#~ msgid "{0} {purposeLabel} List" -#~ msgstr "Lista {purposeLabel} {0}" - -#~ msgid "{0} your feeds" -#~ msgstr "{0} tuoi feed" - -#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -#~ msgstr "{invitesAvailable, plural, one {Codici d'invito: # available} other {Codici d'invito: # available}}" - -#~ msgid "{invitesAvailable} invite code available" -#~ msgstr "{invitesAvailable} codice d'invito disponibile" - -#~ msgid "{invitesAvailable} invite codes available" -#~ msgstr "{invitesAvailable} codici d'invito disponibili" - -#~ msgid "{message}" -#~ msgstr "{message}" - -#~ msgid "<0>{0} following" -#~ msgstr "<0>{0} following" - -#~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "<0>{followers} <1>{pluralizedFollowers}" - -#~ msgid "<0>{following} <1>following" -#~ msgstr "<0>{following} <1>following" - -#~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "<0>Scegli i tuoi<1>feeds<2>consigliati" - -#~ msgid "<0>Follow some<1>Recommended<2>Users" -#~ msgstr "<0>Segui alcuni<1>utenti<2>consigliati" - -#~ msgid "<0>Welcome to<1>Bluesky" -#~ msgstr "<0>Ti diamo il benvenuto su<1>Bluesky" - -#~ msgid "A content warning has been applied to this {0}." -#~ msgstr "A questo post รจ stato applicato un avviso di contenuto {0}." - -#~ 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." - -#~ msgid "account" -#~ msgstr "account" - -#~ msgid "Add ALT text" -#~ msgstr "Agguingo del testo descrittivo" - -#~ msgid "Add details" -#~ msgstr "Aggiungi i dettagli" - -#~ msgid "Add details to report" -#~ msgstr "Aggiungi dettagli da segnalare" - -#~ msgid "Add link card" -#~ msgstr "Aggiungi anteprima del link" - -#~ msgid "Add link card:" -#~ msgstr "Aggiungi anteprima del link:" - -#~ msgid "Added" -#~ msgstr "Aggiunto" - -#~ 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/>." - -#~ 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" - -#~ msgid "App passwords" -#~ msgstr "Passwords dell'app" - -#~ msgid "Appeal content warning" -#~ msgstr "Ricorso contro l'avviso sui contenuti" - -#~ msgid "Appeal Content Warning" -#~ msgstr "Ricorso contro l'Avviso sui Contenuti" - -#~ msgid "Appeal Decision" -#~ msgstr "Decisiรณn de apelaciรณn" - -#~ msgid "Appeal submitted." -#~ msgstr "Ricorso presentato." - -#~ msgid "Appeal this decision." -#~ msgstr "Appella contro questa decisione." - -#~ msgid "Are you sure? This cannot be undone." -#~ msgstr "Vuoi proseguire? Questa operazione non puรฒ essere annullata." - -#~ msgctxt "action" -#~ msgid "Back" -#~ msgstr "Indietro" - -#~ msgid "Block this List" -#~ msgstr "Blocca questa Lista" - -#~ msgid "Bluesky is flexible." -#~ msgstr "Bluesky รจ flessibile." - -#~ msgid "Bluesky is open." -#~ msgstr "Bluesky รจ aperto." - -#~ msgid "Bluesky is public." -#~ msgstr "Bluesky รจ pubblico." - -#~ 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." - -#~ msgid "Bluesky.Social" -#~ msgstr "Bluesky.Social" - -#~ msgid "Build version {0} {1}" -#~ msgstr "Versione {0} {1}" - -#~ msgid "Button disabled. Input custom domain to proceed." -#~ msgstr "Pulsante disabilitato. Inserisci il dominio personalizzato per procedere." - -#~ msgid "by {0}" -#~ msgstr "di {0}" - -#~ msgid "Cancel add image alt text" -#~ msgstr "Cancelยทla afegir text a la imatge" - -#~ msgid "Cancel waitlist signup" -#~ msgstr "Annulla l'iscrizione alla lista d'attesa" - -#~ msgid "Change your Bluesky password" -#~ msgstr "Cambia la tua password di Bluesky" - -#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." -#~ msgstr "Dai un'occhiata ad alcuni feed consigliati. Clicca + per aggiungerli al tuo elenco dei feed." - -#~ msgid "Check out some recommended users. Follow them to see similar users." -#~ msgstr "Scopri alcuni utenti consigliati. Seguili per vedere utenti simili." - -#~ msgid "Choose a new Bluesky username or create" -#~ msgstr "Scegli un nuovo nome utente Bluesky o creane uno" - -#~ msgid "Choose the algorithms that power your experience with custom feeds." -#~ msgstr "Scegli gli algoritmi che migliorano la tua esperienza con i feed personalizzati." - -#~ msgid "Click here to open tag menu for #{tag}" -#~ msgstr "Clicca qui per aprire il menu per #{tag}" - -#~ msgctxt "action" -#~ msgid "Confirm" -#~ msgstr "Conferma" - -#~ msgid "Confirm your age to enable adult content." -#~ msgstr "Conferma la tua etร  per abilitare i contenuti per adulti." - -#~ msgid "Confirms signing up {email} to the waitlist" -#~ msgstr "Conferma l'iscrizione di {email} alla lista d'attesa" - -#~ msgid "content" -#~ msgstr "contenuto" - -#~ msgid "Content filtering" -#~ msgstr "Filtro dei contenuti" - -#~ msgid "Content Filtering" -#~ msgstr "Filtro dei Contenuti" - -#~ msgid "Copy link to profile" -#~ msgstr "Copia il link al profilo" - -#~ msgid "Country" -#~ msgstr "Paese" - -#~ msgid "Created by <0/>" -#~ msgstr "Creato da <0/>" - -#~ msgid "Created by you" -#~ msgstr "Creato da te" - -#~ msgid "Creates a card with a thumbnail. The card links to {url}" -#~ msgstr "Crea una scheda con una miniatura. La scheda si collega a {url}" - -#~ msgid "Danger Zone" -#~ msgstr "Zona di Pericolo" - -#~ msgid "Delete Account" -#~ msgstr "Elimina l'Account" - -#~ msgid "Delete my accountโ€ฆ" -#~ msgstr "Cancella il mio accountโ€ฆ" - -#~ msgid "Dev Server" -#~ msgstr "Server di sviluppo" - -#~ msgid "Developer Tools" -#~ msgstr "Strumenti per sviluppatori" - -#~ msgid "Discard draft" -#~ msgstr "Scarta la bozza" - -#~ msgid "Discover new feeds" -#~ msgstr "Scopri nuovi feeds" - -#~ msgid "Don't have an invite code?" -#~ msgstr "Non hai un codice di invito?" - -#~ msgid "Double tap to sign in" -#~ msgstr "Usa il doppio tocco per accedere" - -#~ msgid "Download Bluesky account data (repository)" -#~ msgstr "Scarica i dati dell'account Bluesky (archivio)" - -#~ msgid "Enable External Media" -#~ msgstr "Attiva Media Esterna" - -#~ msgid "Enter the address of your provider:" -#~ msgstr "Inserisci l'indirizzo del tuo provider:" - -#~ msgid "Enter your email" -#~ msgstr "Inserisci la tua email" - -#~ msgid "Enter your phone number" -#~ msgstr "Inserisci il tuo numero di telefono" - -#~ msgid "Exits signing up for waitlist with {email}" -#~ msgstr "Uscita dall'iscrizione alla lista d'attesa con {email}" - -#~ msgid "Failed to load recommended feeds" -#~ msgstr "Non possiamo caricare i feed consigliati" - -#~ msgid "Feed Preferences" -#~ msgstr "Preferenze del feed" - -#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." -#~ msgstr "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni feed che ritieni interessanti." - -#~ msgid "Find users on Bluesky" -#~ msgstr "Trova utenti su Bluesky" - -#~ msgid "Find users with the search tool on the right" -#~ msgstr "Trova gli utenti con lo strumento di ricerca sulla destra" - -#~ msgid "Finding similar accounts..." -#~ msgstr "Trovare account similiโ€ฆ" - -#~ msgid "Fine-tune the content you see on your home screen." -#~ msgstr "Ottimizza il contenuto che vedi nella pagina d'inizio." - -#~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." -#~ msgstr "Segui alcuni utenti per iniziare. Possiamo consigliarti piรน utenti in base a chi trovi interessante." - -#~ msgid "following" -#~ msgstr "following" - -#~ msgid "Forgot" -#~ msgstr "Dimenticato" - -#~ msgid "Forgot password" -#~ msgstr "Ho dimenticato il password" - -#~ msgid "Go to @{queryMaybeHandle}" -#~ msgstr "Vai a @{queryMaybeHandle}" - -#~ msgid "Hides posts from {0} in your feed" -#~ msgstr "Nasconde i post di {0} nel tuo feed" - -#~ msgid "Home Feed Preferences" -#~ msgstr "Preferenze per i feed per la pagina d'inizio" - -#~ msgid "Hosting provider address" -#~ msgstr "Indirizzo del fornitore di hosting" - -#~ msgid "Image options" -#~ msgstr "Opzioni per l'immagine" - -#~ msgid "Input email for Bluesky account" -#~ msgstr "Inserisci l'e-mail per l'account di Bluesky" - -#~ msgid "Input invite code to proceed" -#~ msgstr "Inserisci il codice di invito per procedere" - -#~ msgid "Input phone number for SMS verification" -#~ msgstr "Inserisci il numero di telefono per la verifica via SMS" - -#~ msgid "Input the verification code we have texted to you" -#~ msgstr "Inserisci il codice di verifica che ti abbiamo inviato tramite SMS" - -#~ msgid "Input your email to get on the Bluesky waitlist" -#~ msgstr "Inserisci la tua email per entrare nella lista d'attesa di Bluesky" - -#~ msgid "Invite" -#~ msgstr "Invita" - -#~ msgid "Invite codes: {invitesAvailable} available" -#~ msgstr "Codici di invito: {invitesAvailable} disponibili" - -#~ msgid "Join the waitlist" -#~ msgstr "Iscriviti alla lista d'attesa" - -#~ msgid "Join the waitlist." -#~ msgstr "Iscriviti alla lista d'attesa." - -#~ msgid "Join Waitlist" -#~ msgstr "Iscriviti alla Lista d'Attesa" - -#~ msgid "label has been placed on this {labelTarget}" -#~ msgstr "l'etichetta รจ stata inserita su questo {labelTarget}" - -#~ msgid "labels have been placed on this {labelTarget}" -#~ msgstr "le etichette sono state inserite su questo {labelTarget}" - -#~ msgid "Last step!" -#~ msgstr "Ultimo passo!" - -#~ msgid "Learn more" -#~ msgstr "Ulteriori informazioni" - -#~ msgid "Library" -#~ msgstr "Biblioteca" - -#~ msgid "Like" -#~ msgstr "Mi piace" - -#~ msgid "Liked by {0} {1}" -#~ msgstr "Piace a {0} {1}" - -#~ msgid "Liked by {count} {0}" -#~ msgstr "รˆ piaciuto a {count} {0}" - -#~ msgid "Liked by {likeCount} {0}" -#~ msgstr "Piace a {likeCount} {0}" - -#~ msgid "liked your custom feed{0}" -#~ msgstr "piace il feed personalizzato{0}" - -#~ msgid "Load more posts" -#~ msgstr "Carica piรน post" - -#~ msgid "Local dev server" -#~ msgstr "Server di sviluppo locale" - -#~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" -#~ msgstr "Sembra che questo feed sia disponibile solo per gli utenti con un account Bluesky. Per favore registrati o accedi per visualizzare questo feed!" - -#~ msgid "May not be longer than 253 characters" -#~ msgstr "Non puรฒ contenere piรน di 253 caratteri" - -#~ msgid "May only contain letters and numbers" -#~ msgstr "Puรฒ contenere solo lettere e numeri" - -#~ msgid "Message from server" -#~ msgstr "Messaggio dal server" - -#~ msgid "More post options" -#~ msgstr "Altre impostazioni per il post" - -#~ msgid "Must be at least 3 characters" -#~ msgstr "Deve contenere almeno 3 caratteri" - -#~ msgid "Mute this List" -#~ msgstr "Silenzia questa Lista" - -#~ msgid "my-server.com" -#~ msgstr "my-server.com" - -#~ msgid "Never load embeds from {0}" -#~ msgstr "Non caricare mai gli inserimenti di {0}" - -#~ msgid "Never lose access to your followers and data." -#~ msgstr "Non perdere mai l'accesso ai tuoi follower e ai tuoi dati." - -#~ msgid "New Post" -#~ msgstr "Nuovo Post" - -#~ msgctxt "action" -#~ msgid "Next" -#~ msgstr "Seguente" - -#~ msgid "Not Applicable." -#~ msgstr "Non applicabile." - -#~ msgid "Nudity or pornography not labeled as such" -#~ msgstr "Nuditร  o pornografia non etichettata come tale" - -#~ msgid "of" -#~ msgstr "spento" - -#~ 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" - -#~ msgid "Opens followers list" -#~ msgstr "Apre la lista dei followers" - -#~ msgid "Opens following list" -#~ msgstr "Apre la lista di chi segui" - -#~ msgid "Opens invite code list" -#~ msgstr "Apre la lista dei codici di invito" - -#~ 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." - -#~ msgid "Opens the app password settings page" -#~ msgstr "Apre la pagina delle impostazioni della password dell'app" - -#~ msgid "Opens the home feed preferences" -#~ msgstr "Apre le preferenze del home feed" - -#~ msgid "Other service" -#~ msgstr "Altro servizio" - -#~ msgid "Phone number" -#~ msgstr "Numero di telefono" - -#~ 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." - -#~ msgid "Please enter the code you received by SMS." -#~ msgstr "Inserisci il codice che hai ricevuto via SMS." - -#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." -#~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}." - -#~ msgid "Please tell us why you think this content warning was incorrectly applied!" -#~ msgstr "Spiegaci perchรฉ ritieni che questo avviso sui contenuti sia stato applicato in modo errato!" - -#~ msgid "Please tell us why you think this decision was incorrect." -#~ msgstr "Per favore spiegaci perchรฉ ritieni che questa decisione sia stata sbagliata." - -#~ msgid "Pornography" -#~ msgstr "Pornografia" - -#~ msgid "Post" -#~ msgstr "Post" - -#~ msgid "Quote Post" -#~ msgstr "Cita il post" - -#~ msgid "Recommended Feeds" -#~ msgstr "Feeds consigliati" - -#~ msgid "Recommended Users" -#~ msgstr "Utenti consigliati" - -#~ msgid "Remove {0} from my feeds?" -#~ msgstr "Rimuovere {0} dai miei feeds?" - -#~ msgid "Remove this feed from my feeds?" -#~ msgstr "Rimuovere questo feed dai miei feeds?" - -#~ msgid "Remove this feed from your saved feeds?" -#~ msgstr "Elimina questo feed dai feeds salvati?" - -#~ msgctxt "description" -#~ msgid "Reply to <0/>" -#~ msgstr "In risposta a <0/>" - -#~ msgid "Report {collectionName}" -#~ msgstr "Segnala {collectionName}" - -#~ msgid "Reposted by" -#~ msgstr "Repost di" - -#~ msgid "Reposted by {0})" -#~ msgstr "Repost di {0})" - -#~ msgid "Reposted by <0/>" -#~ msgstr "Repost di <0/>" - -#~ msgid "Request code" -#~ msgstr "Richiedi un codice" - -#~ msgid "Reset onboarding" -#~ msgstr "Reimposta l'incorporazione" - -#~ msgid "Reset preferences" -#~ msgstr "Reimposta le preferenze" - -#~ msgid "Retry." -#~ msgstr "Riprova." - -#~ msgid "SANDBOX. Posts and accounts are not permanent." -#~ msgstr "SANDBOX. I post e gli account non sono permanenti." - -#~ msgid "Saved to your camera roll." -#~ msgstr "Salvato nel rullino fotografico." - -#~ msgid "See what's next" -#~ msgstr "Scopri cosa c'รจ dopo" - -#~ msgid "Select Bluesky Social" -#~ msgstr "Seleziona Bluesky Social" - -#~ msgid "Select service" -#~ msgstr "Selecciona el servei" - -#~ 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" - -#~ msgid "Select your phone's country" -#~ msgstr "Seleziona il Paese del tuo cellulare" - -#~ msgid "Send Email" -#~ msgstr "Envia Email" - -#~ msgid "Send Report" -#~ msgstr "Invia segnalazione" - -#~ msgid "Set {value} for {labelGroup} content moderation policy" -#~ msgstr "Imposta {value} per la politica di moderazione dei contenuti di {labelGroup}" - -#~ msgctxt "action" -#~ msgid "Set Age" -#~ msgstr "Imposta l'etร " - -#~ msgid "Set color theme to dark" -#~ msgstr "Imposta il colore del tema scuro" - -#~ msgid "Set color theme to light" -#~ msgstr "Imposta il colore del tema su chiaro" - -#~ msgid "Set color theme to system setting" -#~ msgstr "Imposta il colore del tema basato sulle impostazioni del tuo sistema" - -#~ msgid "Set dark theme to the dark theme" -#~ msgstr "Imposta il tema scuro sul tema scuro" - -#~ msgid "Set dark theme to the dim theme" -#~ msgstr "Imposta il tema scuro sul tema scuro" - -#~ msgid "Set password" -#~ msgstr "Imposta la password" - -#~ 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." - -#~ msgid "Sets hosting provider for password reset" -#~ msgstr "Imposta il provider del hosting per la reimpostazione della password" - -#~ msgid "Sets server for the Bluesky client" -#~ msgstr "Imposta il server per il client Bluesky" - -#~ msgid "Show all replies" -#~ msgstr "Mostra tutte le repliche" - -#~ msgid "Show embeds from {0}" -#~ msgstr "Mostra incorporamenti di {0}" - -#~ msgid "Show replies with at least {value} {0}" -#~ msgstr "Mostra risposte con almeno {value} {0}" - -#~ msgid "Shows a list of users similar to this user." -#~ msgstr "Mostra un elenco di utenti simili a questo utente." - -#~ msgid "Sign In" -#~ msgstr "Accedi" - -#~ msgid "Sign into" -#~ msgstr "Accedere a" - -#~ msgid "Signs {0} out of Bluesky" -#~ msgstr "{0} esce da Bluesky" - -#~ msgid "SMS verification" -#~ msgstr "Verifica tramite SMS" - -#~ msgid "Something went wrong and we're not sure what." -#~ msgstr "Qualcosa รจ andato storto ma non siamo sicuri di cosa." - -#~ msgid "Something went wrong. Check your email and try again." -#~ msgstr "Qualcosa รจ andato storto. Controlla la tua email e riprova." - -#~ msgid "Source:" -#~ msgstr "Origine:" - -#~ msgid "Staging" -#~ msgstr "Allestimento" - -#~ msgid "Status page" -#~ msgstr "Pagina di stato" - -#~ msgid "Step" -#~ msgstr "Passo" - -#~ msgid "Step {0} of {numSteps}" -#~ msgstr "Passo {0} di {numSteps}" - -#~ msgid "Swipe up to see more" -#~ msgstr "Scorri verso l'alto per vedere di piรน" - -#~ msgid "the author" -#~ msgstr "l'autore" - -#~ msgid "The support form has been moved. If you need help, please<0/> or visit {HELP_DESK_URL} to get in touch with us." -#~ msgstr "Il modulo di supporto รจ stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." - -#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -#~ msgstr "C'รจ qualcosa di sbagliato in questo numero. Scegli il tuo Paese e inserisci il tuo numero di telefono completo!" - -#~ msgid "This {0} has been labeled." -#~ msgstr "Questo {0} รจ stato etichettato." - -#~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -#~ msgstr "Questa funzionalitร  รจ in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni dell' archivio in <0>questo post del blog." - -#~ msgid "This is the service that keeps you online." -#~ msgstr "Questo รจ il servizio che ti mantiene online." - -#~ msgid "This label was applied by {0}." -#~ msgstr "Questa etichetta รจ stata applicata da {0}." - -#~ msgid "This user is included in the <0/> list which you have blocked." -#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai bloccato." - -#~ msgid "This user is included in the <0/> list which you have muted." -#~ msgstr "Questo utente รจ incluso nell'elenco <0/> che hai disattivato." - -#~ msgid "This user is included the <0/> list which you have muted." -#~ msgstr "Questo utente รจ incluso nella lista <0/> che hai silenziato." - -#~ msgid "This warning is only available for posts with media attached." -#~ msgstr "Questo avviso รจ disponibile solo per i post con contenuti multimediali allegati." - -#~ msgid "This will hide this post from your feeds." -#~ msgstr "Questo nasconderร  il post dai tuoi feeds." - -#~ msgid "Try again" -#~ msgstr "Provalo di nuovo" - -#~ msgid "Unfortunately, you do not meet the requirements to create an account." -#~ msgstr "Sfortunatamente, non soddisfi i requisiti per creare un account." - -#~ msgid "Unlike" -#~ msgstr "Togli Mi piace" - -#~ msgid "Unsave" -#~ msgstr "Rimuovi" - -#~ msgid "Update Available" -#~ msgstr "Aggiornamento disponibile" - -#~ msgid "Use your domain as your Bluesky client service provider" -#~ msgstr "Utilizza il tuo dominio come provider di servizi clienti Bluesky" - -#~ msgid "User handle" -#~ msgstr "Handle dell'utente" - -#~ msgid "Verification code" -#~ msgstr "Codice di verifica" - -#~ msgid "Verify {0}" -#~ msgstr "Verifica {0}" - -#~ msgid "Version {0}" -#~ msgstr "Versione {0}" - -#~ msgid "We also think you'll like \"For You\" by Skygaze:" -#~ msgstr "Pensiamo che ti piacerร  anche \"Per Te\" di Skygaze:" - -#~ msgid "We'll look into your appeal promptly." -#~ msgstr "Esamineremo il tuo ricorso al piรน presto." - -#~ msgid "Welcome to <0>Bluesky" -#~ msgstr "Ti diamo il benvenuto a <0>Bluesky" - -#~ msgid "What is the issue with this {collectionName}?" -#~ msgstr "Qual รจ il problema con questo {collectionName}?" - -#~ msgid "What's next?" -#~ msgstr "Qual รจ il prossimo?" - -#~ msgid "XXXXXX" -#~ msgstr "XXXXXX" - -#~ msgid "You can change hosting providers at any time." -#~ msgstr "Puoi cambiare provider di hosting in qualsiasi momento." - -#~ msgid "You don't have any saved feeds!" -#~ msgstr "Non hai salvato nessun feed!" - -#~ msgid "You have muted this user." -#~ msgstr "Hai disattivato questo utente." - -#~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." -#~ msgstr "Non hai ancora bloccato nessun conto. Per bloccare un conto, vai al profilo e seleziona \"Blocca conto\" dal menu del suo conto." - -#~ msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." -#~ msgstr "Non hai ancora disattivato alcun account. Per disattivare un account, vai al suo profilo e seleziona \"Disattiva account\" dal menu del account." - -#~ msgid "You must be 18 or older to enable adult content." -#~ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti." - -#~ msgid "Your email has been saved! We'll be in touch soon." -#~ msgstr "La tua email รจ stata salvata! Ci metteremo in contatto al piรน presto." - -#~ msgid "Your hosting provider" -#~ msgstr "Il tuo fornitore di hosting" - -#~ msgid "Your invite codes are hidden when logged in using an App Password" -#~ msgstr "I tuoi codici di invito vengono celati quando accedi utilizzando una password per l'app" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index e8eac16574..e8dc12ce24 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: Hima-Zinn, tkusano, dolciss, oboenikui, noritada, middlingphys, hibiki, reindex-ot, haoyayoi, vyv03354\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "๏ผˆๅŸ‹ใ‚่พผใฟใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚ใ‚Š๏ผ‰" @@ -33,10 +33,14 @@ msgstr "{0, plural, other {#ๅ€‹ใฎใƒฉใƒ™ใƒซใŒใ“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใซ้ฉ็”จใ• msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, other {#ๅ€‹ใฎใƒฉใƒ™ใƒซใŒใ“ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใซ้ฉ็”จใ•ใ‚Œใฆใ„ใพใ™}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {#ๅ›žใฎใƒชใƒใ‚นใƒˆ}}" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -51,11 +55,11 @@ msgstr "{0, plural, other {ใƒ•ใ‚ฉใƒญใƒผไธญ}}" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, other {ใ„ใ„ใญ๏ผˆ#ๅ€‹ใฎใ„ใ„ใญ๏ผ‰}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {ใ„ใ„ใญ}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {#ไบบใฎใƒฆใƒผใ‚ถใƒผใŒใ„ใ„ใญ}}" @@ -67,7 +71,7 @@ msgstr "{0, plural, other {ๆŠ•็จฟ}}" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, other {่ฟ”ไฟก๏ผˆ#ไปถใฎ่ฟ”ไฟก๏ผ‰}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {ใƒชใƒใ‚นใƒˆ}}" @@ -106,7 +110,7 @@ msgstr "{handle}ใซใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ใ‚Œใพใ›ใ‚“" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#ไบบใฎใƒฆใƒผใ‚ถใƒผใŒใ„ใ„ใญ}}" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}ไปถใฎๆœช่ชญ" @@ -138,12 +142,12 @@ msgstr "โš ็„กๅŠนใชใƒใƒณใƒ‰ใƒซ" msgid "2FA Confirmation" msgstr "๏ผ’่ฆ็ด ่ช่จผใฎ็ขบ่ช" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "ใƒŠใƒ“ใ‚ฒใƒผใ‚ทใƒงใƒณใƒชใƒณใ‚ฏใจ่จญๅฎšใซใ‚ขใ‚ฏใ‚ปใ‚น" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใจไป–ใฎใƒŠใƒ“ใ‚ฒใƒผใ‚ทใƒงใƒณใƒชใƒณใ‚ฏใซใ‚ขใ‚ฏใ‚ปใ‚น" @@ -156,7 +160,7 @@ msgstr "ใ‚ขใ‚ฏใ‚ปใ‚ทใƒ“ใƒชใƒ†ใ‚ฃ" msgid "Accessibility settings" msgstr "ใ‚ขใ‚ฏใ‚ปใ‚ทใƒ“ใƒชใƒ†ใ‚ฃใฎ่จญๅฎš" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "ใ‚ขใ‚ฏใ‚ปใ‚ทใƒ“ใƒชใƒ†ใ‚ฃใฎ่จญๅฎš" @@ -196,7 +200,7 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚ชใƒ—ใ‚ทใƒงใƒณ" msgid "Account removed from quick access" msgstr "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚ขใ‚ฏใ‚ปใ‚นใ‹ใ‚‰ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่งฃ้™ค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™คใ—ใพใ—ใŸ" @@ -209,7 +213,7 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™คใ—ใพใ—ใŸ" msgid "Account unmuted" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™คใ—ใพใ—ใŸ" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -231,9 +235,9 @@ msgstr "ใƒชใ‚นใƒˆใซใƒฆใƒผใ‚ถใƒผใ‚’่ฟฝๅŠ " msgid "Add account" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่ฟฝๅŠ " -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -246,15 +250,15 @@ msgstr "ALTใƒ†ใ‚ญใ‚นใƒˆใ‚’่ฟฝๅŠ " msgid "Add App Password" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’่ฟฝๅŠ " -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "ใƒŸใƒฅใƒผใƒˆใ™ใ‚‹ใƒฏใƒผใƒ‰ใ‚’่จญๅฎšใซ่ฟฝๅŠ " -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "ใƒŸใƒฅใƒผใƒˆใ™ใ‚‹ใƒฏใƒผใƒ‰ใจใ‚ฟใ‚ฐใ‚’่ฟฝๅŠ " -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฟฝๅŠ " @@ -271,7 +275,7 @@ msgstr "ๆฌกใฎDNSใƒฌใ‚ณใƒผใƒ‰ใ‚’ใƒ‰ใƒกใ‚คใƒณใซ่ฟฝๅŠ ใ—ใฆใใ ใ•ใ„๏ผš" msgid "Add to Lists" msgstr "ใƒชใ‚นใƒˆใซ่ฟฝๅŠ " -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใซ่ฟฝๅŠ " @@ -280,7 +284,7 @@ msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใซ่ฟฝๅŠ " msgid "Added to list" msgstr "ใƒชใ‚นใƒˆใซ่ฟฝๅŠ " -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใซ่ฟฝๅŠ " @@ -302,12 +306,12 @@ msgstr "ๆˆไบบๅ‘ใ‘ใ‚ณใƒณใƒ†ใƒณใƒ„ใฏ็„กๅŠนใซใชใฃใฆใ„ใพใ™ใ€‚" msgid "Advanced" msgstr "้ซ˜ๅบฆใช่จญๅฎš" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "ไฟๅญ˜ใ—ใŸใ™ในใฆใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’๏ผ‘็ฎ‡ๆ‰€ใซใพใจใ‚ใพใ™ใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "ใƒ€ใ‚คใƒฌใ‚ฏใƒˆใƒกใƒƒใ‚ปใƒผใ‚ธใธใฎใ‚ขใ‚ฏใ‚ปใ‚นใ‚’่จฑๅฏ" @@ -325,13 +329,13 @@ msgstr "ใ‚ณใƒผใƒ‰ใ‚’ใ™ใงใซๆŒใฃใฆใ„ใพใ™ใ‹๏ผŸ" msgid "Already signed in as @{0}" msgstr "@{0}ใจใ—ใฆใ™ใงใซใ‚ตใ‚คใƒณใ‚คใƒณๆธˆใฟ" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -375,6 +379,7 @@ msgstr "ๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" msgid "an unknown error occurred" msgstr "ไฝ•ใ‚‰ใ‹ใฎใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸ" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -400,11 +405,11 @@ msgstr "ใ‚ขใƒ—ใƒชใฎ่จ€่ชž" msgid "App password deleted" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ๅ‰Š้™คใ—ใพใ—ใŸ" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅๅ‰ใซใฏใ€่‹ฑๆ•ฐๅญ—ใ€ใ‚นใƒšใƒผใ‚นใ€ใƒใ‚คใƒ•ใƒณใ€ใ‚ขใƒณใƒ€ใƒผใ‚นใ‚ณใ‚ขใฎใฟใŒไฝฟ็”จๅฏ่ƒฝใงใ™ใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅๅ‰ใฏ้•ทใ•ใŒ๏ผ”ๆ–‡ๅญ—ไปฅไธŠใงใ‚ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" @@ -412,22 +417,22 @@ msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅๅ‰ใฏ้•ทใ•ใŒ๏ผ”ๆ–‡ๅญ—ไปฅไธŠใงใ‚ใ‚‹ๅฟ… msgid "App password settings" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎ่จญๅฎš" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "็•ฐ่ญฐใ‚’็”ณใ—็ซ‹ใฆใ‚‹" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "ใ€Œ{0}ใ€ใฎใƒฉใƒ™ใƒซใซ็•ฐ่ญฐใ‚’็”ณใ—็ซ‹ใฆใ‚‹" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "็•ฐ่ญฐ็”ณใ—็ซ‹ใฆใ‚’ๆๅ‡บใ—ใพใ—ใŸ" @@ -444,7 +449,7 @@ msgid "Appearance" msgstr "่ƒŒๆ™ฏ" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใฎใŠใ™ใ™ใ‚ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฟฝๅŠ " @@ -460,15 +465,15 @@ msgstr "ใ“ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ๆœฌๅฝ“ใซๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸใ“ใฎใƒกใƒƒใ‚ปใƒผ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "ใ“ใฎไผš่ฉฑใ‹ใ‚‰้€€ๅ‡บใ—ใพใ™ใ‹๏ผŸใ‚ใชใŸใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฏใ‚ใชใŸใ‹ใ‚‰ใฏๅ‰Š้™คใ—ใŸใ‚ˆใ†ใซ่ฆ‹ใˆใพใ™ใŒใ€ไป–ใฎๅ‚ๅŠ ่€…ใ‹ใ‚‰ใฏๅ‰Š้™คใ•ใ‚Œใพใ›ใ‚“ใ€‚" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ใ‚ใชใŸใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰{0}ใ‚’ๅ‰Š้™คใ—ใฆใ‚‚ใ‚ˆใ‚ใ—ใ„ใงใ™ใ‹๏ผŸ" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "ๆœฌๅฝ“ใซใ“ใฎไธ‹ๆ›ธใใ‚’็ ดๆฃ„ใ—ใพใ™ใ‹๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "ๆœฌๅฝ“ใซใ‚ˆใ‚ใ—ใ„ใงใ™ใ‹๏ผŸ" @@ -489,8 +494,8 @@ msgid "At least 3 characters" msgstr "ๅฐ‘ใชใใจใ‚‚๏ผ“ๆ–‡ๅญ—" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -503,7 +508,7 @@ msgstr "ๅฐ‘ใชใใจใ‚‚๏ผ“ๆ–‡ๅญ—" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "ๆˆปใ‚‹" @@ -519,7 +524,7 @@ msgstr "็”Ÿๅนดๆœˆๆ—ฅ" msgid "Birthday:" msgstr "็”Ÿๅนดๆœˆๆ—ฅ๏ผš" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "ใƒ–ใƒญใƒƒใ‚ฏ" @@ -559,7 +564,7 @@ msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ•ใ‚Œใฆใ„ใพใ™" msgid "Blocked accounts" msgstr "ใƒ–ใƒญใƒƒใ‚ฏไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ใƒ–ใƒญใƒƒใ‚ฏไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" @@ -617,8 +622,8 @@ msgstr "็”ปๅƒใฎใผใ‹ใ—ใจใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ใฎใƒ•ใ‚ฃใƒซใ‚ฟใƒชใƒณใ‚ฐ" msgid "Books" msgstr "ๆ›ธ็ฑ" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "ไป–ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใ‚‹" @@ -626,7 +631,7 @@ msgstr "ไป–ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใ‚‹" msgid "Business" msgstr "ใƒ“ใ‚ธใƒใ‚น" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "ไฝœๆˆ่€…๏ผš-" @@ -634,7 +639,7 @@ msgstr "ไฝœๆˆ่€…๏ผš-" msgid "By {0}" msgstr "ไฝœๆˆ่€…๏ผš{0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "ไฝœๆˆ่€…๏ผš<0/>" @@ -642,7 +647,7 @@ msgstr "ไฝœๆˆ่€…๏ผš<0/>" msgid "By creating an account you agree to the {els}." msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆใ™ใ‚‹ใ“ใจใงใ€{els}ใซๅŒๆ„ใ—ใŸใ‚‚ใฎใจใฟใชใ•ใ‚Œใพใ™ใ€‚" -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "ไฝœๆˆ่€…๏ผšใ‚ใชใŸ" @@ -650,7 +655,7 @@ msgstr "ไฝœๆˆ่€…๏ผšใ‚ใชใŸ" msgid "Camera" msgstr "ใ‚ซใƒกใƒฉ" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "่‹ฑๆ•ฐๅญ—ใ€ใ‚นใƒšใƒผใ‚นใ€ใƒใ‚คใƒ•ใƒณใ€ใ‚ขใƒณใƒ€ใƒผใ‚นใ‚ณใ‚ขใฎใฟใŒไฝฟ็”จๅฏ่ƒฝใงใ™ใ€‚้•ทใ•ใฏ๏ผ”ๆ–‡ๅญ—ไปฅไธŠ32ๆ–‡ๅญ—ไปฅไธ‹ใงใ‚ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" @@ -659,8 +664,8 @@ msgstr "่‹ฑๆ•ฐๅญ—ใ€ใ‚นใƒšใƒผใ‚นใ€ใƒใ‚คใƒ•ใƒณใ€ใ‚ขใƒณใƒ€ใƒผใ‚นใ‚ณใ‚ขใฎใฟใŒ #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -676,8 +681,8 @@ msgstr "่‹ฑๆ•ฐๅญ—ใ€ใ‚นใƒšใƒผใ‚นใ€ใƒใ‚คใƒ•ใƒณใ€ใ‚ขใƒณใƒ€ใƒผใ‚นใ‚ณใ‚ขใฎใฟใŒ #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "ใ‚ญใƒฃใƒณใ‚ปใƒซ" @@ -706,7 +711,7 @@ msgstr "็”ปๅƒใฎๅˆ‡ใ‚ŠๆŠœใใ‚’ใ‚ญใƒฃใƒณใ‚ปใƒซ" msgid "Cancel profile editing" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใฎ็ทจ้›†ใ‚’ใ‚ญใƒฃใƒณใ‚ปใƒซ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "ๅผ•็”จใ‚’ใ‚ญใƒฃใƒณใ‚ปใƒซ" @@ -762,7 +767,7 @@ msgstr "ๆŠ•็จฟใฎ่จ€่ชžใ‚’{0}ใซๅค‰ๆ›ดใ—ใพใ™" msgid "Change Your Email" msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’ๅค‰ๆ›ด" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -774,7 +779,7 @@ msgstr "ใƒใƒฃใƒƒใƒˆใ‚’ใƒŸใƒฅใƒผใƒˆใ—ใพใ—ใŸ" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -839,7 +844,7 @@ msgid "Clear all storage data (restart after this)" msgstr "ใ™ในใฆใฎใ‚นใƒˆใƒฌใƒผใ‚ธใƒ‡ใƒผใ‚ฟใ‚’ใ‚ฏใƒชใ‚ข๏ผˆใ“ใฎใ‚ใจๅ†่ตทๅ‹•ใ—ใพใ™๏ผ‰" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "ๆคœ็ดขใ‚ฏใ‚จใƒชใ‚’ใ‚ฏใƒชใ‚ข" @@ -939,7 +944,7 @@ msgstr "ไธ‹้ƒจใฎใƒŠใƒ“ใ‚ฒใƒผใ‚ทใƒงใƒณใƒใƒผใ‚’้–‰ใ˜ใ‚‹" msgid "Closes password update alert" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ๆ›ดๆ–ฐใ‚ขใƒฉใƒผใƒˆใ‚’้–‰ใ˜ใ‚‹" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "ๆŠ•็จฟใฎ็ทจ้›†็”ป้ขใ‚’้–‰ใ˜ใฆไธ‹ๆ›ธใใ‚’ๅ‰Š้™คใ™ใ‚‹" @@ -963,7 +968,7 @@ msgstr "ใ‚ณใƒกใƒ‡ใ‚ฃใƒผ" msgid "Comics" msgstr "ๆผซ็”ป" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใƒผใ‚ฌใ‚คใƒ‰ใƒฉใ‚คใƒณ" @@ -976,7 +981,7 @@ msgstr "ๅˆๆœŸ่จญๅฎšใ‚’ๅฎŒไบ†ใ—ใฆใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝฟใ„ๅง‹ใ‚ใ‚‹" msgid "Complete the challenge" msgstr "ใƒ†ใ‚นใƒˆใ‚’ใ‚ฏใƒชใ‚ขใ—ใฆใใ ใ•ใ„" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "{MAX_GRAPHEME_LENGTH}ๆ–‡ๅญ—ใพใงใฎๆŠ•็จฟใ‚’ไฝœๆˆ" @@ -1077,7 +1082,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "ใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒกใƒ‹ใƒฅใƒผใฎ่ƒŒๆ™ฏใ‚’ใ‚ฏใƒชใƒƒใ‚ฏใ—ใ€ใƒกใƒ‹ใƒฅใƒผใ‚’้–‰ใ˜ใ‚‹ใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "็ถš่กŒ" @@ -1085,13 +1090,17 @@ msgstr "็ถš่กŒ" msgid "Continue as {0} (currently signed in)" msgstr "{0}ใจใ—ใฆ็ถš่กŒ๏ผˆ็พๅœจใ‚ตใ‚คใƒณใ‚คใƒณไธญ๏ผ‰" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "ๆฌกใฎใ‚นใƒ†ใƒƒใƒ—ใธ้€ฒใ‚€" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "ไผš่ฉฑใŒๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" @@ -1099,7 +1108,7 @@ msgstr "ไผš่ฉฑใŒๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" msgid "Cooking" msgstr "ๆ–™็†" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "ใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" @@ -1109,10 +1118,10 @@ msgid "Copied build version to clipboard" msgstr "ใƒ“ใƒซใƒ‰ใƒใƒผใ‚ธใƒงใƒณใ‚’ใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใซใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "ใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใซใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" @@ -1120,11 +1129,11 @@ msgstr "ใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใซใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" msgid "Copied!" msgstr "ใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ๏ผ" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ใ‚ณใƒ”ใƒผใ—ใพใ™" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "ใ‚ณใƒ”ใƒผ" @@ -1141,8 +1150,8 @@ msgstr "ใ‚ณใƒผใƒ‰ใ‚’ใ‚ณใƒ”ใƒผ" msgid "Copy link to list" msgstr "ใƒชใ‚นใƒˆใธใฎใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "ๆŠ•็จฟใธใฎใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" @@ -1151,12 +1160,12 @@ msgstr "ๆŠ•็จฟใธใฎใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" msgid "Copy message text" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฎใƒ†ใ‚ญใ‚นใƒˆใ‚’ใ‚ณใƒ”ใƒผ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "ๆŠ•็จฟใฎใƒ†ใ‚ญใ‚นใƒˆใ‚’ใ‚ณใƒ”ใƒผ" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "่‘—ไฝœๆจฉใƒใƒชใ‚ทใƒผ" @@ -1195,11 +1204,11 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆ" msgid "Create an account" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆ" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "ไปฃใ‚ใ‚Šใซใ‚ขใƒใ‚ฟใƒผใ‚’ไฝœๆˆ" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ไฝœๆˆ" @@ -1229,7 +1238,7 @@ msgstr "ใ‚ซใ‚นใ‚ฟใƒ " msgid "Custom domain" msgstr "ใ‚ซใ‚นใ‚ฟใƒ ใƒ‰ใƒกใ‚คใƒณ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใƒผใซใ‚ˆใฃใฆไฝœๆˆใ•ใ‚ŒใŸใ‚ซใ‚นใ‚ฟใƒ ใƒ•ใ‚ฃใƒผใƒ‰ใฏใ€ใ‚ใชใŸใซๆ–ฐใ—ใ„ไฝ“้จ“ใ‚’ใ‚‚ใŸใ‚‰ใ—ใ€ใ‚ใชใŸใŒๅฅฝใใชใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’่ฆ‹ใคใ‘ใ‚‹ใฎใซๅฝน็ซ‹ใกใพใ™ใ€‚" @@ -1272,7 +1281,7 @@ msgid "Debug panel" msgstr "ใƒ‡ใƒใƒƒใ‚ฐใƒ‘ใƒใƒซ" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1323,8 +1332,8 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๅ‰Š้™ค" msgid "Delete My Accountโ€ฆ" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๅ‰Š้™คโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "ๆŠ•็จฟใ‚’ๅ‰Š้™ค" @@ -1332,7 +1341,7 @@ msgstr "ๆŠ•็จฟใ‚’ๅ‰Š้™ค" msgid "Delete this list?" msgstr "ใ“ใฎใƒชใ‚นใƒˆใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "ใ“ใฎๆŠ•็จฟใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" @@ -1355,11 +1364,11 @@ msgstr "ใƒใƒฃใƒƒใƒˆใฎๅฎฃ่จ€ใƒฌใ‚ณใƒผใƒ‰ใ‚’ๅ‰Š้™คใ™ใ‚‹" msgid "Description" msgstr "่ชฌๆ˜Ž" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "่ชฌๆ˜Ž็š„ใชALTใƒ†ใ‚ญใ‚นใƒˆ" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "ใชใซใ‹่จ€ใ„ใŸใ„ใ“ใจใฏใ‚ใฃใŸ๏ผŸ" @@ -1392,11 +1401,11 @@ msgstr "่งฆ่ฆšใƒ•ใ‚ฃใƒผใƒ‰ใƒใƒƒใ‚ฏใ‚’็„กๅŠนๅŒ–" msgid "Disabled" msgstr "็„กๅŠน" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "็ ดๆฃ„" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "ไธ‹ๆ›ธใใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" @@ -1405,12 +1414,12 @@ msgstr "ไธ‹ๆ›ธใใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" msgid "Discourage apps from showing my account to logged-out users" msgstr "ใ‚ขใƒ—ใƒชใŒใƒญใ‚ฐใ‚ขใ‚ฆใƒˆใ—ใŸใƒฆใƒผใ‚ถใƒผใซ่‡ชๅˆ†ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่กจ็คบใ—ใชใ„ใ‚ˆใ†ใซใ™ใ‚‹" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "ๆ–ฐใ—ใ„ใ‚ซใ‚นใ‚ฟใƒ ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใคใ‘ใ‚‹" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "ๆ–ฐใ—ใ„ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆŽขใ™" @@ -1446,11 +1455,11 @@ msgstr "ใƒ‰ใƒกใ‚คใƒณใ‚’็ขบ่ชใ—ใพใ—ใŸ๏ผ" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1525,6 +1534,11 @@ msgstr "ไพ‹๏ผš่ฟ”ไฟกใจใ—ใฆๅบƒๅ‘Šใ‚’็นฐใ‚Š่ฟ”ใ—้€ใฃใฆใใ‚‹ใƒฆใƒผใ‚ถใƒผใ€‚ msgid "Each code works once. You'll receive more invite codes periodically." msgstr "ใใ‚Œใžใ‚Œใฎใ‚ณใƒผใƒ‰ใฏไธ€ๅ›ž้™ใ‚Šๆœ‰ๅŠนใงใ™ใ€‚ๅฎšๆœŸ็š„ใซ่ฟฝๅŠ ใฎๆ‹›ๅพ…ใ‚ณใƒผใƒ‰ใ‚’ใŠ้€ใ‚Šใ—ใพใ™ใ€‚" +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1548,8 +1562,9 @@ msgstr "ใƒชใ‚นใƒˆใฎ่ฉณ็ดฐใ‚’็ทจ้›†" msgid "Edit Moderation List" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆใ‚’็ทจ้›†" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็ทจ้›†" @@ -1559,19 +1574,19 @@ msgid "Edit my profile" msgstr "ใƒžใ‚คใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’็ทจ้›†" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’็ทจ้›†" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’็ทจ้›†" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็ทจ้›†" +#~ msgid "Edit Saved Feeds" +#~ msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็ทจ้›†" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1624,8 +1639,8 @@ msgid "Embed HTML code" msgstr "HTMLใ‚ณใƒผใƒ‰ใ‚’ๅŸ‹ใ‚่พผใ‚€" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "ๆŠ•็จฟใ‚’ๅŸ‹ใ‚่พผใ‚€" @@ -1668,7 +1683,7 @@ msgstr "ๆœ‰ๅŠน" msgid "End of feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ็ต‚ใ‚ใ‚Š" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "ใ“ใฎใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅๅ‰ใ‚’ๅ…ฅๅŠ›" @@ -1676,8 +1691,8 @@ msgstr "ใ“ใฎใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅๅ‰ใ‚’ๅ…ฅๅŠ›" msgid "Enter a password" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "ใƒฏใƒผใƒ‰ใพใŸใฏใ‚ฟใ‚ฐใ‚’ๅ…ฅๅŠ›" @@ -1727,7 +1742,7 @@ msgid "Error receiving captcha response." msgstr "Captchaใƒฌใ‚นใƒใƒณใ‚นใฎๅ—ไฟกไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "ใ‚จใƒฉใƒผ๏ผš" @@ -1815,7 +1830,7 @@ msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ข" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ขใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹ใจใ€ใใ‚Œใ‚‰ใฎใƒกใƒ‡ใ‚ฃใ‚ขใฎใ‚ฆใ‚งใƒ–ใ‚ตใ‚คใƒˆใŒใ‚ใชใŸใ‚„ใŠไฝฟใ„ใฎใƒ‡ใƒใ‚คใ‚นใซ้–ขใ™ใ‚‹ๆƒ…ๅ ฑใ‚’ๅŽ้›†ใ™ใ‚‹ๅ ดๅˆใŒใ‚ใ‚Šใพใ™ใ€‚ใใฎๅ ดๅˆใงใ‚‚ใ€ใ‚ใชใŸใŒใ€Œๅ†็”Ÿใ€ใƒœใ‚ฟใƒณใ‚’ๆŠผใ™ใพใงๆƒ…ๅ ฑใฏ้€ไฟกใ•ใ‚Œใšใ€่ฆๆฑ‚ใ‚‚ใ•ใ‚Œใพใ›ใ‚“ใ€‚" -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1825,8 +1840,8 @@ msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ขใฎ่จญๅฎš" msgid "External media settings" msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ขใฎ่จญๅฎš" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎไฝœๆˆใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚" @@ -1838,7 +1853,7 @@ msgstr "ใƒชใ‚นใƒˆใฎไฝœๆˆใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆใธใฎๆŽฅ msgid "Failed to delete message" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฎๅ‰Š้™คใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "ๆŠ•็จฟใฎๅ‰Š้™คใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" @@ -1859,7 +1874,7 @@ msgstr "็”ปๅƒใฎไฟๅญ˜ใซๅคฑๆ•—ใ—ใพใ—ใŸ๏ผš{0}" msgid "Failed to send" msgstr "้€ไฟกใซๅคฑๆ•—" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "็•ฐ่ญฐ็”ณใ—็ซ‹ใฆใฎ้€ไฟกใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ๅ†ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" @@ -1869,30 +1884,29 @@ msgstr "็•ฐ่ญฐ็”ณใ—็ซ‹ใฆใฎ้€ไฟกใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ๅ†ๅบฆ่ฉฆใ—ใฆใใ  msgid "Failed to update settings" msgstr "่จญๅฎšใฎๆ›ดๆ–ฐใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0}ใซใ‚ˆใ‚‹ใƒ•ใ‚ฃใƒผใƒ‰" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฏใ‚ชใƒ•ใƒฉใ‚คใƒณใงใ™" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใƒใƒƒใ‚ฏ" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰" @@ -1917,12 +1931,12 @@ msgid "Finalizing" msgstr "ๆœ€ๅพŒใซ" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "ใƒ•ใ‚ฉใƒญใƒผใ™ใ‚‹ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๆŽขใ™" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "ๆŠ•็จฟใ‚„ใƒฆใƒผใ‚ถใƒผใ‚’Blueskyใงๆคœ็ดข" @@ -1953,7 +1967,7 @@ msgstr "ๅž‚็›ดๆ–นๅ‘ใซๅ่ปข" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -1964,7 +1978,7 @@ msgctxt "action" msgid "Follow" msgstr "ใƒ•ใ‚ฉใƒญใƒผ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "{0}ใ‚’ใƒ•ใ‚ฉใƒญใƒผ" @@ -1982,6 +1996,10 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ใƒ•ใ‚ฉใƒญใƒผ" msgid "Follow Back" msgstr "ใƒ•ใ‚ฉใƒญใƒผใƒใƒƒใ‚ฏ" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "{0}ใŒใƒ•ใ‚ฉใƒญใƒผไธญ" @@ -2003,18 +2021,27 @@ msgstr "ใŒใ‚ใชใŸใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใพใ—ใŸ" msgid "Followers" msgstr "ใƒ•ใ‚ฉใƒญใƒฏใƒผ" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "ใƒ•ใ‚ฉใƒญใƒผไธญ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "{0}ใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ™" @@ -2026,9 +2053,7 @@ msgstr "{name}ใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ™" msgid "Following feed preferences" msgstr "Followingใƒ•ใ‚ฃใƒผใƒ‰ใฎ่จญๅฎš" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2050,7 +2075,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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 "ใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃไธŠใฎ็†็”ฑใ‹ใ‚‰ใ€ใ“ใ‚Œใ‚’ๅ†ๅบฆ่กจ็คบใ™ใ‚‹ใ“ใจใฏใงใใพใ›ใ‚“ใ€‚ใ“ใฎใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’็ด›ๅคฑใ—ใŸๅ ดๅˆใฏใ€ๆ–ฐใ—ใ„ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’็”Ÿๆˆใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" @@ -2093,7 +2118,7 @@ msgstr "ๅง‹ใ‚ใ‚‹" msgid "Get Started" msgstr "้–‹ๅง‹" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใซ้ก”ใ‚’ใคใ‘ใ‚‹" @@ -2121,9 +2146,9 @@ msgstr "ๆˆปใ‚‹" msgid "Go Back" msgstr "ๆˆปใ‚‹" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2138,7 +2163,7 @@ msgstr "ใƒ›ใƒผใƒ ใธ" msgid "Go Home" msgstr "ใƒ›ใƒผใƒ ใธ" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "{0}ใจใฎไผš่ฉฑใธ" @@ -2171,7 +2196,7 @@ msgstr "่งฆ่ฆšใƒ•ใ‚ฃใƒผใƒ‰ใƒใƒƒใ‚ฏ" msgid "Harassment, trolling, or intolerance" msgstr "ๅซŒใŒใ‚‰ใ›ใ€่’ใ‚‰ใ—ใ€ไธๅฏ›ๅฎน" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "ใƒใƒƒใ‚ทใƒฅใ‚ฟใ‚ฐ" @@ -2184,15 +2209,15 @@ msgid "Having trouble?" msgstr "ใชใซใ‹ๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ‹๏ผŸ" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "ใƒ˜ใƒซใƒ—" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ใŠ็Ÿฅใ‚‰ใ›ใ—ใพใ™ใ€‚" @@ -2203,7 +2228,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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "้ž่กจ็คบ" @@ -2212,8 +2237,8 @@ msgctxt "action" msgid "Hide" msgstr "้ž่กจ็คบ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "ๆŠ•็จฟใ‚’้ž่กจ็คบ" @@ -2222,7 +2247,7 @@ msgstr "ๆŠ•็จฟใ‚’้ž่กจ็คบ" msgid "Hide the content" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’้ž่กจ็คบ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "ใ“ใฎๆŠ•็จฟใ‚’้ž่กจ็คบใซใ—ใพใ™ใ‹๏ผŸ" @@ -2230,23 +2255,23 @@ msgstr "ใ“ใฎๆŠ•็จฟใ‚’้ž่กจ็คบใซใ—ใพใ™ใ‹๏ผŸ" msgid "Hide user list" msgstr "ใƒฆใƒผใ‚ถใƒผใƒชใ‚นใƒˆใ‚’้ž่กจ็คบ" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚ตใƒผใƒใƒผใซๅ•ใ„ๅˆใ‚ใ›ใŸใจใ“ใ‚ใ€ใชใ‚“ใ‚‰ใ‹ใฎๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ“ใฎๅ•้กŒใ‚’ใƒ•ใ‚ฃใƒผใƒ‰ใฎใ‚ชใƒผใƒŠใƒผใซใŠ็Ÿฅใ‚‰ใ›ใใ ใ•ใ„ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚ตใƒผใƒใƒผใฎ่จญๅฎšใŒ้–“้•ใฃใฆใ„ใ‚‹ใ‚ˆใ†ใงใ™ใ€‚ใ“ใฎๅ•้กŒใ‚’ใƒ•ใ‚ฃใƒผใƒ‰ใฎใ‚ชใƒผใƒŠใƒผใซใŠ็Ÿฅใ‚‰ใ›ใใ ใ•ใ„ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚ตใƒผใƒใƒผใŒใ‚ชใƒ•ใƒฉใ‚คใƒณใฎใ‚ˆใ†ใงใ™ใ€‚ใ“ใฎๅ•้กŒใ‚’ใƒ•ใ‚ฃใƒผใƒ‰ใฎใ‚ชใƒผใƒŠใƒผใซใŠ็Ÿฅใ‚‰ใ›ใใ ใ•ใ„ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚ตใƒผใƒใƒผใฎๅๅฟœใŒๆ‚ชใ„ใ‚ˆใ†ใงใ™ใ€‚ใ“ใฎๅ•้กŒใ‚’ใƒ•ใ‚ฃใƒผใƒ‰ใฎใ‚ชใƒผใƒŠใƒผใซใŠ็Ÿฅใ‚‰ใ›ใใ ใ•ใ„ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใŒ่ฆ‹ใคใ‹ใ‚‰ใชใ„ใ‚ˆใ†ใงใ™ใ€‚ใ‚‚ใ—ใ‹ใ—ใŸใ‚‰ๅ‰Š้™คใ•ใ‚ŒใŸใฎใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚" @@ -2258,11 +2283,11 @@ msgstr "ใ“ใฎใƒ‡ใƒผใ‚ฟใฎ่ชญใฟ่พผใฟใซๅ•้กŒใŒใ‚ใ‚‹ใ‚ˆใ†ใงใ™ใ€‚่ฉณ็ดฐใฏ msgid "Hmmmm, we couldn't load that moderation service." msgstr "ใใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใ‚ตใƒผใƒ“ใ‚นใ‚’่ชญใฟ่พผใ‚ใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "ใƒ›ใƒผใƒ " @@ -2316,7 +2341,7 @@ msgstr "ใ‚ใชใŸใŒใŠไฝใ„ใฎๅ›ฝใฎๆณ•ๅพ‹ใซใŠใ„ใฆใพใ ๆˆไบบใ—ใฆใ„ใช msgid "If you delete this list, you won't be able to recover it." msgstr "ใ“ใฎใƒชใ‚นใƒˆใ‚’ๅ‰Š้™คใ™ใ‚‹ใจใ€ๅพฉๅ…ƒใงใใชใใชใ‚Šใพใ™ใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "ใ“ใฎๆŠ•็จฟใ‚’ๅ‰Š้™คใ™ใ‚‹ใจใ€ๅพฉๅ…ƒใงใใชใใชใ‚Šใพใ™ใ€‚" @@ -2356,7 +2381,7 @@ msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ใƒชใ‚ปใƒƒใƒˆใ™ใ‚‹ใŸใ‚ใซใ‚ใชใŸใฎใƒกใƒผใƒซใ‚ขใƒ‰ msgid "Input confirmation code for account deletion" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆๅ‰Š้™คใฎใŸใ‚ใซ็ขบ่ชใ‚ณใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›" -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅๅ‰ใ‚’ๅ…ฅๅŠ›" @@ -2401,7 +2426,7 @@ msgstr "ใƒ€ใ‚คใƒฌใ‚ฏใƒˆใƒกใƒƒใ‚ปใƒผใ‚ธใฎ็ดนไป‹" msgid "Invalid 2FA confirmation code." msgstr "็„กๅŠนใช๏ผ’่ฆ็ด ่ช่จผใฎ็ขบ่ชใ‚ณใƒผใƒ‰ใงใ™ใ€‚" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "็„กๅŠนใพใŸใฏใ‚ตใƒใƒผใƒˆใ•ใ‚Œใฆใ„ใชใ„ๆŠ•็จฟใฎใƒฌใ‚ณใƒผใƒ‰" @@ -2453,11 +2478,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒฉใƒ™ใƒซ" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "ใ‚ใชใŸใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใฎใƒฉใƒ™ใƒซ" @@ -2469,7 +2494,7 @@ msgstr "่จ€่ชžใฎ้ธๆŠž" msgid "Language settings" msgstr "่จ€่ชžใฎ่จญๅฎš" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "่จ€่ชžใฎ่จญๅฎš" @@ -2479,7 +2504,7 @@ msgid "Languages" msgstr "่จ€่ชž" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "ๆœ€ๆ–ฐ" @@ -2557,8 +2582,8 @@ msgid "Like this feed" msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ„ใ„ใญ" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "ใ„ใ„ใญใ—ใŸใƒฆใƒผใ‚ถใƒผ" @@ -2580,11 +2605,11 @@ msgstr "ใŒใ‚ใชใŸใฎๆŠ•็จฟใ‚’ใ„ใ„ใญใ—ใพใ—ใŸ" msgid "Likes" msgstr "ใ„ใ„ใญ" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "ใ“ใฎๆŠ•็จฟใ‚’ใ„ใ„ใญใ™ใ‚‹" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "ใƒชใ‚นใƒˆ" @@ -2596,7 +2621,7 @@ msgstr "ใƒชใ‚นใƒˆใฎใ‚ขใƒใ‚ฟใƒผ" msgid "List blocked" msgstr "ใƒชใ‚นใƒˆใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใพใ—ใŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "{0}ใซใ‚ˆใ‚‹ใƒชใ‚นใƒˆ" @@ -2620,12 +2645,12 @@ msgstr "ใƒชใ‚นใƒˆใฎใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™คใ—ใพใ—ใŸ" msgid "List unmuted" msgstr "ใƒชใ‚นใƒˆใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™คใ—ใพใ—ใŸ" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "ใƒชใ‚นใƒˆ" @@ -2633,7 +2658,7 @@ msgstr "ใƒชใ‚นใƒˆ" msgid "Lists blocking this user:" msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใ‚‹ใƒชใ‚นใƒˆ๏ผš" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "ๆœ€ๆ–ฐใฎ้€š็Ÿฅใ‚’่ชญใฟ่พผใ‚€" @@ -2648,7 +2673,7 @@ msgstr "ๆœ€ๆ–ฐใฎๆŠ•็จฟใ‚’่ชญใฟ่พผใ‚€" msgid "Loading..." msgstr "่ชญใฟ่พผใฟไธญโ€ฆ" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "ใƒญใ‚ฐ" @@ -2684,7 +2709,7 @@ msgstr "XXXXX-XXXXXใฟใŸใ„ใชใ‚‚ใฎ" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ไฟๅญ˜ใ—ใฆใชใ„ใ‚ˆใ†ใงใ™ใญ๏ผใŠใ™ใ™ใ‚ใ‚’ไฝฟใ†ใ‹ไปฅไธ‹ใงๆŽขใ—ใฆใฟใพใ—ใ‚‡ใ†ใ€‚" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "ใ™ในใฆใฎใƒ•ใ‚ฃใƒผใƒ‰ใฎใƒ”ใƒณ็•™ใ‚ใ‚’ๅค–ใ—ใŸใ‚ˆใ†ใงใ™ใญใ€‚ๅฟƒ้…ใ‚ใ‚Šใพใ›ใ‚“ใ€ไปฅไธ‹ใง่ฟฝๅŠ ใงใใพใ™ ๐Ÿ˜„" @@ -2696,7 +2721,7 @@ msgstr "Followingใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆถˆใ—ใŸใ‚ˆใ†ใงใ™ใ€‚<0>ใ“ใ“ใ‚’ใ‚ฏใƒชใƒƒใ‚ฏ msgid "Make sure this is where you intend to go!" msgstr "ๆ„ๅ›ณใ—ใŸๅ ดๆ‰€ใงใ‚ใ‚‹ใ“ใจใ‚’็ขบ่ชใ—ใฆใใ ใ•ใ„๏ผ" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใƒฏใƒผใƒ‰ใจใ‚ฟใ‚ฐใฎ็ฎก็†" @@ -2718,8 +2743,8 @@ msgstr "ใƒกใƒณใ‚ทใƒงใƒณใ•ใ‚ŒใŸใƒฆใƒผใ‚ถใƒผ" msgid "Mentioned users" msgstr "ใƒกใƒณใ‚ทใƒงใƒณใ•ใ‚ŒใŸใƒฆใƒผใ‚ถใƒผ" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "ใƒกใƒ‹ใƒฅใƒผ" @@ -2728,11 +2753,11 @@ msgid "Message {0}" msgstr "{0}ใธใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ใ‚‹" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฏๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "ใ‚ตใƒผใƒใƒผใ‹ใ‚‰ใฎใƒกใƒƒใ‚ปใƒผใ‚ธ๏ผš{0}" @@ -2749,7 +2774,7 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใŒ้•ทใ™ใŽใพใ™" msgid "Message settings" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฎ่จญๅฎš" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -2760,7 +2785,7 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธ" msgid "Misleading Account" msgstr "่ชค่งฃใ‚’ๆ‹›ใใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -2797,7 +2822,7 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆใ‚’ๆ›ดๆ–ฐใ—ใพใ—ใŸ" msgid "Moderation lists" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆ" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆ" @@ -2806,7 +2831,7 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆ" msgid "Moderation settings" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎ่จญๅฎš" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎใ‚นใƒ†ใƒผใ‚ฟใ‚น" @@ -2819,7 +2844,7 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎใƒ„ใƒผใƒซ" msgid "Moderator has chosen to set a general warning on the content." msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ฟใƒผใซใ‚ˆใ‚Šใ‚ณใƒณใƒ†ใƒณใƒ„ใซไธ€่ˆฌ็š„ใช่ญฆๅ‘ŠใŒ่จญๅฎšใ•ใ‚Œใพใ—ใŸใ€‚" -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "ใ•ใ‚‰ใซ" @@ -2861,11 +2886,11 @@ msgstr "{displayTag}ใฎใ™ในใฆใฎๆŠ•็จฟใ‚’ใƒŸใƒฅใƒผใƒˆ" msgid "Mute conversation" msgstr "ไผš่ฉฑใ‚’ใƒŸใƒฅใƒผใƒˆ" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "ใ‚ฟใ‚ฐใฎใฟใ‚’ใƒŸใƒฅใƒผใƒˆ" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "ใƒ†ใ‚ญใ‚นใƒˆใจใ‚ฟใ‚ฐใ‚’ใƒŸใƒฅใƒผใƒˆ" @@ -2877,21 +2902,21 @@ msgstr "ใƒชใ‚นใƒˆใ‚’ใƒŸใƒฅใƒผใƒˆ" msgid "Mute these accounts?" msgstr "ใ“ใ‚Œใ‚‰ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ใƒŸใƒฅใƒผใƒˆใ—ใพใ™ใ‹๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "ๆŠ•็จฟใฎใƒ†ใ‚ญใ‚นใƒˆใ‚„ใ‚ฟใ‚ฐใงใ“ใฎใƒฏใƒผใƒ‰ใ‚’ใƒŸใƒฅใƒผใƒˆ" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "ใ‚ฟใ‚ฐใฎใฟใงใ“ใฎใƒฏใƒผใƒ‰ใ‚’ใƒŸใƒฅใƒผใƒˆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใ‚’ใƒŸใƒฅใƒผใƒˆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "ใƒฏใƒผใƒ‰ใจใ‚ฟใ‚ฐใ‚’ใƒŸใƒฅใƒผใƒˆ" @@ -2903,7 +2928,7 @@ msgstr "ใƒŸใƒฅใƒผใƒˆใ•ใ‚Œใฆใ„ใพใ™" msgid "Muted accounts" msgstr "ใƒŸใƒฅใƒผใƒˆไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "ใƒŸใƒฅใƒผใƒˆไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" @@ -2929,7 +2954,7 @@ msgstr "ใƒŸใƒฅใƒผใƒˆใฎ่จญๅฎšใฏ้žๅ…ฌ้–‹ใงใ™ใ€‚ใƒŸใƒฅใƒผใƒˆไธญใฎใ‚ขใ‚ซใ‚ฆใƒณ msgid "My Birthday" msgstr "็”Ÿๅนดๆœˆๆ—ฅ" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰" @@ -2945,7 +2970,7 @@ msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰" msgid "My Saved Feeds" msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "ๅๅ‰" @@ -3022,8 +3047,8 @@ msgctxt "action" msgid "New post" msgstr "ๆ–ฐใ—ใ„ๆŠ•็จฟ" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3088,7 +3113,7 @@ msgstr "DNSใƒ‘ใƒใƒซใŒใชใ„ๅ ดๅˆ" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "ใŠใ™ใ™ใ‚ใฎGIFใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใ€‚Tenorใซๅ•้กŒใŒใ‚ใ‚‹ใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "{0}ใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™คใ—ใพใ—ใŸ" @@ -3096,7 +3121,7 @@ msgstr "{0}ใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™คใ—ใพใ—ใŸ" msgid "No longer than 253 characters" msgstr "253ๆ–‡ๅญ—ใพใง" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฏใ‚ใ‚Šใพใ›ใ‚“" @@ -3104,7 +3129,7 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฏใ‚ใ‚Šใพใ›ใ‚“" msgid "No more conversations to show" msgstr "ใ“ใ‚ŒไปฅไธŠ่กจ็คบใงใใ‚‹ไผš่ฉฑใฏใ‚ใ‚Šใพใ›ใ‚“" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "ใŠ็Ÿฅใ‚‰ใ›ใฏใ‚ใ‚Šใพใ›ใ‚“๏ผ" @@ -3115,6 +3140,10 @@ msgstr "ใŠ็Ÿฅใ‚‰ใ›ใฏใ‚ใ‚Šใพใ›ใ‚“๏ผ" msgid "No one" msgstr "่ชฐใ‹ใ‚‰ใ‚‚ๅ—ใ‘ๅ–ใ‚‰ใชใ„" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3128,13 +3157,13 @@ msgstr "็ตๆžœใฏใ‚ใ‚Šใพใ›ใ‚“" msgid "No results found" msgstr "็ตๆžœใฏ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "ใ€Œ{query}ใ€ใฎๆคœ็ดข็ตๆžœใฏใ‚ใ‚Šใพใ›ใ‚“" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "ใ€Œ{query}ใ€ใฎๆคœ็ดข็ตๆžœใฏใ‚ใ‚Šใพใ›ใ‚“" @@ -3165,7 +3194,7 @@ msgstr "ใพใ ่ชฐใ‚‚ใ“ใ‚Œใ‚’ใ„ใ„ใญใ—ใฆใ„ใพใ›ใ‚“ใ€‚ใ‚ใชใŸใŒๆœ€ๅˆใซ msgid "Non-sexual Nudity" msgstr "ๆ€ง็š„ใงใฏใชใ„ใƒŒใƒผใƒ‰" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“" @@ -3176,7 +3205,7 @@ msgid "Not right now" msgstr "ไปŠใฏใ—ใชใ„" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "ๅ…ฑๆœ‰ใซใคใ„ใฆใฎๆณจๆ„ไบ‹้ …" @@ -3197,13 +3226,13 @@ msgstr "้€š็Ÿฅ้Ÿณ" msgid "Notification Sounds" msgstr "้€š็Ÿฅ้Ÿณ" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "้€š็Ÿฅ" @@ -3249,11 +3278,11 @@ msgstr "ๅคใ„้ †ใซ่ฟ”ไฟกใ‚’่กจ็คบ" msgid "Onboarding reset" msgstr "ใ‚ชใƒณใƒœใƒผใƒ‡ใ‚ฃใƒณใ‚ฐใฎใƒชใ‚ปใƒƒใƒˆ" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "๏ผ‘ใคใ‚‚ใ—ใใฏ่ค‡ๆ•ฐใฎ็”ปๅƒใซALTใƒ†ใ‚ญใ‚นใƒˆใŒใ‚ใ‚Šใพใ›ใ‚“ใ€‚" -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr ".jpgใจ.pngใƒ•ใ‚กใ‚คใƒซใฎใฟใซๅฏพๅฟœใ—ใฆใ„ใพใ™" @@ -3283,17 +3312,17 @@ msgstr "้–‹ใ‹ใ‚Œใฆใ„ใพใ™" msgid "Open {name} profile shortcut menu" msgstr "{name}ใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใฎใ‚ทใƒงใƒผใƒˆใ‚ซใƒƒใƒˆใƒกใƒ‹ใƒฅใƒผใ‚’้–‹ใ" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "ใ‚ขใƒใ‚ฟใƒผใƒปใ‚ฏใƒชใ‚จใ‚คใ‚ฟใƒผใ‚’้–‹ใ" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "ไผš่ฉฑใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’้–‹ใ" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "็ตตๆ–‡ๅญ—ใ‚’ๅ…ฅๅŠ›" @@ -3313,11 +3342,11 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’้–‹ใ" msgid "Open muted words and tags settings" msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใƒฏใƒผใƒ‰ใจใ‚ฟใ‚ฐใฎ่จญๅฎšใ‚’้–‹ใ" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "ใƒŠใƒ“ใ‚ฒใƒผใ‚ทใƒงใƒณใ‚’้–‹ใ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "ๆŠ•็จฟใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’้–‹ใ" @@ -3422,8 +3451,8 @@ msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใƒชใ‚ปใƒƒใƒˆใฎใƒ•ใ‚ฉใƒผใƒ ใ‚’้–‹ใ" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใฎ็ทจ้›†็”ป้ขใ‚’้–‹ใ" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใฎ็ทจ้›†็”ป้ขใ‚’้–‹ใ" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3463,8 +3492,8 @@ msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’้–‹ใ" msgid "Option {0} of {numItems}" msgstr "{numItems}ๅ€‹ไธญ{0}็›ฎใฎใ‚ชใƒ—ใ‚ทใƒงใƒณ" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "ใ‚ชใƒ—ใ‚ทใƒงใƒณใจใ—ใฆใ€ไปฅไธ‹ใซ่ฟฝๅŠ ๆƒ…ๅ ฑใ‚’ใ”่จ˜ๅ…ฅใใ ใ•ใ„๏ผš" @@ -3528,15 +3557,15 @@ msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใŒๆ›ดๆ–ฐใ•ใ‚Œใพใ—ใŸ๏ผ" msgid "Pause" msgstr "ไธ€ๆ™‚ๅœๆญข" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "ใƒฆใƒผใ‚ถใƒผ" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "@{0}ใŒใƒ•ใ‚ฉใƒญใƒผไธญใฎใƒฆใƒผใ‚ถใƒผ" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "@{0}ใ‚’ใƒ•ใ‚ฉใƒญใƒผไธญใฎใƒฆใƒผใ‚ถใƒผ" @@ -3610,15 +3639,15 @@ msgstr "Captcha่ช่จผใ‚’ๅฎŒไบ†ใ—ใฆใใ ใ•ใ„ใ€‚" msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "ๅค‰ๆ›ดใ™ใ‚‹ๅ‰ใซใƒกใƒผใƒซใ‚’็ขบ่ชใ—ใฆใใ ใ•ใ„ใ€‚ใ“ใ‚Œใฏใ€ใƒกใƒผใƒซใ‚ขใƒƒใƒ—ใƒ‡ใƒผใƒˆใƒ„ใƒผใƒซใŒ่ฟฝๅŠ ใ•ใ‚Œใฆใ„ใ‚‹้–“ใฎไธ€ๆ™‚็š„ใช่ฆไปถใงใ‚ใ‚Šใ€ใพใ‚‚ใชใๅ‰Š้™คใ•ใ‚Œใพใ™ใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใซใคใ‘ใ‚‹ๅๅ‰ใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„ใ€‚ใ™ในใฆใ‚นใƒšใƒผใ‚นใจใ—ใฆใฏใ„ใ‘ใพใ›ใ‚“ใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "ใ“ใฎใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใซๅ›บๆœ‰ใฎๅๅ‰ใ‚’ๅ…ฅๅŠ›ใ™ใ‚‹ใ‹ใ€ใƒฉใƒณใƒ€ใƒ ใซ็”Ÿๆˆใ•ใ‚ŒใŸๅๅ‰ใ‚’ไฝฟ็”จใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "ใƒŸใƒฅใƒผใƒˆใซใ™ใ‚‹ๆœ‰ๅŠนใชๅ˜่ชžใ€ใ‚ฟใ‚ฐใ€ใƒ•ใƒฌใƒผใ‚บใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„" @@ -3630,7 +3659,7 @@ msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„ใ€‚" msgid "Please enter your password as well:" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚‚ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„๏ผš" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "{0}ใซใ‚ˆใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใ“ใฎใƒฉใƒ™ใƒซใŒ่ชคใ‚Šใงใ‚ใ‚‹ใจๆ€ใ‚ใ‚Œใ‚‹็†็”ฑใ‚’่ชฌๆ˜Žใ—ใฆใใ ใ•ใ„" @@ -3647,7 +3676,7 @@ msgstr "@{0}ใจใ—ใฆใ‚ตใ‚คใƒณใ‚คใƒณใ—ใฆใใ ใ•ใ„" msgid "Please Verify Your Email" msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’็ขบ่ชใ—ใฆใใ ใ•ใ„" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "ใƒชใƒณใ‚ฏใ‚ซใƒผใƒ‰ใŒ่ชญใฟ่พผใพใ‚Œใ‚‹ใพใงใŠๅพ…ใกใใ ใ•ใ„" @@ -3659,28 +3688,28 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "ใƒใƒซใƒŽ" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "ๆŠ•็จฟ" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "ๆŠ•็จฟ" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "{0}ใซใ‚ˆใ‚‹ๆŠ•็จฟ" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "@{0}ใซใ‚ˆใ‚‹ๆŠ•็จฟ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "ๆŠ•็จฟใ‚’ๅ‰Š้™ค" @@ -3719,11 +3748,11 @@ msgstr "ๆŠ•็จฟ" msgid "Posts" msgstr "ๆŠ•็จฟ" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "ๆŠ•็จฟใฏใƒ†ใ‚ญใ‚นใƒˆใ€ใ‚ฟใ‚ฐใ€ใพใŸใฏใใฎไธกๆ–นใซๅŸบใฅใ„ใฆใƒŸใƒฅใƒผใƒˆใงใใพใ™ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "้ž่กจ็คบใฎๆŠ•็จฟ" @@ -3746,6 +3775,10 @@ msgstr "ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐใƒ—ใƒญใƒใ‚คใƒ€ใƒผใ‚’ๅค‰ใˆใ‚‹" msgid "Press to retry" msgstr "ๅ†ๅฎŸ่กŒใ™ใ‚‹" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "ๅ‰ใฎ็”ปๅƒ" @@ -3763,11 +3796,11 @@ msgstr "ใ‚ใชใŸใฎใƒ•ใ‚ฉใƒญใƒผใ‚’ๅ„ชๅ…ˆ" msgid "Privacy" msgstr "ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผ" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผใƒใƒชใ‚ทใƒผ" @@ -3787,8 +3820,8 @@ msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซ" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซ" @@ -3812,16 +3845,16 @@ msgstr "ใƒฆใƒผใ‚ถใƒผใ‚’ไธ€ๆ‹ฌใงใƒŸใƒฅใƒผใƒˆใพใŸใฏใƒ–ใƒญใƒƒใ‚ฏใ™ใ‚‹ใ€ๅ…ฌ้–‹ msgid "Public, shareable lists which can drive feeds." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใจใ—ใฆๅˆฉ็”จใงใใ‚‹ใ€ๅ…ฌ้–‹ใ•ใ‚ŒใŸๅ…ฑๆœ‰ๅฏ่ƒฝใชใƒชใ‚นใƒˆใ€‚" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "ๆŠ•็จฟใ‚’ๅ…ฌ้–‹" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "่ฟ”ไฟกใ‚’ๅ…ฌ้–‹" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -3839,11 +3872,11 @@ msgstr "ๆฏ”็އ" msgid "Reactivate your account" msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๅ†ๆœ‰ๅŠนๅŒ–" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "็†็”ฑ๏ผš" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "ๆคœ็ดขๅฑฅๆญด" @@ -3855,12 +3888,12 @@ msgstr "ๅ†ๆŽฅ็ถš" msgid "Reload conversations" msgstr "ไผš่ฉฑใ‚’ๅ†่ชญใฟ่พผใฟ" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "ๅ‰Š้™ค" @@ -3880,25 +3913,25 @@ msgstr "ใƒใƒŠใƒผใ‚’ๅ‰Š้™ค" msgid "Remove embed" msgstr "ๅŸ‹ใ‚่พผใฟใ‚’ๅ‰Š้™ค" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๅ‰Š้™ค" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™ค" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" @@ -3910,15 +3943,15 @@ msgstr "ใ‚คใƒกใƒผใ‚ธใ‚’ๅ‰Š้™ค" msgid "Remove image preview" msgstr "ใ‚คใƒกใƒผใ‚ธใƒ—ใƒฌใƒ“ใƒฅใƒผใ‚’ๅ‰Š้™ค" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "ใƒชใ‚นใƒˆใ‹ใ‚‰ใƒŸใƒฅใƒผใƒˆใƒฏใƒผใƒ‰ใ‚’ๅ‰Š้™ค" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’ๅ‰Š้™ค" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "ๆคœ็ดขๅฑฅๆญดใ‹ใ‚‰ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’ๅ‰Š้™คใ™ใ‚‹" @@ -3926,12 +3959,12 @@ msgstr "ๆคœ็ดขๅฑฅๆญดใ‹ใ‚‰ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’ๅ‰Š้™คใ™ใ‚‹" msgid "Remove quote" msgstr "ๅผ•็”จใ‚’ๅ‰Š้™ค" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "ใƒชใƒใ‚นใƒˆใ‚’ๅ‰Š้™ค" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "ไฟๅญ˜ใ—ใŸใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๅ‰Š้™ค" @@ -3940,7 +3973,7 @@ msgstr "ไฟๅญ˜ใ—ใŸใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๅ‰Š้™ค" msgid "Removed from list" msgstr "ใƒชใ‚นใƒˆใ‹ใ‚‰ๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ—ใŸ" @@ -3971,7 +4004,7 @@ msgstr "่ฟ”ไฟก" msgid "Replies to this thread are disabled" msgstr "ใ“ใฎใ‚นใƒฌใƒƒใƒ‰ใธใฎ่ฟ”ไฟกใฏใงใใพใ›ใ‚“" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "่ฟ”ไฟก" @@ -4020,8 +4053,8 @@ msgstr "ใƒชใ‚นใƒˆใ‚’ๅ ฑๅ‘Š" msgid "Report message" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ๅ ฑๅ‘Š" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "ๆŠ•็จฟใ‚’ๅ ฑๅ‘Š" @@ -4037,8 +4070,8 @@ msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๅ ฑๅ‘Š" msgid "Report this list" msgstr "ใ“ใฎใƒชใ‚นใƒˆใ‚’ๅ ฑๅ‘Š" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "ใ“ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ๅ ฑๅ‘Š" @@ -4051,9 +4084,9 @@ msgstr "ใ“ใฎๆŠ•็จฟใ‚’ๅ ฑๅ‘Š" msgid "Report this user" msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใ‚’ๅ ฑๅ‘Š" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "ใƒชใƒใ‚นใƒˆ" @@ -4063,7 +4096,7 @@ msgstr "ใƒชใƒใ‚นใƒˆ" msgid "Repost" msgstr "ใƒชใƒใ‚นใƒˆ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4085,7 +4118,7 @@ msgstr "<0><1/>ใŒใƒชใƒใ‚นใƒˆ" msgid "reposted your post" msgstr "ใŒใ‚ใชใŸใฎๆŠ•็จฟใ‚’ใƒชใƒใ‚นใƒˆใ—ใพใ—ใŸ" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "ใ“ใฎๆŠ•็จฟใ‚’ใƒชใƒใ‚นใƒˆ" @@ -4184,8 +4217,8 @@ msgid "Returns to previous page" msgstr "ๅ‰ใฎใƒšใƒผใ‚ธใซๆˆปใ‚‹" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4261,20 +4294,20 @@ msgid "Scroll to top" msgstr "ไธ€็•ชไธŠใพใงใ‚นใ‚ฏใƒญใƒผใƒซ" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "ๆคœ็ดข" @@ -4282,7 +4315,7 @@ msgstr "ๆคœ็ดข" msgid "Search for \"{query}\"" msgstr "ใ€Œ{query}ใ€ใ‚’ๆคœ็ดข" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "ใ€Œ{searchText}ใ€ใ‚’ๆคœ็ดข" @@ -4387,7 +4420,7 @@ msgstr "{numItems}ๅ€‹ไธญ{i}ๅ€‹็›ฎใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’้ธๆŠž" msgid "Select the {emojiName} emoji as your avatar" msgstr "็ตตๆ–‡ๅญ—{emojiName}ใ‚’ใ‚ขใƒใ‚ฟใƒผใจใ—ใฆ้ธๆŠž" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "ๅ ฑๅ‘Šๅ…ˆใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใ‚ตใƒผใƒ“ใ‚นใ‚’้ธใ‚“ใงใใ ใ•ใ„" @@ -4433,8 +4466,8 @@ msgctxt "action" msgid "Send Email" msgstr "ใƒกใƒผใƒซใ‚’้€ไฟก" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใƒใƒƒใ‚ฏใ‚’้€ไฟก" @@ -4443,14 +4476,14 @@ msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใƒใƒƒใ‚ฏใ‚’้€ไฟก" msgid "Send message" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ไฟก" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "ๆŠ•็จฟใ‚’้€ใ‚‹โ€ฆ" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "ๅ ฑๅ‘Šใ‚’้€ไฟก" @@ -4463,8 +4496,8 @@ msgstr "{0}ใซๅ ฑๅ‘Šใ‚’้€ไฟก" msgid "Send verification email" msgstr "็ขบ่ชใƒกใƒผใƒซใ‚’้€ไฟก" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "ใƒ€ใ‚คใƒฌใ‚ฏใƒˆใƒกใƒƒใ‚ปใƒผใ‚ธใง้€ไฟก" @@ -4548,11 +4581,11 @@ msgstr "็”ปๅƒใฎใ‚ขใ‚นใƒšใ‚ฏใƒˆๆฏ”ใ‚’็ธฆ้•ทใซ่จญๅฎš" msgid "Sets image aspect ratio to wide" msgstr "็”ปๅƒใฎใ‚ขใ‚นใƒšใ‚ฏใƒˆๆฏ”ใ‚’ใƒฏใ‚คใƒ‰ใซ่จญๅฎš" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "่จญๅฎš" @@ -4571,8 +4604,8 @@ msgstr "ๅ…ฑๆœ‰" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4587,7 +4620,7 @@ msgid "Share a fun fact!" msgstr "้ข็™ฝใ„ใ“ใจใ‚’ใ‚ทใ‚งใ‚ขใ—ใฆ๏ผ" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "ใจใซใ‹ใๅ…ฑๆœ‰" @@ -4635,7 +4668,7 @@ msgstr "ใƒใƒƒใ‚ธใ‚’่กจ็คบ" msgid "Show badge and filter from feeds" msgstr "ใƒใƒƒใ‚ธใฎ่กจ็คบใจใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ใฎใƒ•ใ‚ฃใƒซใ‚ฟใƒชใƒณใ‚ฐ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "{0}ใซไผผใŸใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผๅ€™่ฃœใ‚’่กจ็คบ" @@ -4643,19 +4676,19 @@ msgstr "{0}ใซไผผใŸใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผๅ€™่ฃœใ‚’่กจ็คบ" msgid "Show hidden replies" msgstr "้š ใ‚Œใฆใ„ใ‚‹่ฟ”ไฟกใ‚’่กจ็คบ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "ใ“ใฎใ‚ˆใ†ใชๆŠ•็จฟใฎ่กจ็คบใ‚’ๆธ›ใ‚‰ใ™" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "ใ•ใ‚‰ใซ่กจ็คบ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "ใ“ใฎใ‚ˆใ†ใชๆŠ•็จฟใฎ่กจ็คบใ‚’ๅข—ใ‚„ใ™" @@ -4712,9 +4745,9 @@ msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ๅ†…ใฎ{0}ใ‹ใ‚‰ใฎๆŠ•็จฟใ‚’่กจ็คบใ—ใพใ™" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -4745,9 +4778,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -4788,7 +4821,7 @@ msgstr "ใ‚ฝใƒ•ใƒˆใ‚ฆใ‚งใ‚ข้–‹็™บ" msgid "Some people can reply" msgstr "ไธ€้ƒจใฎไบบใŒ่ฟ”ไฟกๅฏ่ƒฝ" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "ไฝ•ใ‚‰ใ‹ใฎๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸ" @@ -4816,7 +4849,7 @@ msgstr "่ฟ”ไฟกใ‚’ไธฆใณๆ›ฟใˆใ‚‹" msgid "Sort replies to the same post by:" msgstr "ๆฌกใฎๆ–นๆณ•ใงๅŒใ˜ๆŠ•็จฟใธใฎ่ฟ”ไฟกใ‚’ไธฆใณๆ›ฟใˆใพใ™ใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "ใ‚ฝใƒผใ‚น๏ผš<0>{0}" @@ -4861,13 +4894,13 @@ msgstr "ใ‚นใƒ†ใƒƒใƒ— {0} / {1}" msgid "Storage cleared, you need to restart the app now." msgstr "ใ‚นใƒˆใƒฌใƒผใ‚ธใŒใ‚ฏใƒชใ‚ขใ•ใ‚ŒใŸใŸใ‚ใ€ไปŠใ™ใใ‚ขใƒ—ใƒชใ‚’ๅ†่ตทๅ‹•ใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "ใ‚นใƒˆใƒผใƒชใƒผใƒ–ใƒƒใ‚ฏ" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -4893,7 +4926,7 @@ msgstr "ใ“ใฎใƒฉใƒ™ใƒฉใƒผใ‚’็™ป้Œฒ" msgid "Subscribe to this list" msgstr "ใ“ใฎใƒชใ‚นใƒˆใซ็™ป้Œฒ" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผ" @@ -4905,7 +4938,7 @@ msgstr "ใ‚ใชใŸใธใฎใŠใ™ใ™ใ‚" msgid "Suggestive" msgstr "ใใ‚ใฉใ„" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -4932,7 +4965,7 @@ msgstr "ใ‚ทใ‚นใƒ†ใƒ " msgid "System log" msgstr "ใ‚ทใ‚นใƒ†ใƒ ใƒญใ‚ฐ" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "ใ‚ฟใ‚ฐ" @@ -4960,11 +4993,11 @@ msgstr "ใ‚ธใƒงใƒผใ‚ฏใ‚’่จ€ใฃใฆ๏ผ" msgid "Terms" msgstr "ๆกไปถ" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "ๅˆฉ็”จ่ฆ็ด„" @@ -4974,17 +5007,17 @@ msgstr "ๅˆฉ็”จ่ฆ็ด„" msgid "Terms used violate community standards" msgstr "ไฝฟ็”จใ•ใ‚Œใฆใ„ใ‚‹็”จ่ชžใŒใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃๅŸบๆบ–ใซ้•ๅใ—ใฆใ„ใ‚‹" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "ใƒ†ใ‚ญใ‚นใƒˆ" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "ใƒ†ใ‚ญใ‚นใƒˆใฎๅ…ฅๅŠ›ใƒ•ใ‚ฃใƒผใƒซใƒ‰" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "ใ‚ใ‚ŠใŒใจใ†ใ”ใ–ใ„ใพใ™ใ€‚ใ‚ใชใŸใฎๅ ฑๅ‘Šใฏ้€ไฟกใ•ใ‚Œใพใ—ใŸใ€‚" @@ -4996,7 +5029,7 @@ msgstr "ใใฎๅ†…ๅฎนใฏไปฅไธ‹ใฎ้€šใ‚Šใงใ™๏ผš" msgid "That handle is already taken." msgstr "ใใฎใƒใƒณใƒ‰ใƒซใฏใ™ใงใซไฝฟ็”จใ•ใ‚Œใฆใ„ใพใ™ใ€‚" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "ใ“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏใ€ใƒ–ใƒญใƒƒใ‚ฏ่งฃ้™คๅพŒใซใ‚ใชใŸใจใ‚„ใ‚Šๅ–ใ‚Šใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚" @@ -5013,11 +5046,11 @@ msgstr "่‘—ไฝœๆจฉใƒใƒชใ‚ทใƒผใฏ<0/>ใซ็งปๅ‹•ใ—ใพใ—ใŸ" msgid "The feed has been replaced with Discover." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฏDiscoverใจ็ฝฎใๆ›ใˆใ‚‰ใ‚Œใพใ—ใŸใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "ไปฅไธ‹ใฎใƒฉใƒ™ใƒซใŒใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใซ้ฉ็”จใ•ใ‚Œใพใ—ใŸใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "ไปฅไธ‹ใฎใƒฉใƒ™ใƒซใŒใ‚ใชใŸใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใซ้ฉ็”จใ•ใ‚Œใพใ—ใŸใ€‚" @@ -5051,7 +5084,7 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎ็„กๅŠนๅŒ–ใซๆœŸ้™ใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚ใ„ใคใงใ‚‚ๆˆป msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "ใ‚ตใƒผใƒใƒผใธใฎๅ•ใ„ๅˆใ‚ใ›ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆใธใฎๆŽฅ็ถšใ‚’็ขบ่ชใฎไธŠใ€ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎๅ‰Š้™คไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆใธใฎๆŽฅ็ถšใ‚’็ขบ่ชใฎไธŠใ€ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" @@ -5075,12 +5108,12 @@ msgstr "TenorใธใฎๆŽฅ็ถšไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚" msgid "There was an issue contacting the server" msgstr "ใ‚ตใƒผใƒใƒผใธใฎๅ•ใ„ๅˆใ‚ใ›ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "ใ‚ตใƒผใƒใƒผใธใฎๅ•ใ„ๅˆใ‚ใ›ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸ" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "้€š็Ÿฅใฎๅ–ๅพ—ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ™ใซใฏใ“ใกใ‚‰ใ‚’ใ‚ฟใƒƒใƒ—ใ—ใฆใใ ใ•ใ„ใ€‚" @@ -5097,8 +5130,8 @@ msgstr "ใƒชใ‚นใƒˆใฎๅ–ๅพ—ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ™ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "ใƒชใ‚นใƒˆใฎๅ–ๅพ—ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ™ใซใฏใ“ใกใ‚‰ใ‚’ใ‚ฟใƒƒใƒ—ใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "ๅ ฑๅ‘Šใฎ้€ไฟกใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆใฎๆŽฅ็ถšใ‚’็ขบ่ชใ—ใฆใใ ใ•ใ„ใ€‚" @@ -5106,9 +5139,9 @@ msgstr "ๅ ฑๅ‘Šใฎ้€ไฟกใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆใฎ msgid "There was an issue with fetching your app passwords" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅ–ๅพ—ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5149,7 +5182,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "ใ“ใฎ็”ณใ—็ซ‹ใฆใฏ<0>{0}ใซ้€ใ‚‰ใ‚Œใพใ™ใ€‚" @@ -5178,28 +5211,37 @@ msgstr "ใ“ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใฏ{0}ใซใ‚ˆใฃใฆใƒ›ใ‚นใƒˆใ•ใ‚Œใฆใ„ใพใ™ใ€‚ๅค– msgid "This content is not available because one of the users involved has blocked the other." msgstr "ใ“ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใฏ้–ขไฟ‚ใ™ใ‚‹ใƒฆใƒผใ‚ถใƒผใฎไธ€ๆ–นใŒไป–ๆ–นใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใ‚‹ใŸใ‚ใ€ๅˆฉ็”จใงใใพใ›ใ‚“ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "ใ“ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใฏBlueskyใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใŒใชใ„ใจ้–ฒ่ฆงใงใใพใ›ใ‚“ใ€‚" +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "ใ“ใฎๆฉŸ่ƒฝใฏใƒ™ใƒผใ‚ฟ็‰ˆใงใ™ใ€‚ใƒชใƒใ‚ธใƒˆใƒชใฎใ‚จใ‚ฏใ‚นใƒใƒผใƒˆใฎ่ฉณ็ดฐใซใคใ„ใฆใฏใ€<0>ใ“ใฎใƒ–ใƒญใ‚ฐๆŠ•็จฟใ‚’ๅ‚็…งใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "็พๅœจใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใซใฏใ‚ขใ‚ฏใ‚ปใ‚นใŒ้›†ไธญใ—ใฆใŠใ‚Šใ€ไธ€ๆ™‚็š„ใซใ”ๅˆฉ็”จใ„ใŸใ ใ‘ใพใ›ใ‚“ใ€‚ๆ™‚้–“ใ‚’ใŠใ„ใฆใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™๏ผ" +#~ msgid "This feed is empty!" +#~ 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 "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™๏ผใ‚‚ใฃใจๅคšใใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ•ใ‚ฉใƒญใƒผใ™ใ‚‹ใ‹ใ€่จ€่ชžใฎ่จญๅฎšใ‚’่ชฟๆ•ดใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚‹ใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚" +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏใ‚‚ใฏใ‚„ใ‚ชใƒณใƒฉใ‚คใƒณใงใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚ไปฃใ‚ใ‚Šใซ<0>Discoverใ‚’่กจ็คบใ—ใฆใ„ใพใ™ใ€‚" @@ -5220,7 +5262,7 @@ msgstr "<0>{0}ใซใ‚ˆใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใƒฉใƒ™ใƒซใงใ™ใ€‚" msgid "This label was applied by the author." msgstr "ๆŠ•็จฟ่€…ใซใ‚ˆใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใƒฉใƒ™ใƒซใงใ™ใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "ใ‚ใชใŸใซใ‚ˆใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใƒฉใƒ™ใƒซใงใ™ใ€‚" @@ -5240,20 +5282,20 @@ msgstr "ใ“ใฎใƒชใ‚นใƒˆใฏ็ฉบใงใ™๏ผ" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "ใ“ใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎใ‚ตใƒผใƒ“ใ‚นใฏใ”ๅˆฉ็”จใงใใพใ›ใ‚“ใ€‚่ฉณ็ดฐใฏไปฅไธ‹ใ‚’ใ”่ฆงใใ ใ•ใ„ใ€‚ใ“ใฎๅ•้กŒใŒ่งฃๆฑบใ—ใชใ„ๅ ดๅˆใฏใ€ใ‚ตใƒใƒผใƒˆใธใŠๅ•ใ„ๅˆใ‚ใ›ใใ ใ•ใ„ใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "ใ“ใฎๅๅ‰ใฏใ™ใงใซไฝฟ็”จไธญใงใ™" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "ใ“ใฎๆŠ•็จฟใฏๅ‰Š้™คใ•ใ‚Œใพใ—ใŸใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "ใ“ใฎๆŠ•็จฟใฏใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰้ž่กจ็คบใซใชใ‚Šใพใ™ใ€‚" @@ -5298,7 +5340,7 @@ msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใƒŸใƒฅใƒผใƒˆใ—ใŸ<0>{0}ใƒชใ‚นใƒˆใซๅซใพใ‚Œ msgid "This user isn't following anyone." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏ่ชฐใ‚‚ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ›ใ‚“ใ€‚" -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใƒฏใƒผใƒ‰ใ‹ใ‚‰{0}ใŒๅ‰Š้™คใ•ใ‚Œใพใ™ใ€‚ใ‚ใจใงใ„ใคใงใ‚‚ๆˆปใ™ใ“ใจใŒใงใใพใ™ใ€‚" @@ -5315,7 +5357,7 @@ msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎ่จญๅฎš" msgid "Threaded Mode" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใƒขใƒผใƒ‰" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎ่จญๅฎš" @@ -5331,7 +5373,7 @@ msgstr "ไผš่ฉฑใ‚’ๅ ฑๅ‘Šใ™ใ‚‹ใซใฏใ€ไผš่ฉฑใฎ็”ป้ขใ‹ใ‚‰ใƒกใƒƒใ‚ปใƒผใ‚ธใฎใ† msgid "To whom would you like to send this report?" msgstr "ใ“ใฎๅ ฑๅ‘Šใ‚’่ชฐใซ้€ใ‚ŠใŸใ„ใงใ™ใ‹๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใƒฏใƒผใƒ‰ใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’ๅˆ‡ใ‚Šๆ›ฟใˆใพใ™ใ€‚" @@ -5344,7 +5386,7 @@ msgid "Toggle to enable or disable adult content" msgstr "ๆˆไบบๅ‘ใ‘ใ‚ณใƒณใƒ†ใƒณใƒ„ใฎๆœ‰ๅŠนใ‚‚ใ—ใใฏ็„กๅŠนใฎๅˆ‡ใ‚Šๆ›ฟใˆ" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "ใƒˆใƒƒใƒ—" @@ -5354,10 +5396,10 @@ msgstr "ๅค‰ๆ›" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "็ฟป่จณ" @@ -5399,14 +5441,14 @@ msgstr "ใ‚ใชใŸใฎใ‚ตใƒผใƒ“ใ‚นใซๆŽฅ็ถšใงใใพใ›ใ‚“ใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆ #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™ค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™ค" @@ -5421,12 +5463,12 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™ค" msgid "Unblock Account" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™ค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™คใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5441,7 +5483,7 @@ msgstr "ใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™ค" msgid "Unfollow" msgstr "ใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™ค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "{0}ใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™ค" @@ -5476,8 +5518,8 @@ msgstr "{displayTag}ใฎใ™ในใฆใฎๆŠ•็จฟใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™ค" msgid "Unmute conversation" msgstr "ไผš่ฉฑใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™ค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™ค" @@ -5523,7 +5565,7 @@ msgstr "{handle}ใซๆ›ดๆ–ฐ" msgid "Updating..." msgstr "ๆ›ดๆ–ฐไธญโ€ฆ" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "ไปฃใ‚ใ‚Šใซๅ†™็œŸใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰" @@ -5584,7 +5626,7 @@ msgstr "ใŠใ™ใ™ใ‚ใ‚’ไฝฟใ†" msgid "Use the DNS panel" msgstr "DNSใƒ‘ใƒใƒซใ‚’ไฝฟ็”จ" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." msgstr "ใ“ใฎใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใจใƒใƒณใƒ‰ใƒซใ‚’ไฝฟใฃใฆไป–ใฎใ‚ขใƒ—ใƒชใซใ‚ตใ‚คใƒณใ‚คใƒณใ—ใพใ™ใ€‚" @@ -5743,11 +5785,11 @@ msgstr "ใ“ใ‚Œใ‚‰ใฎใƒฉใƒ™ใƒซใซ้–ขใ™ใ‚‹ๆƒ…ๅ ฑใ‚’่ฆ‹ใ‚‹" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’่กจ็คบ" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "ใ‚ขใƒใ‚ฟใƒผใ‚’่กจ็คบ" @@ -5759,6 +5801,11 @@ msgstr "@{0}ใซใ‚ˆใฃใฆๆไพ›ใ•ใ‚Œใ‚‹ใƒฉใƒ™ใƒชใƒณใ‚ฐใ‚ตใƒผใƒ“ใ‚นใ‚’่ฆ‹ใ‚‹" msgid "View users who like this feed" msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใซใ„ใ„ใญใ—ใŸใƒฆใƒผใ‚ถใƒผใ‚’่ฆ‹ใ‚‹" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -5782,7 +5829,7 @@ msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใฎ่ญฆๅ‘Šใจใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ใฎใƒ•ใ‚ฃใƒซใ‚ฟใƒชใƒณใ‚ฐ" msgid "We couldn't find any results for that hashtag." msgstr "ใใฎใƒใƒƒใ‚ทใƒฅใ‚ฟใ‚ฐใฎๆคœ็ดข็ตๆžœใฏ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "ใ“ใฎไผš่ฉฑใ‚’่ชญใฟ่พผใ‚ใพใ›ใ‚“ใงใ—ใŸ" @@ -5798,7 +5845,7 @@ msgstr "็ด ๆ•ตใชใฒใจใจใใ‚’ใŠ้Žใ”ใ—ใใ ใ•ใ„ใ€‚่ฆšใˆใฆใŠใ„ใฆใ msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "ใ‚ใชใŸใฎใƒ•ใ‚ฉใƒญใƒผไธญใฎใƒฆใƒผใ‚ถใƒผใฎๆŠ•็จฟใ‚’่ชญใฟ็ต‚ใ‚ใ‚Šใพใ—ใŸใ€‚ใƒ•ใ‚ฃใƒผใƒ‰<0/>ๅ†…ใฎๆœ€ๆ–ฐใฎๆŠ•็จฟใ‚’่กจ็คบใ—ใพใ™ใ€‚" -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "ๆŠ•็จฟใŒ่กจ็คบใ•ใ‚Œใชใใชใ‚‹ๅฏ่ƒฝๆ€งใŒใ‚ใ‚‹ใŸใ‚ใ€ๅคšใใฎๆŠ•็จฟใซไฝฟใ‚ใ‚Œใ‚‹ไธ€่ˆฌ็š„ใชใƒฏใƒผใƒ‰ใฏ้ฟใ‘ใ‚‹ใ“ใจใ‚’ใŠใ™ใ™ใ‚ใ—ใพใ™ใ€‚" @@ -5834,14 +5881,18 @@ msgstr "็งใŸใกใฏใ‚ใชใŸใŒๅ‚ๅŠ ใ—ใฆใใ‚Œใ‚‹ใ“ใจใ‚’ใจใฆใ‚‚ๆฅฝใ—ใฟ msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€ใ“ใฎใƒชใ‚นใƒˆใ‚’่งฃๆฑบใงใใพใ›ใ‚“ใงใ—ใŸใ€‚ใใ‚Œใงใ‚‚ใ“ใฎๅ•้กŒใŒ่งฃๆฑบใ—ใชใ„ๅ ดๅˆใฏใ€ไฝœๆˆ่€…ใฎ@{handleOrDid}ใพใงใŠๅ•ใ„ๅˆใ‚ใ›ใใ ใ•ใ„ใ€‚" -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€็พๅœจใƒŸใƒฅใƒผใƒˆใ•ใ‚ŒใŸใƒฏใƒผใƒ‰ใ‚’่ชญใฟ่พผใ‚€ใ“ใจใŒใงใใพใ›ใ‚“ใงใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -5861,7 +5912,7 @@ msgstr "ใชใซใซ่ˆˆๅ‘ณใŒใ‚ใ‚Šใพใ™ใ‹๏ผŸ" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "ๆœ€่ฟ‘ใฉใ†๏ผŸ" @@ -5882,7 +5933,7 @@ msgstr "่ชฐใŒใ‚ใชใŸใธใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ใ‚Œใ‚‹ใ‹๏ผŸ" msgid "Who can reply" msgstr "่ฟ”ไฟกใงใใ‚‹ใƒฆใƒผใ‚ถใƒผ" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "ใŠใฃใจ๏ผ" @@ -5920,11 +5971,11 @@ msgstr "ใƒฏใ‚คใƒ‰" msgid "Write a message" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ๆ›ธใ" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "ๆŠ•็จฟใ‚’ๆ›ธใ" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "่ฟ”ไฟกใ‚’ๆ›ธใ" @@ -5964,8 +6015,8 @@ msgstr "ใ‚ใชใŸใฏไธฆใ‚“ใงใ„ใพใ™ใ€‚" msgid "You are not following anyone." msgstr "ใ‚ใชใŸใฏใพใ ใ ใ‚Œใ‚‚ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ›ใ‚“ใ€‚" -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "ใพใŸใ€ใ‚ใชใŸใฏใƒ•ใ‚ฉใƒญใƒผใ™ในใๆ–ฐใ—ใ„ใ‚ซใ‚นใ‚ฟใƒ ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็™บ่ฆ‹ใงใใพใ™ใ€‚" @@ -5994,6 +6045,10 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๅ†ๆœ‰ๅŠนๅŒ–ใ—ใฆใƒญใ‚ฐใ‚คใƒณใ—็ถšใ‘ใ‚‹ใ“ใจใŒใง msgid "You do not have any followers." msgstr "ใ‚ใชใŸใฏใพใ ใ ใ‚Œใ‚‚ใƒ•ใ‚ฉใƒญใƒฏใƒผใŒใ„ใพใ›ใ‚“ใ€‚" +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "ใพใ ๆ‹›ๅพ…ใ‚ณใƒผใƒ‰ใŒใ‚ใ‚Šใพใ›ใ‚“๏ผBlueskyใ‚’ใ‚‚ใ†ใ—ใฐใ‚‰ใๅˆฉ็”จใ—ใŸใ‚‰ใŠ้€ใ‚Šใ—ใพใ™ใ€‚" @@ -6073,15 +6128,15 @@ msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใฆใ„ใ‚‹ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏใพใ ใ‚ใ‚Šใพใ›ใ‚“ใ€‚ใ‚ขใ‚ซ msgid "You have reached the end" msgstr "ๆœ€ๅพŒใพใงๅˆฐ้”ใ—ใพใ—ใŸ" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "ใพใ ใƒฏใƒผใƒ‰ใ‚„ใ‚ฟใ‚ฐใ‚’ใƒŸใƒฅใƒผใƒˆใ—ใฆใ„ใพใ›ใ‚“" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "้–“้•ใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใจๆ€ใ†ใฎใงใ‚ใ‚Œใฐใ€่‡ชๅทฑ็”ณๅ‘Šใงใฏใชใ„ใƒฉใƒ™ใƒซใชใ‚‰ใฐ็•ฐ่ญฐ็”ณใ—็ซ‹ใฆใŒใงใใพใ™ใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "ใ“ใ‚Œใ‚‰ใฎใƒฉใƒ™ใƒซใŒ่ชคใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใจๆ€ใฃใŸๅ ดๅˆใฏใ€็•ฐ่ญฐ็”ณใ—็ซ‹ใฆใ‚’่กŒใ†ใ“ใจใŒใงใใพใ™ใ€‚" @@ -6089,7 +6144,7 @@ msgstr "ใ“ใ‚Œใ‚‰ใฎใƒฉใƒ™ใƒซใŒ่ชคใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใจๆ€ใฃใŸๅ ดๅˆใฏใ€ msgid "You must be 13 years of age or older to sign up." msgstr "ใ‚ตใ‚คใƒณใ‚ขใƒƒใƒ—ใ™ใ‚‹ใซใฏใ€13ๆญณไปฅไธŠใงใ‚ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "ๅ ฑๅ‘Šใ‚’ใ™ใ‚‹ใซใฏๅฐ‘ใชใใจใ‚‚๏ผ‘ใคใฎใƒฉใƒ™ใƒฉใƒผใ‚’้ธๆŠžใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™" @@ -6097,11 +6152,11 @@ msgstr "ๅ ฑๅ‘Šใ‚’ใ™ใ‚‹ใซใฏๅฐ‘ใชใใจใ‚‚๏ผ‘ใคใฎใƒฉใƒ™ใƒฉใƒผใ‚’้ธๆŠžใ™ใ‚‹ msgid "You previously deactivated @{0}." msgstr "ไปฅๅ‰ใ€ใ‚ใชใŸใฏ@{0}ใ‚’็„กๅŠนๅŒ–ใ—ใพใ—ใŸใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "ใ“ใ‚Œไปฅ้™ใ€ใ“ใฎใ‚นใƒฌใƒƒใƒ‰ใซ้–ขใ™ใ‚‹้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ“ใจใฏใงใใชใใชใ‚Šใพใ™" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "ใ“ใ‚Œไปฅ้™ใ€ใ“ใฎใ‚นใƒฌใƒƒใƒ‰ใซ้–ขใ™ใ‚‹้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ“ใจใŒใงใใพใ™" @@ -6109,15 +6164,15 @@ msgstr "ใ“ใ‚Œไปฅ้™ใ€ใ“ใฎใ‚นใƒฌใƒƒใƒ‰ใซ้–ขใ™ใ‚‹้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ“ใจ msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "ใ€Œใƒชใ‚ปใƒƒใƒˆใ‚ณใƒผใƒ‰ใ€ใŒ่จ˜่ผ‰ใ•ใ‚ŒใŸใƒกใƒผใƒซใŒๅฑŠใใพใ™ใ€‚ใ“ใ“ใซใ‚ณใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›ใ—ใ€ๆ–ฐใ—ใ„ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›ใ—ใพใ™ใ€‚" -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "ใ‚ใชใŸ๏ผš {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "ใ‚ใชใŸ๏ผš {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "ใ‚ใชใŸ๏ผš {short}" @@ -6141,7 +6196,7 @@ msgstr "ๆบ–ๅ‚™ใŒใงใใพใ—ใŸ๏ผ" msgid "You've chosen to hide a word or tag within this post." msgstr "ใ“ใฎๆŠ•็จฟใงใƒฏใƒผใƒ‰ใพใŸใฏใ‚ฟใ‚ฐใ‚’้š ใ™ใ“ใจใ‚’้ธๆŠžใ—ใพใ—ใŸใ€‚" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฏใ“ใ“ใพใงใงใ™๏ผใ‚‚ใฃใจใƒ•ใ‚ฉใƒญใƒผใ™ใ‚‹ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่ฆ‹ใคใ‘ใพใ—ใ‚‡ใ†ใ€‚" @@ -6183,7 +6238,7 @@ msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใฏๆ›ดๆ–ฐใ•ใ‚Œใพใ—ใŸใŒใ€็ขบ่ชใ•ใ‚Œใฆใ„ใพ msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใฏใพใ ็ขบ่ชใ•ใ‚Œใฆใ„ใพใ›ใ‚“ใ€‚ใ“ใ‚Œใฏใ€ๅฝ“็คพใŒๆŽจๅฅจใ™ใ‚‹้‡่ฆใชใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใ‚นใƒ†ใƒƒใƒ—ใงใ™ใ€‚" -#: src/view/com/posts/FollowingEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Followingใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™๏ผใ‚‚ใฃใจๅคšใใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ€่ฟ‘ๆณใ‚’็ขบ่ชใ—ใพใ—ใ‚‡ใ†ใ€‚" @@ -6195,7 +6250,7 @@ msgstr "ใƒ•ใƒซใƒใƒณใƒ‰ใƒซใฏ" msgid "Your full handle will be <0>@{0}" msgstr "ใƒ•ใƒซใƒใƒณใƒ‰ใƒซใฏ<0>@{0}ใซใชใ‚Šใพใ™" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใƒฏใƒผใƒ‰" @@ -6203,7 +6258,7 @@ msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใƒฏใƒผใƒ‰" msgid "Your password has been changed successfully!" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅค‰ๆ›ดใŒๅฎŒไบ†ใ—ใพใ—ใŸ๏ผ" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "ๆŠ•็จฟใ‚’ๅ…ฌ้–‹ใ—ใพใ—ใŸ" @@ -6219,11 +6274,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "่ฟ”ไฟกใ‚’ๅ…ฌ้–‹ใ—ใพใ—ใŸ" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "ใ‚ใชใŸใฎๅ ฑๅ‘ŠใฏBluesky Moderation Serviceใซ้€ใ‚‰ใ‚Œใพใ™" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 7d5186c7f7..ea3088188c 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: quiple, lens0021, HaruChanHeart, hazzzi, heartade\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "(์ž„๋ฒ ๋“œ ์ฝ˜ํ…์ธ  ํฌํ•จ)" @@ -37,6 +37,10 @@ msgstr "์ด ์ฝ˜ํ…์ธ ์— {0, plural, other {#}}๊ฐœ์˜ ๋ผ๋ฒจ์ด ์ง€์ •๋จ" msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {#}}๊ฐœ" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -51,7 +55,7 @@ msgstr "ํŒ”๋กœ์šฐ ์ค‘" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "์ข‹์•„์š” ({0, plural, other {#}}๊ฐœ)" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "์ข‹์•„์š”" @@ -67,7 +71,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "๋‹ต๊ธ€ ({0, plural, other {#}}๊ฐœ)" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "์žฌ๊ฒŒ์‹œ" @@ -106,7 +110,7 @@ msgstr "{handle} ๋‹˜์—๊ฒŒ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#}}๋ช…์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„ํ•จ" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}๊ฐœ ์ฝ์ง€ ์•Š์Œ" @@ -138,12 +142,12 @@ msgstr "โš ์ž˜๋ชป๋œ ํ•ธ๋“ค" msgid "2FA Confirmation" msgstr "2๋‹จ๊ณ„ ์ธ์ฆ" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "ํƒ์ƒ‰ ๋งํฌ ๋ฐ ์„ค์ •์œผ๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "ํ”„๋กœํ•„ ๋ฐ ๊ธฐํƒ€ ํƒ์ƒ‰ ๋งํฌ๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค" @@ -156,7 +160,7 @@ msgstr "์ ‘๊ทผ์„ฑ" msgid "Accessibility settings" msgstr "์ ‘๊ทผ์„ฑ ์„ค์ •" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "์ ‘๊ทผ์„ฑ ์„ค์ •" @@ -196,7 +200,7 @@ msgstr "๊ณ„์ • ์˜ต์…˜" msgid "Account removed from quick access" msgstr "๋น ๋ฅธ ์•ก์„ธ์Šค์—์„œ ๊ณ„์ • ์ œ๊ฑฐ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "๊ณ„์ • ์ฐจ๋‹จ ํ•ด์ œ๋จ" @@ -209,7 +213,7 @@ msgstr "๊ณ„์ • ์–ธํŒ”๋กœ์šฐํ•จ" msgid "Account unmuted" msgstr "๊ณ„์ • ์–ธ๋ฎคํŠธ๋จ" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -231,9 +235,9 @@ msgstr "์ด ๋ฆฌ์ŠคํŠธ์— ์‚ฌ์šฉ์ž ์ถ”๊ฐ€" msgid "Add account" msgstr "๊ณ„์ • ์ถ”๊ฐ€" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -246,15 +250,15 @@ msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ ์ถ”๊ฐ€" msgid "Add App Password" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์ถ”๊ฐ€" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "๊ตฌ์„ฑ ์„ค์ •์— ๋ฎคํŠธ ๋‹จ์–ด ์ถ”๊ฐ€" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "๋ฎคํŠธํ•  ๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ์ถ”๊ฐ€" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "์ถ”์ฒœ ํ”ผ๋“œ ์ถ”๊ฐ€" @@ -302,12 +306,12 @@ msgstr "์„ฑ์ธ ์ฝ˜ํ…์ธ ๊ฐ€ ๋น„ํ™œ์„ฑํ™”๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค." msgid "Advanced" msgstr "๊ณ ๊ธ‰" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "์ €์žฅํ•œ ๋ชจ๋“  ํ”ผ๋“œ๋ฅผ ํ•œ ๊ณณ์—์„œ ํ™•์ธํ•˜์„ธ์š”." -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€ ์ ‘๊ทผ ํ—ˆ์šฉ" @@ -325,13 +329,13 @@ msgstr "์ด๋ฏธ ์ฝ”๋“œ๊ฐ€ ์žˆ๋‚˜์š”?" msgid "Already signed in as @{0}" msgstr "์ด๋ฏธ @{0}(์œผ)๋กœ ๋กœ๊ทธ์ธํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -375,6 +379,7 @@ msgstr "๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." msgid "an unknown error occurred" msgstr "์•Œ ์ˆ˜ ์—†๋Š” ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -400,11 +405,11 @@ msgstr "์•ฑ ์–ธ์–ด" msgid "App password deleted" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์‚ญ์ œ๋จ" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์ด๋ฆ„์—๋Š” ๋ฌธ์ž, ์ˆซ์ž, ๊ณต๋ฐฑ, ๋Œ€์‹œ, ๋ฐ‘์ค„๋งŒ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์ด๋ฆ„์€ 4์ž ์ด์ƒ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -412,22 +417,22 @@ msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์ด๋ฆ„์€ 4์ž ์ด์ƒ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." msgid "App password settings" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์„ค์ •" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "์ด์˜์‹ ์ฒญ" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "\"{0}\" ๋ผ๋ฒจ ์ด์˜์‹ ์ฒญ" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "์ด์˜์‹ ์ฒญ ์ œ์ถœํ•จ" @@ -444,7 +449,7 @@ msgid "Appearance" msgstr "๋ชจ์–‘" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "๊ธฐ๋ณธ ์ถ”์ฒœ ํ”ผ๋“œ ์ ์šฉํ•˜๊ธฐ" @@ -464,11 +469,11 @@ msgstr "์ •๋ง ์ด ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐ€์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ? ๋‚˜์—๊ฒŒ ๋ณด์ด๋Š” ๋ฉ” msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ํ”ผ๋“œ์—์„œ {0}์„(๋ฅผ) ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "์ด ์ดˆ์•ˆ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "์ •๋ง์ธ๊ฐ€์š”?" @@ -489,8 +494,8 @@ msgid "At least 3 characters" msgstr "3์ž ์ด์ƒ" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -503,7 +508,7 @@ msgstr "3์ž ์ด์ƒ" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "๋’ค๋กœ" @@ -519,7 +524,7 @@ msgstr "์ƒ๋…„์›”์ผ" msgid "Birthday:" msgstr "์ƒ๋…„์›”์ผ:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "์ฐจ๋‹จ" @@ -559,7 +564,7 @@ msgstr "์ฐจ๋‹จ๋จ" msgid "Blocked accounts" msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •" @@ -572,7 +577,7 @@ msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ํ•˜๊ฑฐ๋‚˜ ๊ธฐํƒ€ ๋‹ค๋ฅธ ๋ฐฉ์‹์œผ๋กœ ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ฐจ๋‹จํ•œ ๊ณ„์ •์˜ ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†์œผ๋ฉฐ ํ•ด๋‹น ๊ณ„์ •๋„ ๋‚ด ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThread.tsx:362 +#: src/view/com/post-thread/PostThread.tsx:363 msgid "Blocked post." msgstr "์ฐจ๋‹จ๋œ ๊ฒŒ์‹œ๋ฌผ." @@ -617,8 +622,8 @@ msgstr "์ด๋ฏธ์ง€ ํ๋ฆฌ๊ฒŒ ๋ฐ ํ”ผ๋“œ์—์„œ ํ•„ํ„ฐ๋ง" msgid "Books" msgstr "์ฑ…" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "๋‹ค๋ฅธ ํ”ผ๋“œ ํƒ์ƒ‰ํ•˜๊ธฐ" @@ -626,7 +631,7 @@ msgstr "๋‹ค๋ฅธ ํ”ผ๋“œ ํƒ์ƒ‰ํ•˜๊ธฐ" msgid "Business" msgstr "๋น„์ฆˆ๋‹ˆ์Šค" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "โ€” ๋‹˜์ด ๋งŒ๋“ฆ" @@ -634,7 +639,7 @@ msgstr "โ€” ๋‹˜์ด ๋งŒ๋“ฆ" msgid "By {0}" msgstr "{0} ๋‹˜์ด ๋งŒ๋“ฆ" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "<0/> ๋‹˜์ด ๋งŒ๋“ฆ" @@ -642,7 +647,7 @@ msgstr "<0/> ๋‹˜์ด ๋งŒ๋“ฆ" msgid "By creating an account you agree to the {els}." msgstr "๊ณ„์ •์„ ๋งŒ๋“ค๋ฉด {els}์— ๋™์˜ํ•˜๋Š” ๊ฒƒ์ž…๋‹ˆ๋‹ค." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "๋‚ด๊ฐ€ ๋งŒ๋“ฆ" @@ -650,7 +655,7 @@ msgstr "๋‚ด๊ฐ€ ๋งŒ๋“ฆ" msgid "Camera" msgstr "์นด๋ฉ”๋ผ" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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์ž๋ฅผ ๋„˜์ง€ ์•Š์•„์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -659,8 +664,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:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -677,7 +682,7 @@ msgstr "๊ธ€์ž, ์ˆซ์ž, ๊ณต๋ฐฑ, ๋Œ€์‹œ, ๋ฐ‘์ค„๋งŒ ํฌํ•จํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:138 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "์ทจ์†Œ" @@ -762,7 +767,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์–ธ์–ด๋ฅผ {0}(์œผ)๋กœ ๋ณ€๊ฒฝ" msgid "Change Your Email" msgstr "์ด๋ฉ”์ผ ๋ณ€๊ฒฝ" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -774,7 +779,7 @@ msgstr "๋Œ€ํ™” ๋ฎคํŠธ๋จ" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -839,7 +844,7 @@ msgid "Clear all storage data (restart after this)" msgstr "๋ชจ๋“  ์Šคํ† ๋ฆฌ์ง€ ๋ฐ์ดํ„ฐ ์ง€์šฐ๊ธฐ (์ดํ›„ ๋‹ค์‹œ ์‹œ์ž‘)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "๊ฒ€์ƒ‰์–ด ์ง€์šฐ๊ธฐ" @@ -939,7 +944,7 @@ msgstr "ํ•˜๋‹จ ํƒ์ƒ‰ ๋ง‰๋Œ€๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค" msgid "Closes password update alert" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ ์•Œ๋ฆผ์„ ๋‹ซ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ ์ƒ์ž๋ฅผ ๋‹ซ๊ณ  ๊ฒŒ์‹œ๋ฌผ ์ดˆ์•ˆ์„ ์‚ญ์ œํ•ฉ๋‹ˆ๋‹ค" @@ -963,7 +968,7 @@ msgstr "์ฝ”๋ฏธ๋””" msgid "Comics" msgstr "๋งŒํ™”" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "์ปค๋ฎค๋‹ˆํ‹ฐ ๊ฐ€์ด๋“œ๋ผ์ธ" @@ -976,7 +981,7 @@ msgstr "์˜จ๋ณด๋”ฉ ์™„๋ฃŒ ํ›„ ๊ณ„์ • ์‚ฌ์šฉ ์‹œ์ž‘" msgid "Complete the challenge" msgstr "์ฑŒ๋ฆฐ์ง€ ์™„๋ฃŒํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "์ตœ๋Œ€ {MAX_GRAPHEME_LENGTH}์ž ๊ธธ์ด๊นŒ์ง€ ๊ธ€์„ ์ž‘์„ฑํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" @@ -1085,13 +1090,17 @@ msgstr "๊ณ„์†" msgid "Continue as {0} (currently signed in)" msgstr "{0}(์œผ)๋กœ ๊ณ„์†ํ•˜๊ธฐ (ํ˜„์žฌ ๋กœ๊ทธ์ธ)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "๋‹ค์Œ ๋‹จ๊ณ„๋กœ ๊ณ„์†ํ•˜๊ธฐ" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "๋Œ€ํ™” ์‚ญ์ œ๋จ" @@ -1099,7 +1108,7 @@ msgstr "๋Œ€ํ™” ์‚ญ์ œ๋จ" msgid "Cooking" msgstr "์š”๋ฆฌ" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "๋ณต์‚ฌ๋จ" @@ -1109,10 +1118,10 @@ msgid "Copied build version to clipboard" msgstr "๋นŒ๋“œ ๋ฒ„์ „ ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌ๋จ" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌ๋จ" @@ -1120,11 +1129,11 @@ msgstr "ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌ๋จ" msgid "Copied!" msgstr "๋ณต์‚ฌํ–ˆ์Šต๋‹ˆ๋‹ค!" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ณต์‚ฌํ•ฉ๋‹ˆ๋‹ค" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "๋ณต์‚ฌ" @@ -1141,8 +1150,8 @@ msgstr "์ฝ”๋“œ ๋ณต์‚ฌ" msgid "Copy link to list" msgstr "๋ฆฌ์ŠคํŠธ ๋งํฌ ๋ณต์‚ฌ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "๊ฒŒ์‹œ๋ฌผ ๋งํฌ ๋ณต์‚ฌ" @@ -1151,12 +1160,12 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ๋งํฌ ๋ณต์‚ฌ" msgid "Copy message text" msgstr "๋ฉ”์‹œ์ง€ ํ…์ŠคํŠธ ๋ณต์‚ฌ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "๊ฒŒ์‹œ๋ฌผ ํ…์ŠคํŠธ ๋ณต์‚ฌ" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "์ €์ž‘๊ถŒ ์ •์ฑ…" @@ -1199,7 +1208,7 @@ msgstr "๊ณ„์ • ๋งŒ๋“ค๊ธฐ" msgid "Create an avatar instead" msgstr "๋Œ€์‹  ์•„๋ฐ”ํƒ€ ๋งŒ๋“ค๊ธฐ" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ๋งŒ๋“ค๊ธฐ" @@ -1229,7 +1238,7 @@ msgstr "์‚ฌ์šฉ์ž ์ง€์ •" msgid "Custom domain" msgstr "์‚ฌ์šฉ์ž ์ง€์ • ๋„๋ฉ”์ธ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "์ปค๋ฎค๋‹ˆํ‹ฐ์—์„œ ๊ตฌ์ถ•ํ•œ ๋งž์ถค ํ”ผ๋“œ๋Š” ์ƒˆ๋กœ์šด ๊ฒฝํ—˜์„ ์ œ๊ณตํ•˜๊ณ  ์ข‹์•„ํ•˜๋Š” ์ฝ˜ํ…์ธ ๋ฅผ ์ฐพ์„ ์ˆ˜ ์žˆ๋„๋ก ๋„์™€์ค๋‹ˆ๋‹ค." @@ -1272,7 +1281,7 @@ msgid "Debug panel" msgstr "๋””๋ฒ„๊ทธ ํŒจ๋„" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1323,8 +1332,8 @@ msgstr "๋‚ด ๊ณ„์ • ์‚ญ์ œ" msgid "Delete My Accountโ€ฆ" msgstr "๋‚ด ๊ณ„์ • ์‚ญ์ œโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ" @@ -1332,7 +1341,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ" msgid "Delete this list?" msgstr "์ด ๋ฆฌ์ŠคํŠธ๋ฅผ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -1340,7 +1349,7 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Deleted" msgstr "์‚ญ์ œ๋จ" -#: src/view/com/post-thread/PostThread.tsx:348 +#: src/view/com/post-thread/PostThread.tsx:349 msgid "Deleted post." msgstr "์‚ญ์ œ๋œ ๊ฒŒ์‹œ๋ฌผ." @@ -1355,11 +1364,11 @@ msgstr "๋Œ€ํ™” ์‹ ๊ณ  ๊ธฐ๋ก์„ ์‚ญ์ œํ•ฉ๋‹ˆ๋‹ค" msgid "Description" msgstr "์„ค๋ช…" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "์„ค๋ช…์ด ํฌํ•จ๋œ ๋Œ€์ฒด ํ…์ŠคํŠธ" -#: src/view/com/composer/Composer.tsx:292 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "ํ•˜๊ณ  ์‹ถ์€ ๋ง์ด ์—†๋‚˜์š”?" @@ -1392,11 +1401,11 @@ msgstr "ํ–…ํ‹ฑ ํ”ผ๋“œ๋ฐฑ ๋„๊ธฐ" msgid "Disabled" msgstr "์‚ฌ์šฉ ์•ˆ ํ•จ" -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "์‚ญ์ œ" -#: src/view/com/composer/Composer.tsx:650 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "์ดˆ์•ˆ ์‚ญ์ œ" @@ -1405,12 +1414,12 @@ msgstr "์ดˆ์•ˆ ์‚ญ์ œ" msgid "Discourage apps from showing my account to logged-out users" msgstr "์•ฑ์ด ๋กœ๊ทธ์•„์›ƒํ•œ ์‚ฌ์šฉ์ž์—๊ฒŒ ๋‚ด ๊ณ„์ •์„ ํ‘œ์‹œํ•˜์ง€ ์•Š๋„๋ก ์„ค์ •ํ•˜๊ธฐ" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "์ƒˆ๋กœ์šด ๋งž์ถค ํ”ผ๋“œ ์ฐพ์•„๋ณด๊ธฐ" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "์ƒˆ ํ”ผ๋“œ ๋ฐœ๊ฒฌํ•˜๊ธฐ" @@ -1450,7 +1459,7 @@ 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1525,6 +1534,11 @@ msgstr "์˜ˆ: ๋ฐ˜๋ณต์ ์œผ๋กœ ๊ด‘๊ณ  ๋‹ต๊ธ€์„ ๋‹ค๋Š” ๊ณ„์ •." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "๊ฐ ์ฝ”๋“œ๋Š” ํ•œ ๋ฒˆ๋งŒ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ์ฃผ๊ธฐ์ ์œผ๋กœ ๋” ๋งŽ์€ ์ดˆ๋Œ€ ์ฝ”๋“œ๋ฅผ ๋ฐ›๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1548,8 +1562,9 @@ msgstr "๋ฆฌ์ŠคํŠธ ์„ธ๋ถ€ ์ •๋ณด ํŽธ์ง‘" msgid "Edit Moderation List" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ ํŽธ์ง‘" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "๋‚ด ํ”ผ๋“œ ํŽธ์ง‘" @@ -1559,19 +1574,19 @@ msgid "Edit my profile" msgstr "๋‚ด ํ”„๋กœํ•„ ํŽธ์ง‘" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "ํ”„๋กœํ•„ ํŽธ์ง‘" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "ํ”„๋กœํ•„ ํŽธ์ง‘" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "์ €์žฅํ•œ ํ”ผ๋“œ ํŽธ์ง‘" +#~ msgid "Edit Saved Feeds" +#~ msgstr "์ €์žฅํ•œ ํ”ผ๋“œ ํŽธ์ง‘" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1624,8 +1639,8 @@ msgid "Embed HTML code" msgstr "์ž„๋ฒ ๋“œ HTML ์ฝ”๋“œ" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž„๋ฒ ๋“œ" @@ -1668,7 +1683,7 @@ msgstr "์‚ฌ์šฉ" msgid "End of feed" msgstr "ํ”ผ๋“œ ๋" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "์ด ์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ์˜ ์ด๋ฆ„ ์ž…๋ ฅ" @@ -1676,8 +1691,8 @@ msgstr "์ด ์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ์˜ ์ด๋ฆ„ ์ž…๋ ฅ" msgid "Enter a password" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ์ž…๋ ฅ" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "๋‹จ์–ด ๋˜๋Š” ํƒœ๊ทธ ์ž…๋ ฅ" @@ -1727,7 +1742,7 @@ msgid "Error receiving captcha response." msgstr "์บก์ฐจ ์‘๋‹ต์„ ์ˆ˜์‹ ํ•˜๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "์˜ค๋ฅ˜:" @@ -1815,7 +1830,7 @@ msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด๋Š” ์›น์‚ฌ์ดํŠธ๊ฐ€ ๋‚˜์™€ ๋‚ด ๊ธฐ๊ธฐ์— ๋Œ€ํ•œ ์ •๋ณด๋ฅผ ์ˆ˜์ง‘ํ•˜๋„๋ก ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. \"์žฌ์ƒ\" ๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด๊ธฐ ์ „๊นŒ์ง€๋Š” ์–ด๋– ํ•œ ์ •๋ณด๋„ ์ „์†ก๋˜๊ฑฐ๋‚˜ ์š”์ฒญ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1825,8 +1840,8 @@ msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด ์„ค์ •" msgid "External media settings" msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด ์„ค์ •" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋งŒ๋“ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -1838,7 +1853,7 @@ msgstr "๋ฆฌ์ŠคํŠธ๋ฅผ ๋งŒ๋“ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์„ ํ™•์ธํ•œ msgid "Failed to delete message" msgstr "๋ฉ”์‹œ์ง€๋ฅผ ์‚ญ์ œํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" @@ -1859,7 +1874,7 @@ msgstr "์ด๋ฏธ์ง€๋ฅผ ์ €์žฅํ•˜์ง€ ๋ชปํ•จ: {0}" msgid "Failed to send" msgstr "์ „์†ก ์‹คํŒจ" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "์ด์˜์‹ ์ฒญ์„ ์ œ์ถœํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•˜์„ธ์š”." @@ -1869,7 +1884,7 @@ msgstr "์ด์˜์‹ ์ฒญ์„ ์ œ์ถœํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•˜์„ธ์š”." msgid "Failed to update settings" msgstr "์„ค์ •์„ ์—…๋ฐ์ดํŠธํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "ํ”ผ๋“œ" @@ -1877,22 +1892,21 @@ msgstr "ํ”ผ๋“œ" msgid "Feed by {0}" msgstr "{0} ๋‹˜์˜ ํ”ผ๋“œ" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "ํ”ผ๋“œ ์˜คํ”„๋ผ์ธ" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "ํ”ผ๋“œ๋ฐฑ" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "ํ”ผ๋“œ" @@ -1917,12 +1931,12 @@ msgid "Finalizing" msgstr "๋งˆ๋ฌด๋ฆฌ ์ค‘" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "ํŒ”๋กœ์šฐํ•  ๊ณ„์ • ์ฐพ์•„๋ณด๊ธฐ" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Bluesky์—์„œ ๊ฒŒ์‹œ๋ฌผ ๋ฐ ์‚ฌ์šฉ์ž ์ฐพ๊ธฐ" @@ -1953,7 +1967,7 @@ msgstr "์„ธ๋กœ๋กœ ๋’ค์ง‘๊ธฐ" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -1964,7 +1978,7 @@ msgctxt "action" msgid "Follow" msgstr "ํŒ”๋กœ์šฐ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "{0} ๋‹˜์„ ํŒ”๋กœ์šฐ" @@ -1982,6 +1996,10 @@ msgstr "๊ณ„์ • ํŒ”๋กœ์šฐ" msgid "Follow Back" msgstr "๋งžํŒ”๋กœ์šฐ" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "{0} ๋‹˜์ด ํŒ”๋กœ์šฐํ•จ" @@ -2003,18 +2021,27 @@ msgstr "์ด(๊ฐ€) ๋‚˜๋ฅผ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Followers" msgstr "ํŒ”๋กœ์›Œ" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "ํŒ”๋กœ์šฐ ์ค‘" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "{0} ๋‹˜์„ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -2026,9 +2053,7 @@ msgstr "{name} ๋‹˜์„ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Following feed preferences" msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ ์„ค์ •" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2050,7 +2075,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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 "๋ณด์•ˆ์ƒ์˜ ์ด์œ ๋กœ ์ด ๋น„๋ฐ€๋ฒˆํ˜ธ๋Š” ๋‹ค์‹œ ๋ณผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ด ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ถ„์‹คํ•œ ๊ฒฝ์šฐ ์ƒˆ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์ƒ์„ฑํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -2121,9 +2146,9 @@ msgstr "๋’ค๋กœ" msgid "Go Back" msgstr "๋’ค๋กœ" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2138,7 +2163,7 @@ msgstr "ํ™ˆ์œผ๋กœ ์ด๋™" msgid "Go Home" msgstr "ํ™ˆ์œผ๋กœ ์ด๋™" -#: src/screens/Messages/List/ChatListItem.tsx:209 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "{0} ๋‹˜๊ณผ์˜ ๋Œ€ํ™”๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค" @@ -2171,7 +2196,7 @@ msgstr "ํ–…ํ‹ฑ" msgid "Harassment, trolling, or intolerance" msgstr "๊ดด๋กญํž˜, ๋ถ„์Ÿ ์œ ๋ฐœ ๋˜๋Š” ์ฐจ๋ณ„" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "ํ•ด์‹œํƒœ๊ทธ" @@ -2184,7 +2209,7 @@ msgid "Having trouble?" msgstr "๋ฌธ์ œ๊ฐ€ ์žˆ๋‚˜์š”?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "๋„์›€๋ง" @@ -2192,7 +2217,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ์ž…๋‹ˆ๋‹ค." @@ -2203,7 +2228,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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "์ˆจ๊ธฐ๊ธฐ" @@ -2212,8 +2237,8 @@ msgctxt "action" msgid "Hide" msgstr "์ˆจ๊ธฐ๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ˆจ๊ธฐ๊ธฐ" @@ -2222,7 +2247,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์ˆจ๊ธฐ๊ธฐ" msgid "Hide the content" msgstr "์ฝ˜ํ…์ธ  ์ˆจ๊ธฐ๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์ˆจ๊ธฐ์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -2258,11 +2283,11 @@ msgstr "์ด ๋ฐ์ดํ„ฐ๋ฅผ ๋ถˆ๋Ÿฌ์˜ค๋Š” ๋ฐ ๋ฌธ์ œ๊ฐ€ ์žˆ๋Š” ๊ฒƒ ๊ฐ™์Šต๋‹ˆ๋‹ค. ์ž msgid "Hmmmm, we couldn't load that moderation service." msgstr "๊ฒ€ํ†  ์„œ๋น„์Šค๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "ํ™ˆ" @@ -2316,7 +2341,7 @@ msgstr "ํ•ด๋‹น ๊ตญ๊ฐ€์˜ ๋ฒ•๋ฅ ์— ๋”ฐ๋ผ ์•„์ง ์„ฑ์ธ์ด ์•„๋‹Œ ๊ฒฝ์šฐ, ๋ถ€๋ชจ msgid "If you delete this list, you won't be able to recover it." msgstr "์ด ๋ฆฌ์ŠคํŠธ๋ฅผ ์‚ญ์ œํ•˜๋ฉด ๋‹ค์‹œ ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜๋ฉด ๋‹ค์‹œ ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -2356,7 +2381,7 @@ msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ์žฌ์„ค์ •์„ ์œ„ํ•ด ์ด๋ฉ”์ผ๋กœ ์ „์†ก๋œ ์ฝ”๋“œ๋ฅผ ์ž…๋ ฅ msgid "Input confirmation code for account deletion" msgstr "๊ณ„์ • ์‚ญ์ œ๋ฅผ ์œ„ํ•œ ์ธ์ฆ ์ฝ”๋“œ๋ฅผ ์ž…๋ ฅํ•ฉ๋‹ˆ๋‹ค" -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ์˜ ์ด๋ฆ„์„ ์ž…๋ ฅํ•ฉ๋‹ˆ๋‹ค" @@ -2401,7 +2426,7 @@ msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€ ์†Œ๊ฐœ" msgid "Invalid 2FA confirmation code." msgstr "์ž˜๋ชป๋œ 2๋‹จ๊ณ„ ์ธ์ฆ ์ฝ”๋“œ์ž…๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "์œ ํšจํ•˜์ง€ ์•Š๊ฑฐ๋‚˜ ์ง€์›๋˜์ง€ ์•Š๋Š” ๊ฒŒ์‹œ๋ฌผ ๊ธฐ๋ก" @@ -2453,11 +2478,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "๋‚ด ๊ณ„์ •์˜ ๋ผ๋ฒจ" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "๋‚ด ์ฝ˜ํ…์ธ ์˜ ๋ผ๋ฒจ" @@ -2469,7 +2494,7 @@ msgstr "์–ธ์–ด ์„ ํƒ" msgid "Language settings" msgstr "์–ธ์–ด ์„ค์ •" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "์–ธ์–ด ์„ค์ •" @@ -2479,7 +2504,7 @@ msgid "Languages" msgstr "์–ธ์–ด" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "์ตœ์‹ " @@ -2557,8 +2582,8 @@ msgid "Like this feed" msgstr "์ด ํ”ผ๋“œ์— ์ข‹์•„์š” ํ‘œ์‹œ" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "์ข‹์•„์š” ํ‘œ์‹œํ•œ ์‚ฌ์šฉ์ž" @@ -2580,11 +2605,11 @@ msgstr "์ด(๊ฐ€) ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" msgid "Likes" msgstr "์ข‹์•„์š”" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์ข‹์•„์š” ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "๋ฆฌ์ŠคํŠธ" @@ -2620,12 +2645,12 @@ msgstr "๋ฆฌ์ŠคํŠธ ์ฐจ๋‹จ ํ•ด์ œ๋จ" msgid "List unmuted" msgstr "๋ฆฌ์ŠคํŠธ ์–ธ๋ฎคํŠธ๋จ" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "๋ฆฌ์ŠคํŠธ" @@ -2648,7 +2673,7 @@ msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" msgid "Loading..." msgstr "๋ถˆ๋Ÿฌ์˜ค๋Š” ์ค‘โ€ฆ" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "๋กœ๊ทธ" @@ -2684,7 +2709,7 @@ msgstr "XXXXX-XXXXX ํ˜•์‹" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "์ €์žฅํ•œ ํ”ผ๋“œ๊ฐ€ ์—†๋Š” ๊ฒƒ ๊ฐ™์Šต๋‹ˆ๋‹ค! ๊ถŒ์žฅ ์‚ฌํ•ญ์„ ์‚ฌ์šฉํ•˜๊ฑฐ๋‚˜ ์•„๋ž˜์—์„œ ๋” ๋งŽ์€ ํ”ผ๋“œ๋ฅผ ์ฐพ์•„๋ณด์„ธ์š”." -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "๋ชจ๋“  ํ”ผ๋“œ๋ฅผ ๊ณ ์ • ํ•ด์ œํ–ˆ๊ตฐ์š”. ํ•˜์ง€๋งŒ ๊ฑฑ์ •ํ•˜์ง€ ๋งˆ์„ธ์š”. ์•„๋ž˜์—์„œ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค ๐Ÿ˜„" @@ -2696,7 +2721,7 @@ msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ๊ฐ€ ๋ˆ„๋ฝ๋œ ๊ฒƒ ๊ฐ™์Šต๋‹ˆ๋‹ค. <0>์ด๊ณณ์„ ํด๋ฆญ msgid "Make sure this is where you intend to go!" msgstr "์ด๊ณณ์ด ๋‹น์‹ ์ด ๊ฐ€๊ณ ์ž ํ•˜๋Š” ๊ณณ์ธ์ง€ ํ™•์ธํ•˜์„ธ์š”!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ๊ด€๋ฆฌ" @@ -2718,8 +2743,8 @@ msgstr "๋ฉ˜์…˜ํ•œ ์‚ฌ์šฉ์ž" msgid "Mentioned users" msgstr "๋ฉ˜์…˜ํ•œ ์‚ฌ์šฉ์ž" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "๋ฉ”๋‰ด" @@ -2728,7 +2753,7 @@ msgid "Message {0}" msgstr "{0} ๋‹˜์—๊ฒŒ ๋ฉ”์‹œ์ง€ ๋ณด๋‚ด๊ธฐ" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "๋ฉ”์‹œ์ง€ ์‚ญ์ œ๋จ" @@ -2749,7 +2774,7 @@ msgstr "๋ฉ”์‹œ์ง€๊ฐ€ ๋„ˆ๋ฌด ๊น๋‹ˆ๋‹ค" msgid "Message settings" msgstr "๋ฉ”์‹œ์ง€ ์„ค์ •" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -2760,7 +2785,7 @@ msgstr "๋ฉ”์‹œ์ง€" msgid "Misleading Account" msgstr "์˜คํ•ด์˜ ์†Œ์ง€๊ฐ€ ์žˆ๋Š” ๊ณ„์ •" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -2797,7 +2822,7 @@ msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ ์—…๋ฐ์ดํŠธ๋จ" msgid "Moderation lists" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ" @@ -2806,7 +2831,7 @@ msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ" msgid "Moderation settings" msgstr "๊ฒ€ํ†  ์„ค์ •" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "๊ฒ€ํ†  ์ƒํƒœ" @@ -2819,7 +2844,7 @@ msgstr "๊ฒ€ํ†  ๋„๊ตฌ" msgid "Moderator has chosen to set a general warning on the content." msgstr "๊ฒ€ํ† ์ž๊ฐ€ ์ฝ˜ํ…์ธ ์— ์ผ๋ฐ˜ ๊ฒฝ๊ณ ๋ฅผ ์„ค์ •ํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "๋” ๋ณด๊ธฐ" @@ -2861,11 +2886,11 @@ msgstr "๋ชจ๋“  {displayTag} ๊ฒŒ์‹œ๋ฌผ ๋ฎคํŠธ" msgid "Mute conversation" msgstr "๋Œ€ํ™” ๋ฎคํŠธ" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "ํƒœ๊ทธ์—์„œ๋งŒ ๋ฎคํŠธ" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "๊ธ€ ๋ฐ ํƒœ๊ทธ์—์„œ ๋ฎคํŠธ" @@ -2877,21 +2902,21 @@ msgstr "๋ฆฌ์ŠคํŠธ ๋ฎคํŠธ" msgid "Mute these accounts?" msgstr "์ด ๊ณ„์ •๋“ค์„ ๋ฎคํŠธํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "๊ฒŒ์‹œ๋ฌผ ๊ธ€ ๋ฐ ํƒœ๊ทธ์—์„œ ์ด ๋‹จ์–ด ๋ฎคํŠธํ•˜๊ธฐ" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "ํƒœ๊ทธ์—์„œ๋งŒ ์ด ๋‹จ์–ด ๋ฎคํŠธํ•˜๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "์Šค๋ ˆ๋“œ ๋ฎคํŠธ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ๋ฎคํŠธ" @@ -2903,7 +2928,7 @@ msgstr "๋ฎคํŠธ๋จ" msgid "Muted accounts" msgstr "๋ฎคํŠธํ•œ ๊ณ„์ •" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "๋ฎคํŠธํ•œ ๊ณ„์ •" @@ -2929,7 +2954,7 @@ msgstr "๋ฎคํŠธ ๋ชฉ๋ก์€ ๋น„๊ณต๊ฐœ์ž…๋‹ˆ๋‹ค. ๋ฎคํŠธํ•œ ๊ณ„์ •์€ ๋‚˜์™€ ์ƒํ˜ธ msgid "My Birthday" msgstr "๋‚ด ์ƒ๋…„์›”์ผ" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "๋‚ด ํ”ผ๋“œ" @@ -2945,7 +2970,7 @@ msgstr "๋‚ด ์ €์žฅํ•œ ํ”ผ๋“œ" msgid "My Saved Feeds" msgstr "๋‚ด ์ €์žฅํ•œ ํ”ผ๋“œ" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "์ด๋ฆ„" @@ -3022,7 +3047,7 @@ msgctxt "action" msgid "New post" msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ" -#: src/view/screens/Feeds.tsx:627 +#: src/view/screens/Feeds.tsx:600 #: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 @@ -3088,7 +3113,7 @@ msgstr "DNS ํŒจ๋„ ์—†์Œ" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "์ธ๊ธฐ GIF๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. Tenor์— ๋ฌธ์ œ๊ฐ€ ์žˆ์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "๋” ์ด์ƒ {0} ๋‹˜์„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์Œ" @@ -3096,7 +3121,7 @@ msgstr "๋” ์ด์ƒ {0} ๋‹˜์„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์Œ" msgid "No longer than 253 characters" msgstr "253์ž๋ฅผ ์ดˆ๊ณผํ•˜์ง€ ์•Š์Œ" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "์•„์ง ๋ฉ”์‹œ์ง€๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" @@ -3132,13 +3157,13 @@ msgstr "๊ฒฐ๊ณผ ์—†์Œ" msgid "No results found" msgstr "๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Œ" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "\"{query}\"์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "{query}์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" @@ -3169,7 +3194,7 @@ msgstr "์•„์ง ์•„๋ฌด๋„ ์ข‹์•„์š”๋ฅผ ๋ˆ„๋ฅด์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ์ฒซ ๋ฒˆ์งธ๊ฐ€ msgid "Non-sexual Nudity" msgstr "์„ ์ •์ ์ด์ง€ ์•Š์€ ๋…ธ์ถœ" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "์ฐพ์„ ์ˆ˜ ์—†์Œ" @@ -3180,7 +3205,7 @@ msgid "Not right now" msgstr "๋‚˜์ค‘์— ํ•˜๊ธฐ" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "๊ณต์œ  ๊ด€๋ จ ์ฐธ๊ณ  ์‚ฌํ•ญ" @@ -3201,13 +3226,13 @@ msgstr "์•Œ๋ฆผ์Œ" msgid "Notification Sounds" msgstr "์•Œ๋ฆผ์Œ" -#: src/Navigation.tsx:516 +#: src/Navigation.tsx:499 #: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "์•Œ๋ฆผ" @@ -3253,7 +3278,7 @@ msgstr "์˜ค๋ž˜๋œ ์ˆœ" msgid "Onboarding reset" msgstr "์˜จ๋ณด๋”ฉ ์žฌ์„ค์ •" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ ์ด๋ฏธ์ง€์— ๋Œ€์ฒด ํ…์ŠคํŠธ๊ฐ€ ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -3291,13 +3316,13 @@ msgstr "{name} ๋‹˜์˜ ํ”„๋กœํ•„ ๋‹จ์ถ• ๋ฉ”๋‰ด ์—ด๊ธฐ" msgid "Open avatar creator" msgstr "์•„๋ฐ”ํƒ€ ์ƒ์„ฑ๊ธฐ ์—ด๊ธฐ" -#: src/screens/Messages/List/ChatListItem.tsx:217 -#: src/screens/Messages/List/ChatListItem.tsx:218 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "๋Œ€ํ™” ์˜ต์…˜ ์—ด๊ธฐ" -#: src/view/com/composer/Composer.tsx:634 -#: src/view/com/composer/Composer.tsx:635 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "์ด๋ชจํ‹ฐ์ฝ˜ ์„ ํƒ๊ธฐ ์—ด๊ธฐ" @@ -3317,11 +3342,11 @@ msgstr "๋ฉ”์‹œ์ง€ ์˜ต์…˜ ์—ด๊ธฐ" msgid "Open muted words and tags settings" msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ์„ค์ • ์—ด๊ธฐ" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "๋‚ด๋น„๊ฒŒ์ด์…˜ ์—ด๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "๊ฒŒ์‹œ๋ฌผ ์˜ต์…˜ ๋ฉ”๋‰ด ์—ด๊ธฐ" @@ -3426,8 +3451,8 @@ msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ์žฌ์„ค์ • ์–‘์‹์„ ์—ฝ๋‹ˆ๋‹ค" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "์ €์žฅํ•œ ํ”ผ๋“œ๋ฅผ ํŽธ์ง‘ํ•  ์ˆ˜ ์žˆ๋Š” ํ™”๋ฉด์„ ์—ฝ๋‹ˆ๋‹ค" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "์ €์žฅํ•œ ํ”ผ๋“œ๋ฅผ ํŽธ์ง‘ํ•  ์ˆ˜ ์žˆ๋Š” ํ™”๋ฉด์„ ์—ฝ๋‹ˆ๋‹ค" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3467,8 +3492,8 @@ msgstr "์ด ํ”„๋กœํ•„์„ ์—ฝ๋‹ˆ๋‹ค" msgid "Option {0} of {numItems}" msgstr "{numItems}๊ฐœ ์ค‘ {0}๋ฒˆ์งธ ์˜ต์…˜" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "์„ ํƒ ์‚ฌํ•ญ์œผ๋กœ ์•„๋ž˜์— ์ถ”๊ฐ€ ์ •๋ณด๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”:" @@ -3532,15 +3557,15 @@ msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ๋จ" msgid "Pause" msgstr "์ผ์‹œ ์ •์ง€" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "์‚ฌ๋žŒ๋“ค" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "@{0} ๋‹˜์ด ํŒ”๋กœ์šฐํ•œ ์‚ฌ๋žŒ๋“ค" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "@{0} ๋‹˜์„ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ๋žŒ๋“ค" @@ -3614,15 +3639,15 @@ msgstr "์ธ์ฆ ์บก์ฐจ๋ฅผ ์™„๋ฃŒํ•ด ์ฃผ์„ธ์š”." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "์ด๋ฉ”์ผ์„ ๋ณ€๊ฒฝํ•˜๊ธฐ ์ „์— ์ด๋ฉ”์ผ์„ ํ™•์ธํ•ด ์ฃผ์„ธ์š”. ์ด๋Š” ์ด๋ฉ”์ผ ๋ณ€๊ฒฝ ๋„๊ตฌ๊ฐ€ ์ถ”๊ฐ€๋˜๋Š” ๋™์•ˆ ์ผ์‹œ์ ์œผ๋กœ ์š”๊ตฌ๋˜๋Š” ์‚ฌํ•ญ์ด๋ฉฐ ๊ณง ์ œ๊ฑฐ๋  ์˜ˆ์ •์ž…๋‹ˆ๋‹ค." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ์˜ ์ด๋ฆ„์„ ์ž…๋ ฅํ•˜์„ธ์š”. ๋ชจ๋“  ๊ณต๋ฐฑ ๋ฌธ์ž๋Š” ํ—ˆ์šฉ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค." -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "์ด ์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ์— ๋Œ€ํ•ด ๊ณ ์œ ํ•œ ์ด๋ฆ„์„ ์ž…๋ ฅํ•˜๊ฑฐ๋‚˜ ๋ฌด์ž‘์œ„๋กœ ์ƒ์„ฑ๋œ ์ด๋ฆ„์„ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "๋ฎคํŠธํ•  ๋‹จ์–ด๋‚˜ ํƒœ๊ทธ ๋˜๋Š” ๋ฌธ๊ตฌ๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”" @@ -3634,7 +3659,7 @@ msgstr "์ด๋ฉ”์ผ์„ ์ž…๋ ฅํ•˜์„ธ์š”." msgid "Please enter your password as well:" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋„ ์ž…๋ ฅํ•ด ์ฃผ์„ธ์š”:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "{0} ๋‹˜์ด ์ด ๋ผ๋ฒจ์„ ์ž˜๋ชป ์ ์šฉํ–ˆ๋‹ค๊ณ  ์ƒ๊ฐํ•˜๋Š” ์ด์œ ๋ฅผ ์„ค๋ช…ํ•ด ์ฃผ์„ธ์š”" @@ -3651,7 +3676,7 @@ msgstr "@{0}(์œผ)๋กœ ๋กœ๊ทธ์ธํ•˜์„ธ์š”" msgid "Please Verify Your Email" msgstr "์ด๋ฉ”์ผ ์ธ์ฆํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:296 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "๋งํฌ ์นด๋“œ๋ฅผ ์™„์ „ํžˆ ๋ถˆ๋Ÿฌ์˜ฌ ๋•Œ๊นŒ์ง€ ๊ธฐ๋‹ค๋ ค์ฃผ์„ธ์š”" @@ -3663,32 +3688,32 @@ msgstr "์ •์น˜" msgid "Porn" msgstr "์Œ๋ž€๋ฌผ" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/post-thread/PostThread.tsx:426 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "๊ฒŒ์‹œ๋ฌผ" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "{0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "@{0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ๋จ" -#: src/view/com/post-thread/PostThread.tsx:192 +#: src/view/com/post-thread/PostThread.tsx:193 msgid "Post hidden" msgstr "๊ฒŒ์‹œ๋ฌผ ์ˆจ๊น€" @@ -3710,8 +3735,8 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์–ธ์–ด" msgid "Post Languages" msgstr "๊ฒŒ์‹œ๋ฌผ ์–ธ์–ด" -#: src/view/com/post-thread/PostThread.tsx:187 -#: src/view/com/post-thread/PostThread.tsx:199 +#: src/view/com/post-thread/PostThread.tsx:188 +#: src/view/com/post-thread/PostThread.tsx:200 msgid "Post not found" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์ฐพ์„ ์ˆ˜ ์—†์Œ" @@ -3723,7 +3748,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ" msgid "Posts" msgstr "๊ฒŒ์‹œ๋ฌผ" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "๊ฒŒ์‹œ๋ฌผ์˜ ๊ธ€ ๋ฐ ํƒœ๊ทธ์— ๋”ฐ๋ผ ๊ฒŒ์‹œ๋ฌผ์„ ๋ฎคํŠธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -3750,6 +3775,10 @@ msgstr "ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž๋ฅผ ๋ณ€๊ฒฝํ•˜๋ ค๋ฉด ๋ˆ„๋ฆ…๋‹ˆ๋‹ค" msgid "Press to retry" msgstr "๋‹ค์‹œ ์‹œ๋„ํ•˜๋ ค๋ฉด ๋ˆ„๋ฅด๊ธฐ" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "์ด์ „ ์ด๋ฏธ์ง€" @@ -3767,11 +3796,11 @@ msgstr "๋‚ด ํŒ”๋กœ์šฐ ๋จผ์ € ํ‘œ์‹œ" msgid "Privacy" msgstr "๊ฐœ์ธ์ •๋ณด" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "๊ฐœ์ธ์ •๋ณด ์ฒ˜๋ฆฌ๋ฐฉ์นจ" @@ -3791,8 +3820,8 @@ msgstr "ํ”„๋กœํ•„" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "ํ”„๋กœํ•„" @@ -3816,11 +3845,11 @@ msgstr "์ผ๊ด„ ๋ฎคํŠธํ•˜๊ฑฐ๋‚˜ ์ฐจ๋‹จํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐœ์ ์ด๊ณ  ๊ณต์œ  ๊ฐ€ msgid "Public, shareable lists which can drive feeds." msgstr "ํ”ผ๋“œ๋ฅผ ํƒ์ƒ‰ํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐœ์ ์ด๊ณ  ๊ณต์œ  ๊ฐ€๋Šฅํ•œ ๋ชฉ๋ก์ž…๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "๊ฒŒ์‹œ๋ฌผ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "๋‹ต๊ธ€ ๊ฒŒ์‹œํ•˜๊ธฐ" @@ -3843,11 +3872,11 @@ msgstr "๋น„์œจ" msgid "Reactivate your account" msgstr "๊ณ„์ • ์žฌํ™œ์„ฑํ™”" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "์ด์œ :" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "์ตœ๊ทผ ๊ฒ€์ƒ‰" @@ -3859,7 +3888,7 @@ msgstr "๋‹ค์‹œ ์—ฐ๊ฒฐ" msgid "Reload conversations" msgstr "๋Œ€ํ™” ๋‹ค์‹œ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" -#: src/components/dialogs/MutedWords.tsx:288 +#: src/components/dialogs/MutedWords.tsx:286 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -3914,15 +3943,15 @@ msgstr "์ด๋ฏธ์ง€ ์ œ๊ฑฐ" msgid "Remove image preview" msgstr "์ด๋ฏธ์ง€ ๋ฏธ๋ฆฌ๋ณด๊ธฐ ์ œ๊ฑฐ" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "๋ชฉ๋ก์—์„œ ๋ฎคํŠธํ•œ ๋‹จ์–ด ์ œ๊ฑฐ" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "ํ”„๋กœํ•„ ์ œ๊ฑฐ" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "๊ฒ€์ƒ‰ ๊ธฐ๋ก์—์„œ ํ”„๋กœํ•„์„ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค" @@ -3975,7 +4004,7 @@ msgstr "๋‹ต๊ธ€" msgid "Replies to this thread are disabled" msgstr "์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ๋‹ต๊ธ€์ด ๋น„ํ™œ์„ฑํ™”๋ฉ๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "๋‹ต๊ธ€" @@ -4024,8 +4053,8 @@ msgstr "๋ฆฌ์ŠคํŠธ ์‹ ๊ณ " msgid "Report message" msgstr "๋ฉ”์‹œ์ง€ ์‹ ๊ณ " -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "๊ฒŒ์‹œ๋ฌผ ์‹ ๊ณ " @@ -4041,8 +4070,8 @@ msgstr "์ด ํ”ผ๋“œ ์‹ ๊ณ ํ•˜๊ธฐ" msgid "Report this list" msgstr "์ด ๋ฆฌ์ŠคํŠธ ์‹ ๊ณ ํ•˜๊ธฐ" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "์ด ๋ฉ”์‹œ์ง€ ์‹ ๊ณ ํ•˜๊ธฐ" @@ -4089,7 +4118,7 @@ msgstr "<0><1/> ๋‹˜์ด ์žฌ๊ฒŒ์‹œํ•จ" msgid "reposted your post" msgstr "์ด(๊ฐ€) ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์žฌ๊ฒŒ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์˜ ์žฌ๊ฒŒ์‹œ" @@ -4188,8 +4217,8 @@ msgid "Returns to previous page" msgstr "์ด์ „ ํŽ˜์ด์ง€๋กœ ๋Œ์•„๊ฐ‘๋‹ˆ๋‹ค" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4265,20 +4294,20 @@ msgid "Scroll to top" msgstr "๋งจ ์œ„๋กœ ์Šคํฌ๋กค" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "๊ฒ€์ƒ‰" @@ -4286,7 +4315,7 @@ msgstr "๊ฒ€์ƒ‰" msgid "Search for \"{query}\"" msgstr "\"{query}\"์— ๋Œ€ํ•œ ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "\"{searchText}\"์— ๋Œ€ํ•œ ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ" @@ -4391,7 +4420,7 @@ msgstr "{numItems}๊ฐœ ์ค‘ {i}๋ฒˆ์งธ ์˜ต์…˜์„ ์„ ํƒํ•ฉ๋‹ˆ๋‹ค" msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} ์ด๋ชจํ‹ฐ์ฝ˜์„ ์•„๋ฐ”ํƒ€๋กœ ์„ ํƒํ•˜๊ธฐ" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "์‹ ๊ณ ํ•  ๊ฒ€ํ†  ์„œ๋น„์Šค๋ฅผ ์„ ํƒํ•˜์„ธ์š”." @@ -4437,8 +4466,8 @@ msgctxt "action" msgid "Send Email" msgstr "์ด๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "ํ”ผ๋“œ๋ฐฑ ๋ณด๋‚ด๊ธฐ" @@ -4451,10 +4480,10 @@ msgstr "๋ฉ”์‹œ์ง€ ๋ณด๋‚ด๊ธฐ" msgid "Send post to..." msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๋‹ค์Œ์œผ๋กœ ๋ณด๋‚ด๊ธฐ" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "์‹ ๊ณ  ๋ณด๋‚ด๊ธฐ" @@ -4467,8 +4496,8 @@ msgstr "{0} ๋‹˜์—๊ฒŒ ์‹ ๊ณ  ๋ณด๋‚ด๊ธฐ" msgid "Send verification email" msgstr "์ธ์ฆ ์ด๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€๋กœ ๋ณด๋‚ด๊ธฐ" @@ -4552,11 +4581,11 @@ msgstr "์ด๋ฏธ์ง€ ๋น„์œจ์„ ์„ธ๋กœ๋กœ ๊ธธ๊ฒŒ ์„ค์ •ํ•ฉ๋‹ˆ๋‹ค" msgid "Sets image aspect ratio to wide" msgstr "์ด๋ฏธ์ง€ ๋น„์œจ์„ ๊ฐ€๋กœ๋กœ ๊ธธ๊ฒŒ ์„ค์ •ํ•ฉ๋‹ˆ๋‹ค" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "์„ค์ •" @@ -4575,8 +4604,8 @@ msgstr "๊ณต์œ " #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4591,7 +4620,7 @@ msgid "Share a fun fact!" msgstr "์žฌ๋ฏธ์žˆ๋Š” ์‚ฌ์‹ค์„ ์ „ํ•˜์„ธ์š”!" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "๋ฌด์‹œํ•˜๊ณ  ๊ณต์œ " @@ -4639,7 +4668,7 @@ msgstr "๋ฐฐ์ง€ ํ‘œ์‹œ" msgid "Show badge and filter from feeds" msgstr "๋ฐฐ์ง€ ํ‘œ์‹œ ๋ฐ ํ”ผ๋“œ์—์„œ ํ•„ํ„ฐ๋ง" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "{0} ๋‹˜๊ณผ ๋น„์Šทํ•œ ํŒ”๋กœ์šฐ ํ‘œ์‹œ" @@ -4647,19 +4676,19 @@ msgstr "{0} ๋‹˜๊ณผ ๋น„์Šทํ•œ ํŒ”๋กœ์šฐ ํ‘œ์‹œ" msgid "Show hidden replies" msgstr "์ˆจ๊ฒจ์ง„ ๋‹ต๊ธ€ ํ‘œ์‹œ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "์ด๋Ÿฐ ํ•ญ๋ชฉ ๋œ ๋ณด๊ธฐ" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "๋” ๋ณด๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "์ด๋Ÿฐ ํ•ญ๋ชฉ ๋” ๋ณด๊ธฐ" @@ -4792,7 +4821,7 @@ msgstr "์†Œํ”„ํŠธ์›จ์–ด ๊ฐœ๋ฐœ" msgid "Some people can reply" msgstr "๋ช‡๋ช‡ ์‚ฌ๋žŒ๋“ค์ด ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Œ" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "์•Œ ์ˆ˜ ์—†๋Š” ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -4820,7 +4849,7 @@ msgstr "๋‹ต๊ธ€ ์ •๋ ฌ" msgid "Sort replies to the same post by:" msgstr "๋™์ผํ•œ ๊ฒŒ์‹œ๋ฌผ์— ๋Œ€ํ•œ ๋‹ต๊ธ€์„ ์ •๋ ฌํ•˜๋Š” ๊ธฐ์ค€์ž…๋‹ˆ๋‹ค." -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "์ถœ์ฒ˜: <0>{0}" @@ -4865,13 +4894,13 @@ msgstr "{1}๋‹จ๊ณ„ ์ค‘ {0}๋‹จ๊ณ„" msgid "Storage cleared, you need to restart the app now." msgstr "์Šคํ† ๋ฆฌ์ง€๊ฐ€ ์ง€์›Œ์กŒ์œผ๋ฉฐ ์ง€๊ธˆ ์•ฑ์„ ๋‹ค์‹œ ์‹œ์ž‘ํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "์Šคํ† ๋ฆฌ๋ถ" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -4897,7 +4926,7 @@ msgstr "์ด ๋ผ๋ฒจ๋Ÿฌ ๊ตฌ๋…ํ•˜๊ธฐ" msgid "Subscribe to this list" msgstr "์ด ๋ฆฌ์ŠคํŠธ ๊ตฌ๋…ํ•˜๊ธฐ" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "ํŒ”๋กœ์šฐ ์ถ”์ฒœ" @@ -4909,7 +4938,7 @@ msgstr "๋‚˜๋ฅผ ์œ„ํ•œ ์ถ”์ฒœ" msgid "Suggestive" msgstr "์™ธ์„ค์ " -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -4936,7 +4965,7 @@ msgstr "์‹œ์Šคํ…œ" msgid "System log" msgstr "์‹œ์Šคํ…œ ๋กœ๊ทธ" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "ํƒœ๊ทธ" @@ -4964,11 +4993,11 @@ msgstr "๋†๋‹ดํ•ด ๋ณด์„ธ์š”!" msgid "Terms" msgstr "์ด์šฉ์•ฝ๊ด€" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€" @@ -4978,17 +5007,17 @@ msgstr "์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€" msgid "Terms used violate community standards" msgstr "์ปค๋ฎค๋‹ˆํ‹ฐ ๊ธฐ์ค€์„ ์œ„๋ฐ˜ํ•˜๋Š” ์šฉ์–ด ์‚ฌ์šฉ" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "๊ธ€" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "ํ…์ŠคํŠธ ์ž…๋ ฅ ํ•„๋“œ" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค. ์‹ ๊ณ ๋ฅผ ์ „์†กํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -5000,7 +5029,7 @@ msgstr "ํ…์ŠคํŠธ ํŒŒ์ผ ๋‚ด์šฉ:" msgid "That handle is already taken." msgstr "์ด ํ•ธ๋“ค์€ ์ด๋ฏธ ์‚ฌ์šฉ ์ค‘์ž…๋‹ˆ๋‹ค." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "์ฐจ๋‹จ์„ ํ•ด์ œํ•˜๋ฉด ์ด ๊ณ„์ •์ด ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์žˆ๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." @@ -5017,11 +5046,11 @@ msgstr "์ €์ž‘๊ถŒ ์ •์ฑ…์„ <0/>(์œผ)๋กœ ์ด๋™ํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "The feed has been replaced with Discover." msgstr "ํ”ผ๋“œ๋ฅผ Discover๋กœ ๊ต์ฒดํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "๋‚ด ๊ณ„์ •์— ๋‹ค์Œ ๋ผ๋ฒจ์ด ์ ์šฉ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "๋‚ด ์ฝ˜ํ…์ธ ์— ๋‹ค์Œ ๋ผ๋ฒจ์ด ์ ์šฉ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -5029,8 +5058,8 @@ msgstr "๋‚ด ์ฝ˜ํ…์ธ ์— ๋‹ค์Œ ๋ผ๋ฒจ์ด ์ ์šฉ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." msgid "The following steps will help customize your Bluesky experience." msgstr "๋‹ค์Œ ๋‹จ๊ณ„๋Š” Bluesky ํ™˜๊ฒฝ์„ ๋งž์ถค ์„ค์ •ํ•˜๋Š” ๋ฐ ๋„์›€์ด ๋ฉ๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThread.tsx:188 -#: src/view/com/post-thread/PostThread.tsx:200 +#: src/view/com/post-thread/PostThread.tsx:189 +#: src/view/com/post-thread/PostThread.tsx:201 msgid "The post may have been deleted." msgstr "๊ฒŒ์‹œ๋ฌผ์ด ์‚ญ์ œ๋˜์—ˆ์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -5101,8 +5130,8 @@ msgstr "๋ฆฌ์ŠคํŠธ๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ด๊ณณ์„ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "๋ฆฌ์ŠคํŠธ๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ด๊ณณ์„ ํƒญํ•˜์—ฌ ๋‹ค์‹œ ์‹œ๋„ํ•˜์„ธ์š”." -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "์‹ ๊ณ ๋ฅผ ์ „์†กํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์„ ํ™•์ธํ•ด ์ฃผ์„ธ์š”." @@ -5110,9 +5139,9 @@ msgstr "์‹ ๊ณ ๋ฅผ ์ „์†กํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท msgid "There was an issue with fetching your app passwords" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5153,7 +5182,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "์ด ์ด์˜์‹ ์ฒญ์€ <0>{0}์—๊ฒŒ ๋ณด๋‚ด์ง‘๋‹ˆ๋‹ค." @@ -5186,7 +5215,7 @@ msgstr "๊ด€๋ จ ์‚ฌ์šฉ์ž ์ค‘ ํ•œ ๋ช…์ด ๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๋ฅผ ์ฐจ๋‹จํ–ˆ๊ธฐ ๋•Œ๋ฌธ msgid "This content is not viewable without a Bluesky account." msgstr "์ด ์ฝ˜ํ…์ธ ๋Š” Bluesky ๊ณ„์ •์ด ์—†์œผ๋ฉด ๋ณผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/List/ChatListItem.tsx:213 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "์ด ๋Œ€ํ™”๋Š” ์‚ญ์ œ๋˜์—ˆ๊ฑฐ๋‚˜ ๋น„ํ™œ์„ฑํ™”๋œ ๊ณ„์ •๊ณผ์˜ ๋Œ€ํ™”์ž…๋‹ˆ๋‹ค. ์˜ต์…˜์„ ๋ณด๋ ค๋ฉด ๋ˆ„๋ฅด์„ธ์š”." @@ -5227,7 +5256,7 @@ msgstr "์ด ๋ผ๋ฒจ์€ {0}์ด(๊ฐ€) ์ ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค." msgid "This label was applied by the author." msgstr "์ด ๋ผ๋ฒจ์€ ์ž‘์„ฑ์ž๊ฐ€ ์ ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "์ด ๋ผ๋ฒจ์€ ๋‚ด๊ฐ€ ์ ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -5247,20 +5276,20 @@ msgstr "์ด ๋ฆฌ์ŠคํŠธ๋Š” ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค." msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "์ด ๊ฒ€ํ†  ์„œ๋น„์Šค๋Š” ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ž์„ธํ•œ ๋‚ด์šฉ์€ ์•„๋ž˜๋ฅผ ์ฐธ์กฐํ•˜์„ธ์š”. ์ด ๋ฌธ์ œ๊ฐ€ ์ง€์†๋˜๋ฉด ๋ฌธ์˜ํ•ด ์ฃผ์„ธ์š”." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "์ด ์ด๋ฆ„์€ ์ด๋ฏธ ์‚ฌ์šฉ ์ค‘์ž…๋‹ˆ๋‹ค" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์€ ์‚ญ์ œ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ํ”ผ๋“œ์—์„œ ์ˆจ๊น๋‹ˆ๋‹ค." @@ -5305,7 +5334,7 @@ msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋‚ด๊ฐ€ ๋ฎคํŠธํ•œ <0>{0} ๋ฆฌ์ŠคํŠธ์— ํฌํ•จ๋˜์–ด msgid "This user isn't following anyone." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ์•„๋ฌด๋„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด์—์„œ {0}์ด(๊ฐ€) ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค. ๋‚˜์ค‘์— ์–ธ์ œ๋“ ์ง€ ๋‹ค์‹œ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -5322,7 +5351,7 @@ msgstr "์Šค๋ ˆ๋“œ ์„ค์ •" msgid "Threaded Mode" msgstr "์Šค๋ ˆ๋“œ ๋ชจ๋“œ" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "์Šค๋ ˆ๋“œ ์„ค์ •" @@ -5338,7 +5367,7 @@ msgstr "๋Œ€ํ™”๋ฅผ ์‹ ๊ณ ํ•˜๋ ค๋ฉด ๋Œ€ํ™” ํ™”๋ฉด์—์„œ ํ•ด๋‹น ๋ฉ”์‹œ์ง€ ์ค‘ ํ•˜ msgid "To whom would you like to send this report?" msgstr "์ด ์‹ ๊ณ ๋ฅผ ๋ˆ„๊ตฌ์—๊ฒŒ ๋ณด๋‚ด์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด ์˜ต์…˜ ์‚ฌ์ด๋ฅผ ์ „ํ™˜ํ•ฉ๋‹ˆ๋‹ค." @@ -5351,7 +5380,7 @@ msgid "Toggle to enable or disable adult content" msgstr "์„ฑ์ธ ์ฝ˜ํ…์ธ  ํ™œ์„ฑํ™” ๋˜๋Š” ๋น„ํ™œ์„ฑํ™” ์ „ํ™˜" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "์ธ๊ธฐ" @@ -5361,10 +5390,10 @@ msgstr "๋ณ€ํ˜•" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "๋ฒˆ์—ญ" @@ -5406,14 +5435,14 @@ msgstr "์„œ๋น„์Šค์— ์—ฐ๊ฒฐํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์„ ํ™•์ธํ•˜ #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "์ฐจ๋‹จ ํ•ด์ œ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "์ฐจ๋‹จ ํ•ด์ œ" @@ -5428,7 +5457,7 @@ msgstr "๊ณ„์ • ์ฐจ๋‹จ ํ•ด์ œ" msgid "Unblock Account" msgstr "๊ณ„์ • ์ฐจ๋‹จ ํ•ด์ œ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "๊ณ„์ •์„ ์ฐจ๋‹จ ํ•ด์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -5448,7 +5477,7 @@ msgstr "์–ธํŒ”๋กœ์šฐ" msgid "Unfollow" msgstr "์–ธํŒ”๋กœ์šฐ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "{0} ๋‹˜์„ ์–ธํŒ”๋กœ์šฐ" @@ -5483,8 +5512,8 @@ msgstr "๋ชจ๋“  {tag} ๊ฒŒ์‹œ๋ฌผ ์–ธ๋ฎคํŠธ" msgid "Unmute conversation" msgstr "์•Œ๋ฆผ ์–ธ๋ฎคํŠธ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "์Šค๋ ˆ๋“œ ์–ธ๋ฎคํŠธ" @@ -5591,7 +5620,7 @@ msgstr "์ถ”์ฒœ ์‚ฌ์šฉ" msgid "Use the DNS panel" msgstr "DNS ํŒจ๋„์„ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." msgstr "์ด ๋น„๋ฐ€๋ฒˆํ˜ธ์™€ ํ•ธ๋“ค์„ ์‚ฌ์šฉํ•˜์—ฌ ๋‹ค๋ฅธ ์•ฑ์— ๋กœ๊ทธ์ธํ•˜์„ธ์š”." @@ -5754,7 +5783,7 @@ msgstr "์ด ๋ผ๋ฒจ์— ๋Œ€ํ•œ ์ •๋ณด ๋ณด๊ธฐ" msgid "View profile" msgstr "ํ”„๋กœํ•„ ๋ณด๊ธฐ" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "์•„๋ฐ”ํƒ€ ๋ณด๊ธฐ" @@ -5766,6 +5795,11 @@ msgstr "{0} ๋‹˜์ด ์ œ๊ณตํ•˜๋Š” ๋ผ๋ฒจ๋ง ์„œ๋น„์Šค ๋ณด๊ธฐ" msgid "View users who like this feed" msgstr "์ด ํ”ผ๋“œ๋ฅผ ์ข‹์•„ํ•˜๋Š” ์‚ฌ์šฉ์ž ๋ณด๊ธฐ" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -5789,7 +5823,7 @@ msgstr "์ฝ˜ํ…์ธ  ๊ฒฝ๊ณ  ๋ฐ ํ”ผ๋“œ์—์„œ ํ•„ํ„ฐ๋ง" msgid "We couldn't find any results for that hashtag." msgstr "ํ•ด๋‹น ํ•ด์‹œํƒœ๊ทธ์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "์ด ๋Œ€ํ™”๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" @@ -5805,7 +5839,7 @@ msgstr "์ฆ๊ฑฐ์šด ์‹œ๊ฐ„ ๋˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. Bluesky์˜ ๋‹ค์Œ ํŠน์ง•์„ ๊ธฐ msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "ํŒ”๋กœ์šฐํ•œ ์‚ฌ์šฉ์ž์˜ ๊ฒŒ์‹œ๋ฌผ์ด ๋ถ€์กฑํ•ฉ๋‹ˆ๋‹ค. ๋Œ€์‹  <0/>์˜ ์ตœ์‹  ๊ฒŒ์‹œ๋ฌผ์„ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "๊ฒŒ์‹œ๋ฌผ์ด ํ‘œ์‹œ๋˜์ง€ ์•Š์„ ์ˆ˜ ์žˆ์œผ๋ฏ€๋กœ ๋งŽ์€ ๊ฒŒ์‹œ๋ฌผ์— ์ž์ฃผ ๋“ฑ์žฅํ•˜๋Š” ๋‹จ์–ด๋Š” ํ”ผํ•˜๋Š” ๊ฒƒ์ด ์ข‹์Šต๋‹ˆ๋‹ค." @@ -5841,15 +5875,15 @@ msgstr "ํ•จ๊ป˜ํ•˜๊ฒŒ ๋˜์–ด ์ •๋ง ๊ธฐ๋ป์š”!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ์ด ๋ฆฌ์ŠคํŠธ๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ด ๋ฌธ์ œ๊ฐ€ ๊ณ„์†๋˜๋ฉด ๋ฆฌ์ŠคํŠธ ์ž‘์„ฑ์ž์ธ @{handleOrDid}์—๊ฒŒ ๋ฌธ์˜ํ•˜์„ธ์š”." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ํ˜„์žฌ ๋ฎคํŠธํ•œ ๋‹จ์–ด๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:333 +#: src/view/com/composer/Composer.tsx:318 msgid "We're sorry! The post you are replying to has been deleted." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ๋‹ต๊ธ€์„ ๋‹ฌ๋ ค๋Š” ๊ฒŒ์‹œ๋ฌผ์ด ์‚ญ์ œ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -5872,7 +5906,7 @@ msgstr "์–ด๋–ค ๊ด€์‹ฌ์‚ฌ๊ฐ€ ์žˆ์œผ์‹ ๊ฐ€์š”?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:374 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "๋ฌด์Šจ ์ผ์ด ์ผ์–ด๋‚˜๊ณ  ์žˆ๋‚˜์š”?" @@ -5893,7 +5927,7 @@ msgstr "๋ˆ„๊ตฌ์˜ ๋ฉ”์‹œ์ง€๋ฅผ ํ—ˆ์šฉํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Who can reply" msgstr "๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ๋Š” ์‚ฌ๋žŒ" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "์ด๋Ÿฐ!" @@ -5931,11 +5965,11 @@ msgstr "๊ฐ€๋กœ" msgid "Write a message" msgstr "๋ฉ”์‹œ์ง€๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ" -#: src/view/com/composer/Composer.tsx:373 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "๋‹ต๊ธ€ ์ž‘์„ฑํ•˜๊ธฐ" @@ -5975,8 +6009,8 @@ msgstr "๋Œ€๊ธฐ ์ค‘์ž…๋‹ˆ๋‹ค." msgid "You are not following anyone." msgstr "์•„๋ฌด๋„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "ํŒ”๋กœ์šฐํ•  ์ƒˆ๋กœ์šด ๋งž์ถค ํ”ผ๋“œ๋ฅผ ์ฐพ์„ ์ˆ˜๋„ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -6005,6 +6039,10 @@ msgstr "๊ณ„์ •์„ ์žฌํ™œ์„ฑํ™”ํ•˜์—ฌ ๋กœ๊ทธ์ธ์„ ๊ณ„์†ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. msgid "You do not have any followers." msgstr "ํŒ”๋กœ์›Œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "์•„์ง ์ดˆ๋Œ€ ์ฝ”๋“œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค! Bluesky๋ฅผ ์ข€ ๋” ์˜ค๋ž˜ ์‚ฌ์šฉํ•˜์‹  ํ›„์— ๋ณด๋‚ด๋“œ๋ฆฌ๊ฒ ์Šต๋‹ˆ๋‹ค." @@ -6017,7 +6055,7 @@ msgstr "๊ณ ์ •ํ•œ ํ”ผ๋“œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." msgid "You don't have any saved feeds." msgstr "์ €์žฅํ•œ ํ”ผ๋“œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThread.tsx:194 +#: src/view/com/post-thread/PostThread.tsx:195 msgid "You have blocked the author or you have been blocked by the author." msgstr "์ž‘์„ฑ์ž๋ฅผ ์ฐจ๋‹จํ–ˆ๊ฑฐ๋‚˜ ์ž‘์„ฑ์ž๊ฐ€ ๋‚˜๋ฅผ ์ฐจ๋‹จํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -6084,15 +6122,15 @@ msgstr "์•„์ง ์–ด๋–ค ๊ณ„์ •๋„ ๋ฎคํŠธํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ๊ณ„์ •์„ ๋ฎคํŠธ msgid "You have reached the end" msgstr "๋์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "์•„์ง ์–ด๋–ค ๋‹จ์–ด๋‚˜ ํƒœ๊ทธ๋„ ๋ฎคํŠธํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "๋น„์…€ํ”„ ๋ผ๋ฒจ์ด ์ž˜๋ชป ์ง€์ •๋˜์—ˆ๋‹ค๊ณ  ์ƒ๊ฐ๋˜๋ฉด ์ด์˜์‹ ์ฒญํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "์ด ๋ผ๋ฒจ์ด ์ž˜๋ชป ์ง€์ •๋˜์—ˆ๋‹ค๊ณ  ์ƒ๊ฐ๋˜๋ฉด ์ด์˜์‹ ์ฒญํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -6100,7 +6138,7 @@ msgstr "์ด ๋ผ๋ฒจ์ด ์ž˜๋ชป ์ง€์ •๋˜์—ˆ๋‹ค๊ณ  ์ƒ๊ฐ๋˜๋ฉด ์ด์˜์‹ ์ฒญํ•  ์ˆ˜ msgid "You must be 13 years of age or older to sign up." msgstr "๊ฐ€์ž…ํ•˜๋ ค๋ฉด ๋งŒ 13์„ธ ์ด์ƒ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "์‹ ๊ณ ํ•˜๋ ค๋ฉด ํ•˜๋‚˜ ์ด์ƒ์˜ ๋ผ๋ฒจ์„ ์„ ํƒํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -6108,11 +6146,11 @@ msgstr "์‹ ๊ณ ํ•˜๋ ค๋ฉด ํ•˜๋‚˜ ์ด์ƒ์˜ ๋ผ๋ฒจ์„ ์„ ํƒํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." msgid "You previously deactivated @{0}." msgstr "์ด์ „์— @{0}์„(๋ฅผ) ๋น„ํ™œ์„ฑํ™”ํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋” ์ด์ƒ ๋ฐ›์ง€ ์•Š์Šต๋‹ˆ๋‹ค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "์ด์ œ ์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค" @@ -6120,15 +6158,15 @@ msgstr "์ด์ œ ์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "\"์žฌ์„ค์ • ์ฝ”๋“œ\"๊ฐ€ ํฌํ•จ๋œ ์ด๋ฉ”์ผ์„ ๋ฐ›๊ฒŒ ๋˜๋ฉด ์—ฌ๊ธฐ์— ํ•ด๋‹น ์ฝ”๋“œ๋ฅผ ์ž…๋ ฅํ•œ ๋‹ค์Œ ์ƒˆ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์ž…๋ ฅํ•ฉ๋‹ˆ๋‹ค." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "๋‚˜: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "๋‚˜: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "๋‚˜: {short}" @@ -6152,7 +6190,7 @@ msgstr "์ค€๋น„๊ฐ€ ๋๋‚ฌ์Šต๋‹ˆ๋‹ค!" msgid "You've chosen to hide a word or tag within this post." msgstr "์ด ๊ธ€์—์„œ ๋‹จ์–ด ๋˜๋Š” ํƒœ๊ทธ๋ฅผ ์ˆจ๊ธฐ๋„๋ก ์„ค์ •ํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ํ”ผ๋“œ ๋์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค! ํŒ”๋กœ์šฐํ•  ๊ณ„์ •์„ ๋” ์ฐพ์•„๋ณด์„ธ์š”." @@ -6194,7 +6232,7 @@ msgstr "์ด๋ฉ”์ผ์ด ๋ณ€๊ฒฝ๋˜์—ˆ์ง€๋งŒ ์ธ์ฆ๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ๋‹ค์Œ ๋‹จ msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "์ด๋ฉ”์ผ์ด ์•„์ง ์ธ์ฆ๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ์ด๋Š” ์ค‘์š”ํ•œ ๋ณด์•ˆ ๋‹จ๊ณ„์ด๋ฏ€๋กœ ๊ถŒ์žฅํ•˜๋Š” ์‚ฌํ•ญ์ž…๋‹ˆ๋‹ค." -#: src/view/com/posts/FollowingEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ๊ฐ€ ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค. ๋” ๋งŽ์€ ์‚ฌ์šฉ์ž๋ฅผ ํŒ”๋กœ์šฐํ•˜์—ฌ ๋ฌด์Šจ ์ผ์ด ์ผ์–ด๋‚˜๊ณ  ์žˆ๋Š”์ง€ ํ™•์ธํ•˜์„ธ์š”." @@ -6206,7 +6244,7 @@ msgstr "๋‚ด ์ „์ฒด ํ•ธ๋“ค:" msgid "Your full handle will be <0>@{0}" msgstr "๋‚ด ์ „์ฒด ํ•ธ๋“ค: <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด" @@ -6214,7 +6252,7 @@ msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด" msgid "Your password has been changed successfully!" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์„ฑ๊ณต์ ์œผ๋กœ ๋ณ€๊ฒฝํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:364 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๊ฒŒ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -6230,11 +6268,11 @@ 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:363 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "๋‚ด ๋‹ต๊ธ€์„ ๊ฒŒ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "์‹ ๊ณ ๊ฐ€ Bluesky Moderation Service๋กœ ๋ณด๋‚ด์ง‘๋‹ˆ๋‹ค." diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index f54478b7cf..8b703b2bf8 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: maisondasilva, MightyLoggor, gildaswise, gleydson, faeriarum\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -41,10 +41,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 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:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -59,11 +63,11 @@ msgstr "{0, plural, one {seguindo} other {seguindo}}" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Curtir (# curtida)} other {Curtir (# curtidas)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {curtida} other {curtidas}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: 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}}" @@ -75,7 +79,7 @@ msgstr "{0, plural, one {post} other {posts}}" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Responder (# resposta)} other {Responder (# respostas)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {reposts}}" @@ -118,7 +122,7 @@ msgstr "" 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:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} nรฃo lidas" @@ -175,12 +179,12 @@ msgstr "โš Usuรกrio Invรกlido" msgid "2FA Confirmation" msgstr "Confirmaรงรฃo do 2FA" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Acessar links de navegaรงรฃo e configuraรงรตes" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Acessar perfil e outros links de navegaรงรฃo" @@ -193,7 +197,7 @@ msgstr "Acessibilidade" msgid "Accessibility settings" msgstr "Configuraรงรตes de acessibilidade" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "Configuraรงรตes de acessibilidade" @@ -237,7 +241,7 @@ msgstr "Configuraรงรตes da conta" msgid "Account removed from quick access" msgstr "Conta removida do acesso rรกpido" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Conta desbloqueada" @@ -250,7 +254,7 @@ msgstr "Vocรช nรฃo segue mais esta conta" msgid "Account unmuted" msgstr "Conta dessilenciada" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -272,9 +276,9 @@ msgstr "Adicionar um usuรกrio a esta lista" msgid "Add account" msgstr "Adicionar conta" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -299,15 +303,15 @@ msgstr "Adicionar Senha de Aplicativo" #~ msgid "Add link card:" #~ msgstr "Adicionar prรฉvia de link:" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Adicionar palavra silenciada para as configuraรงรตes selecionadas" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "Adicionar palavras/tags silenciadas" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Utilizar feeds recomendados" @@ -324,7 +328,7 @@ msgstr "Adicione o seguinte registro DNS ao seu domรญnio:" msgid "Add to Lists" msgstr "Adicionar ร s Listas" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Adicionar aos meus feeds" @@ -337,7 +341,7 @@ msgstr "Adicionar aos meus feeds" msgid "Added to list" msgstr "Adicionado ร  lista" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Adicionado aos meus feeds" @@ -359,12 +363,12 @@ msgstr "O conteรบdo adulto estรก desabilitado." msgid "Advanced" msgstr "Avanรงado" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 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:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -387,13 +391,13 @@ msgstr "Jรก tem um cรณdigo?" msgid "Already signed in as @{0}" msgstr "Jรก autenticado como @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -441,6 +445,7 @@ msgstr "Ocorreu um problema, por favor tente novamente." msgid "an unknown error occurred" msgstr "ocorreu um erro desconhecido" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -466,11 +471,11 @@ msgstr "Idioma do aplicativo" msgid "App password deleted" msgstr "Senha de Aplicativo excluรญda" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "O nome da Senha de Aplicativo sรณ pode conter letras, nรบmeros, traรงos e sublinhados." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 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." @@ -478,22 +483,22 @@ msgstr "O nome da Senha de Aplicativo precisa ter no mรญnimo 4 caracteres." msgid "App password settings" msgstr "Configuraรงรตes de Senha de Aplicativo" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Senhas de Aplicativos" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "Contestar" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "Contestar rรณtulo \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Contestaรงรฃo enviada." @@ -514,7 +519,7 @@ msgid "Appearance" msgstr "Aparรชncia" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "Utilizar feeds recomendados" @@ -538,15 +543,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Tem certeza que deseja remover {0} dos seus feeds?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "Tem certeza que deseja descartar este rascunho?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Tem certeza?" @@ -567,8 +572,8 @@ msgid "At least 3 characters" msgstr "No mรญnimo 3 caracteres" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -581,7 +586,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:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Voltar" @@ -601,7 +606,7 @@ msgstr "Aniversรกrio" msgid "Birthday:" msgstr "Aniversรกrio:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "Bloquear" @@ -641,7 +646,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" @@ -714,8 +719,8 @@ msgstr "Desfocar imagens e filtrar dos feeds" msgid "Books" msgstr "Livros" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "Navegar por outros feeds" @@ -723,7 +728,7 @@ msgstr "Navegar por outros feeds" msgid "Business" msgstr "Empresarial" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "por -" @@ -739,7 +744,7 @@ msgstr "Por {0}" #~ msgid "by @{0}" #~ msgstr "por @{0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "por <0/>" @@ -747,7 +752,7 @@ msgstr "por <0/>" msgid "By creating an account you agree to the {els}." msgstr "Ao criar uma conta, vocรช concorda com os {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "por vocรช" @@ -755,7 +760,7 @@ msgstr "por vocรช" msgid "Camera" msgstr "Cรขmera" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "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." @@ -764,8 +769,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -781,8 +786,8 @@ msgstr "Sรณ pode conter letras, nรบmeros, espaรงos, traรงos e sublinhados. Deve #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "Cancelar" @@ -811,7 +816,7 @@ msgstr "Cancelar corte da imagem" msgid "Cancel profile editing" msgstr "Cancelar ediรงรฃo do perfil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Cancelar citaรงรฃo" @@ -867,7 +872,7 @@ msgstr "Trocar idioma do post para {0}" msgid "Change Your Email" msgstr "Altere o Seu Email" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -879,7 +884,7 @@ msgstr "Chat silenciado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -965,7 +970,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Limpar busca" @@ -1073,7 +1078,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:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "Fecha o editor de post e descarta o rascunho" @@ -1097,7 +1102,7 @@ msgstr "Comรฉdia" msgid "Comics" msgstr "Quadrinhos" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -1110,7 +1115,7 @@ msgstr "Completar e comeรงar a usar sua conta" msgid "Complete the challenge" msgstr "Complete o captcha" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Escreva posts de atรฉ {MAX_GRAPHEME_LENGTH} caracteres" @@ -1219,7 +1224,7 @@ 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/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuar" @@ -1227,8 +1232,12 @@ msgstr "Continuar" msgid "Continue as {0} (currently signed in)" msgstr "Continuar como {0} (jรก conectado)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Continuar para o prรณximo passo" @@ -1241,7 +1250,7 @@ msgstr "Continuar para o prรณximo passo" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Continuar para o prรณximo passo sem seguir contas" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1249,7 +1258,7 @@ msgstr "" msgid "Cooking" msgstr "Culinรกria" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiado" @@ -1259,10 +1268,10 @@ msgid "Copied build version to clipboard" msgstr "Versรฃo do aplicativo copiada" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "Copiado" @@ -1270,11 +1279,11 @@ msgstr "Copiado" msgid "Copied!" msgstr "Copiado!" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Copia senha de aplicativo" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copiar" @@ -1291,8 +1300,8 @@ msgstr "Copiar cรณdigo" msgid "Copy link to list" msgstr "Copiar link da lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Copiar link do post" @@ -1301,12 +1310,12 @@ msgstr "Copiar link do post" msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Copiar texto do post" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Polรญtica de Direitos Autorais" @@ -1353,11 +1362,11 @@ msgstr "Criar Conta" msgid "Create an account" msgstr "Criar conta" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "Criar um avatar" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Criar Senha de Aplicativo" @@ -1391,7 +1400,7 @@ msgstr "Customizado" msgid "Custom domain" msgstr "Domรญnio personalizado" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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." @@ -1434,7 +1443,7 @@ msgid "Debug panel" msgstr "Painel de depuraรงรฃo" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1489,8 +1498,8 @@ msgstr "Excluir minha conta" msgid "Delete My Accountโ€ฆ" msgstr "Excluir minha contaโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Excluir post" @@ -1498,7 +1507,7 @@ msgstr "Excluir post" msgid "Delete this list?" msgstr "Excluir esta lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Excluir este post?" @@ -1521,11 +1530,11 @@ msgstr "" msgid "Description" msgstr "Descriรงรฃo" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "Texto alternativo" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Vocรช gostaria de dizer alguma coisa?" @@ -1566,11 +1575,11 @@ msgstr "Desabilitar feedback tรกtil" msgid "Disabled" msgstr "Desabilitado" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "Descartar rascunho?" @@ -1579,12 +1588,12 @@ 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Descubra novos feeds" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "Descubra Novos Feeds" @@ -1620,11 +1629,11 @@ msgstr "Domรญnio verificado!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1703,6 +1712,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1726,8 +1740,9 @@ msgstr "Editar detalhes da lista" msgid "Edit Moderation List" msgstr "Editar lista de moderaรงรฃo" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Editar Meus Feeds" @@ -1737,19 +1752,19 @@ msgid "Edit my profile" msgstr "Editar meu perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Editar perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "Editar Perfil" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "Editar Feeds Salvos" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Editar Feeds Salvos" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1802,8 +1817,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:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "Incorporar post" @@ -1859,7 +1874,7 @@ msgstr "Fim do feed" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Insira um nome para esta Senha de Aplicativo" @@ -1867,8 +1882,8 @@ msgstr "Insira um nome para esta Senha de Aplicativo" msgid "Enter a password" msgstr "Insira uma senha" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "Digite uma palavra ou tag" @@ -1918,7 +1933,7 @@ msgid "Error receiving captcha response." msgstr "Nรฃo foi possรญvel processar o captcha." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Erro:" @@ -2006,7 +2021,7 @@ msgstr "Mรญdia Externa" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Mรญdias externas podem permitir que sites coletem informaรงรตes sobre vocรช e seu dispositivo. Nenhuma informaรงรฃo รฉ enviada ou solicitada atรฉ que vocรช pressione o botรฃo de \"play\"." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2016,8 +2031,8 @@ msgstr "Preferรชncias de Mรญdia Externa" msgid "External media settings" msgstr "Preferรชncias de mรญdia externa" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Nรฃo foi possรญvel criar senha de aplicativo." @@ -2029,7 +2044,7 @@ msgstr "Nรฃo foi possรญvel criar a lista. Por favor tente novamente." msgid "Failed to delete message" msgstr "Nรฃo foi possรญvel excluir esta mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "Nรฃo foi possรญvel excluir o post, por favor tente novamente." @@ -2063,7 +2078,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "Nรฃo foi possรญvel enviar sua mensagem." -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -2073,30 +2088,29 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed por {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Feed offline" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Comentรกrios" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Feeds" @@ -2129,12 +2143,12 @@ msgid "Finalizing" msgstr "Finalizando" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Encontre contas para seguir" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "Encontre posts e usuรกrios no Bluesky" @@ -2177,7 +2191,7 @@ msgstr "Virar verticalmente" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2188,7 +2202,7 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "Seguir {0}" @@ -2218,6 +2232,10 @@ msgstr "Seguir De Volta" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "Comece seguindo alguns usuรกrios. Mais usuรกrios podem ser recomendados com base em quem vocรช acha interessante." +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "Seguido por {0}" @@ -2239,18 +2257,27 @@ msgstr "seguiu vocรช" msgid "Followers" msgstr "Seguidores" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Seguindo" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "Seguindo {0}" @@ -2262,9 +2289,7 @@ msgstr "" msgid "Following feed preferences" msgstr "Configuraรงรตes do feed principal" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2286,7 +2311,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2329,7 +2354,7 @@ msgstr "" msgid "Get Started" msgstr "Vamos comeรงar" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "Dรช uma cara nova pro seu perfil" @@ -2357,9 +2382,9 @@ msgstr "Voltar" msgid "Go Back" msgstr "Voltar" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2379,7 +2404,7 @@ msgstr "Voltar para a tela inicial" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Ir para @{queryMaybleHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2412,7 +2437,7 @@ msgstr "Feedback tรกtil" msgid "Harassment, trolling, or intolerance" msgstr "Assรฉdio, intolerรขncia ou \"trollagem\"" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "Hashtag" @@ -2425,11 +2450,11 @@ msgid "Having trouble?" msgstr "Precisa de ajuda?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "As pessoas nรฃo vรฃo achar que vocรช รฉ um bot se vocรช criar um avatar ou fazer upload de uma imagem." @@ -2445,7 +2470,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "Aqui estรก a sua senha de aplicativo." @@ -2456,7 +2481,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Ocultar" @@ -2465,8 +2490,8 @@ msgctxt "action" msgid "Hide" msgstr "Esconder" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Ocultar post" @@ -2475,7 +2500,7 @@ msgstr "Ocultar post" msgid "Hide the content" msgstr "Esconder o conteรบdo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Ocultar este post?" @@ -2483,23 +2508,23 @@ msgstr "Ocultar este post?" msgid "Hide user list" msgstr "Ocultar lista de usuรกrios" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, ocorreu algum problema ao entrar em contato com o servidor deste feed. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, o servidor do feed parece estar mal configurado. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, o servidor do feed parece estar offline. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, o servidor do feed teve algum problema. Por favor, avise o criador do feed sobre este problema." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 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." @@ -2511,11 +2536,11 @@ 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:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Pรกgina Inicial" @@ -2569,7 +2594,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:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 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." @@ -2609,7 +2634,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Insira um nome para a senha de aplicativo" @@ -2654,7 +2679,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Cรณdigo de confirmaรงรฃo invรกlido." -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Post invรกlido" @@ -2718,11 +2743,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "Rรณtulos sobre sua conta" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "Rรณtulos sobre seu conteรบdo" @@ -2734,7 +2759,7 @@ msgstr "Seleรงรฃo de idioma" msgid "Language settings" msgstr "Configuraรงรฃo de Idioma" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Configuraรงรตes de Idiomas" @@ -2744,7 +2769,7 @@ msgid "Languages" msgstr "Idiomas" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "Mais recentes" @@ -2826,8 +2851,8 @@ msgid "Like this feed" msgstr "Curtir este feed" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "Curtido por" @@ -2863,11 +2888,11 @@ msgstr "curtiu seu post" msgid "Likes" msgstr "Curtidas" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Curtidas neste post" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Lista" @@ -2879,7 +2904,7 @@ msgstr "Avatar da lista" msgid "List blocked" msgstr "Lista bloqueada" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Lista por {0}" @@ -2903,12 +2928,12 @@ msgstr "Lista desbloqueada" msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Listas" @@ -2916,7 +2941,7 @@ msgstr "Listas" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Carregar novas notificaรงรตes" @@ -2931,7 +2956,7 @@ msgstr "Carregar novos posts" msgid "Loading..." msgstr "Carregando..." -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Registros" @@ -2967,7 +2992,7 @@ msgstr "Tem esse formato: XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "Parece que vocรช nรฃo salvou um feed ainda! Dรก uma olhada nas nossas recomendaรงรตes ou veja mais abaixo." -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "Parece que vocรช desafixou todos os seus feeds, mas nรฃo esquenta, dรก uma olhada nesses aqui! ๐Ÿ˜„" @@ -2983,7 +3008,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "Certifique-se de onde estรก indo!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "Gerencie suas palavras/tags silenciadas" @@ -3005,8 +3030,8 @@ msgstr "usuรกrios mencionados" msgid "Mentioned users" msgstr "Usuรกrios mencionados" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menu" @@ -3015,11 +3040,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "Mensagem excluรญda" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Mensagem do servidor: {0}" @@ -3036,7 +3061,7 @@ msgstr "Mensagem longa demais" msgid "Message settings" msgstr "Configuraรงรตes das mensagens" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3051,7 +3076,7 @@ msgstr "Mensagens" msgid "Misleading Account" msgstr "Conta Enganosa" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3088,7 +3113,7 @@ msgstr "Lista de moderaรงรฃo criada" msgid "Moderation lists" msgstr "Listas de moderaรงรฃo" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listas de Moderaรงรฃo" @@ -3097,7 +3122,7 @@ msgstr "Listas de Moderaรงรฃo" msgid "Moderation settings" msgstr "Moderaรงรฃo" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "Moderaรงรฃo" @@ -3110,7 +3135,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "Mais" @@ -3152,11 +3177,11 @@ msgstr "Silenciar posts com {displayTag}" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "Silenciar apenas tags" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "Silenciar texto e tags" @@ -3173,21 +3198,21 @@ msgstr "Silenciar lista" msgid "Mute these accounts?" msgstr "Silenciar estas contas?" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "Silenciar esta palavra no conteรบdo de um post e tags" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "Silenciar esta palavra apenas nas tags de um post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Silenciar thread" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "Silenciar palavras/tags" @@ -3199,7 +3224,7 @@ msgstr "Silenciada" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -3225,7 +3250,7 @@ msgstr "Silenciar รฉ privado. Contas silenciadas podem interagir com vocรช, mas msgid "My Birthday" msgstr "Meu Aniversรกrio" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Meus Feeds" @@ -3241,7 +3266,7 @@ msgstr "Meus feeds salvos" msgid "My Saved Feeds" msgstr "Meus Feeds Salvos" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nome" @@ -3323,8 +3348,8 @@ msgctxt "action" msgid "New post" msgstr "Novo post" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3394,7 +3419,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/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "Vocรช nรฃo estรก mais seguindo {0}" @@ -3402,7 +3427,7 @@ msgstr "Vocรช nรฃo estรก mais seguindo {0}" msgid "No longer than 253 characters" msgstr "No mรกximo 253 caracteres" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "Nenhuma mensagem ainda" @@ -3410,7 +3435,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:118 msgid "No notifications yet!" msgstr "Nenhuma notificaรงรฃo!" @@ -3421,6 +3446,10 @@ msgstr "Nenhuma notificaรงรฃo!" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3434,13 +3463,13 @@ msgstr "" msgid "No results found" msgstr "Nenhum resultado encontrado" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "Nenhum resultado encontrado para {query}" @@ -3479,7 +3508,7 @@ msgstr "Nudez nรฃo-erรณtica" #~ msgid "Not Applicable." #~ msgstr "Nรฃo Aplicรกvel." -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Nรฃo encontrado" @@ -3490,7 +3519,7 @@ msgid "Not right now" msgstr "Agora nรฃo" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "Nota sobre compartilhamento" @@ -3511,13 +3540,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Notificaรงรตes" @@ -3567,11 +3596,11 @@ msgstr "Respostas mais antigas primeiro" msgid "Onboarding reset" msgstr "Resetar tutoriais" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estรฃo sem texto alternativo." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "Apenas imagens .jpg ou .png sรฃo permitidas" @@ -3601,17 +3630,17 @@ msgstr "Abrir" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "Abrir criador de avatar" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Abrir seletor de emojis" @@ -3631,11 +3660,11 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "Abrir opรงรตes de palavras/tags silenciadas" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Abrir navegaรงรฃo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "Abrir opรงรตes do post" @@ -3744,8 +3773,8 @@ msgstr "Abre o formulรกrio de redefiniรงรฃo de senha" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "Abre a tela para editar feeds salvos" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "Abre a tela para editar feeds salvos" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3789,8 +3818,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Opรงรฃo {0} de {numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "Se quiser adicionar mais informaรงรตes, digite abaixo:" @@ -3854,15 +3883,15 @@ msgstr "Senha atualizada!" msgid "Pause" msgstr "Pausar" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "Pessoas" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" @@ -3941,15 +3970,15 @@ msgstr "Por favor, complete o captcha de verificaรงรฃo." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Por favor, confirme seu e-mail antes de alterรก-lo. Este รฉ um requisito temporรกrio enquanto ferramentas de atualizaรงรฃo de e-mail sรฃo adicionadas, e em breve serรก removido." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Por favor, insira um nome รบnico para esta Senha de Aplicativo ou use nosso nome gerado automaticamente." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Por favor, insira uma palavra, tag ou frase para silenciar" @@ -3961,7 +3990,7 @@ msgstr "Por favor, digite o seu e-mail." msgid "Please enter your password as well:" msgstr "Por favor, digite sua senha tambรฉm:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 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}" @@ -3978,7 +4007,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:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "Aguarde atรฉ que a prรฉvia de link termine de carregar" @@ -3990,28 +4019,28 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Postar" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "Post por {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "Post por @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Post excluรญdo" @@ -4050,11 +4079,11 @@ msgstr "posts" msgid "Posts" msgstr "Posts" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "Posts podem ser silenciados baseados no seu conteรบdo, tags ou ambos." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Posts ocultados" @@ -4082,6 +4111,10 @@ msgstr "Tentar novamente" #~ msgid "Press to Retry" #~ msgstr "Tentar novamente" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Imagem anterior" @@ -4099,11 +4132,11 @@ msgstr "Priorizar seus Seguidores" msgid "Privacy" msgstr "Privacidade" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Polรญtica de Privacidade" @@ -4123,8 +4156,8 @@ msgstr "perfil" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Perfil" @@ -4148,16 +4181,16 @@ 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:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Publicar post" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Publicar resposta" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4185,7 +4218,7 @@ msgstr "รndices" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4193,7 +4226,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "Motivo: {0}" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "Buscas Recentes" @@ -4213,12 +4246,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Remover" @@ -4238,25 +4271,25 @@ msgstr "Remover banner" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Remover feed" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "Remover feed?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Remover dos meus feeds?" @@ -4268,15 +4301,15 @@ msgstr "Remover imagem" msgid "Remove image preview" msgstr "Remover visualizaรงรฃo da imagem" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "Remover palavra silenciada da lista" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4284,12 +4317,12 @@ msgstr "" msgid "Remove quote" msgstr "Remover citaรงรฃo" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Desfazer repost" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "Remover este feed dos feeds salvos" @@ -4298,7 +4331,7 @@ msgstr "Remover este feed dos feeds salvos" msgid "Removed from list" msgstr "Removido da lista" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Removido dos meus feeds" @@ -4329,7 +4362,7 @@ msgstr "Respostas" msgid "Replies to this thread are disabled" msgstr "Respostas para esta thread estรฃo desativadas" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -4389,8 +4422,8 @@ msgstr "Denunciar Lista" msgid "Report message" msgstr "Denunciar mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Denunciar post" @@ -4406,8 +4439,8 @@ msgstr "Denunciar este feed" msgid "Report this list" msgstr "Denunciar esta lista" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "Denunciar esta mensagem" @@ -4420,9 +4453,9 @@ msgstr "Denunciar este post" msgid "Report this user" msgstr "Denunciar este usuรกrio" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Repostar" @@ -4432,7 +4465,7 @@ msgstr "Repostar" msgid "Repost" msgstr "Repostar" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4458,7 +4491,7 @@ msgstr "Repostado por <0><1/>" msgid "reposted your post" msgstr "repostou seu post" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Reposts" @@ -4561,8 +4594,8 @@ msgid "Returns to previous page" msgstr "Voltar para pรกgina anterior" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4642,20 +4675,20 @@ msgid "Scroll to top" msgstr "Ir para o topo" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Buscar" @@ -4663,7 +4696,7 @@ msgstr "Buscar" msgid "Search for \"{query}\"" msgstr "Pesquisar por \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "Pesquisar por \"{searchText}\"" @@ -4785,7 +4818,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:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "Selecione o(s) serviรงo(s) de moderaรงรฃo para reportar" @@ -4847,8 +4880,8 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar E-mail" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Enviar comentรกrios" @@ -4857,14 +4890,14 @@ msgstr "Enviar comentรกrios" msgid "Send message" msgstr "Enviar mensagem" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "Denunciar" @@ -4877,8 +4910,8 @@ msgstr "Denunciar via {0}" msgid "Send verification email" msgstr "Enviar e-mail de verificaรงรฃo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -4962,11 +4995,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:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Configuraรงรตes" @@ -4985,8 +5018,8 @@ msgstr "Compartilhar" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5001,7 +5034,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "Compartilhar assim" @@ -5053,7 +5086,7 @@ msgstr "Mostrar rรณtulo" msgid "Show badge and filter from feeds" msgstr "Mostrar rรณtulo e filtrar dos feeds" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "Mostrar usuรกrios parecidos com {0}" @@ -5061,19 +5094,19 @@ msgstr "Mostrar usuรกrios parecidos com {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "Mostrar menos disso" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Mostrar Mais" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "Mostrar mais disso" @@ -5162,9 +5195,9 @@ msgstr "Mostra posts de {0} no seu feed" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5195,9 +5228,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5238,7 +5271,7 @@ msgstr "Desenvolvimento de software" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Algo deu errado" @@ -5270,7 +5303,7 @@ msgstr "Classificar respostas de um post por:" #~ msgid "Source:" #~ msgstr "Fonte:" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5323,13 +5356,13 @@ msgstr "Passo {0} de {1}" msgid "Storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, vocรช precisa reiniciar o app agora." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5360,7 +5393,7 @@ msgstr "Inscrever-se neste rotulador" msgid "Subscribe to this list" msgstr "Inscreva-se nesta lista" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "Sugestรตes de Seguidores" @@ -5372,7 +5405,7 @@ msgstr "Sugeridos para vocรช" msgid "Suggestive" msgstr "Sugestivo" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5399,7 +5432,7 @@ msgstr "Sistema" msgid "System log" msgstr "Log do sistema" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "tag" @@ -5427,11 +5460,11 @@ msgstr "" msgid "Terms" msgstr "Termos" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Termos de Serviรงo" @@ -5441,17 +5474,17 @@ msgstr "Termos de Serviรงo" msgid "Terms used violate community standards" msgstr "Termos utilizados violam as diretrizes da comunidade" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "texto" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo de entrada de texto" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "Obrigado. Sua denรบncia foi enviada." @@ -5463,7 +5496,7 @@ msgstr "Contรฉm o seguinte:" msgid "That handle is already taken." msgstr "Este identificador de usuรกrio jรก estรก sendo usado." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderรก interagir com vocรช apรณs o desbloqueio." @@ -5484,11 +5517,11 @@ msgstr "A Polรญtica de Direitos Autorais foi movida para <0/>" msgid "The feed has been replaced with Discover." msgstr "Este feed foi substituรญdo pelo Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "Os seguintes rรณtulos foram aplicados sobre sua conta." -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "Os seguintes rรณtulos foram aplicados sobre seu conteรบdo." @@ -5526,7 +5559,7 @@ msgstr "" 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Tivemos um problema ao remover este feed, por favor verifique sua conexรฃo com a internet e tente novamente." @@ -5554,12 +5587,12 @@ msgstr "Tivemos um problema ao conectar com o Tenor." msgid "There was an issue contacting the server" msgstr "Tivemos um problema ao contatar o servidor deste feed" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 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." @@ -5576,8 +5609,8 @@ msgstr "Tivemos um problema ao carregar esta lista. Toque aqui para tentar de no 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 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." @@ -5589,9 +5622,9 @@ msgstr "Tivemos um problema ao enviar sua denรบncia. Por favor, verifique sua co msgid "There was an issue with fetching your app passwords" msgstr "Tivemos um problema ao carregar suas senhas de app." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5636,7 +5669,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "Esta contestaรงรฃo serรก enviada para <0>{0}." @@ -5669,28 +5702,37 @@ msgstr "Este conteรบdo รฉ hospedado por {0}. Deseja ativar a mรญdia externa?" msgid "This content is not available because one of the users involved has blocked the other." msgstr "Este conteรบdo nรฃo estรก disponรญvel porque um dos usuรกrios bloqueou o outro." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Este conteรบdo nรฃo รฉ visรญvel sem uma conta do Bluesky." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "Esta funcionalidade estรก em beta. Vocรช pode ler mais sobre exportaรงรฃo de repositรณrios <0>neste post do nosso blog." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Este feed estรก recebendo muito trรกfego e estรก temporariamente indisponรญvel. Por favor, tente novamente mais tarde." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Este feed estรก vazio!" +#~ msgid "This feed is empty!" +#~ msgstr "Este feed estรก vazio!" #: 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 "Este feed estรก vazio! Talvez vocรช precise seguir mais usuรกrios ou configurar os idiomas filtrados." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 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." @@ -5719,7 +5761,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:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -5739,20 +5781,20 @@ msgstr "Esta lista estรก vazia!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "Este serviรงo de moderaรงรฃo estรก indisponรญvel. Veja mais detalhes abaixo. Se este problema persistir, entre em contato." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Vocรช jรก tem uma senha com esse nome" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Este post foi excluรญdo." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "Este post serรก escondido de todos os feeds." @@ -5801,7 +5843,7 @@ msgstr "Este usuรกrio nรฃo segue ninguรฉm ainda." #~ msgid "This warning is only available for posts with media attached." #~ msgstr "Este aviso sรณ estรก disponรญvel para publicaรงรตes com mรญdia anexada." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 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." @@ -5818,7 +5860,7 @@ msgstr "Preferรชncias das Threads" msgid "Threaded Mode" msgstr "Visualizaรงรฃo de Threads" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Preferรชncias das Threads" @@ -5834,7 +5876,7 @@ msgstr "Para denunciar uma conversa, por favor, denuncie uma das mensagens indiv msgid "To whom would you like to send this report?" msgstr "Para quem vocรช gostaria de enviar esta denรบncia?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "Alternar entre opรงรตes de uma palavra silenciada" @@ -5847,7 +5889,7 @@ msgid "Toggle to enable or disable adult content" msgstr "Ligar ou desligar conteรบdo adulto" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "Principais" @@ -5857,10 +5899,10 @@ msgstr "Transformaรงรตes" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "Traduzir" @@ -5902,14 +5944,14 @@ msgstr "Nรฃo foi possรญvel entrar em contato com seu serviรงo. Por favor, verifi #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -5924,12 +5966,12 @@ msgstr "" msgid "Unblock Account" msgstr "Desbloquear Conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "Desbloquear Conta?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5944,7 +5986,7 @@ msgstr "Deixar de seguir" msgid "Unfollow" msgstr "Deixar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" @@ -5987,8 +6029,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "Dessilenciar notificaรงรตes" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Dessilenciar thread" @@ -6038,7 +6080,7 @@ msgstr "Alterar para {handle}" msgid "Updating..." msgstr "Atualizando..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "Enviar uma foto" @@ -6099,7 +6141,7 @@ msgstr "Usar recomendados" msgid "Use the DNS panel" msgstr "Usar o painel do meu DNS" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -6266,11 +6308,11 @@ msgstr "Ver informaรงรตes sobre estes rรณtulos" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Ver perfil" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Ver o avatar" @@ -6282,6 +6324,11 @@ msgstr "Ver este rotulador provido por @{0}" msgid "View users who like this feed" msgstr "Ver usuรกrios que curtiram este feed" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6305,7 +6352,7 @@ msgstr "Avisar e filtrar dos feeds" msgid "We couldn't find any results for that hashtag." msgstr "Nรฃo encontramos nenhum post com esta hashtag." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "Nรฃo foi possรญvel carregar esta conversa" @@ -6321,7 +6368,7 @@ msgstr "Esperamos que vocรช se divirta. Lembre-se, o Bluesky รฉ:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Nรฃo temos mais posts de quem vocรช segue. Aqui estรฃo os mais novos de <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "Nรฃo recomendamos utilizar palavras comuns que aparecem em muitos posts, jรก que isso pode resultar em filtrar todos eles." @@ -6361,14 +6408,18 @@ msgstr "Estamos muito felizes em recebรช-lo!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, contate o criador da lista: @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nรฃo foi possรญvel carregar sua lista de palavras silenciadas. Por favor, tente novamente." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6392,7 +6443,7 @@ msgstr "Do que vocรช gosta?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "E aรญ?" @@ -6413,7 +6464,7 @@ msgstr "" msgid "Who can reply" msgstr "Quem pode responder" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "Opa!" @@ -6451,11 +6502,11 @@ msgstr "Largo" msgid "Write a message" msgstr "Escreva uma mensagem" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Escrever post" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Escreva sua resposta" @@ -6495,8 +6546,8 @@ msgstr "Vocรช estรก na fila." msgid "You are not following anyone." msgstr "Vocรช nรฃo segue ninguรฉm." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Vocรช tambรฉm pode descobrir novos feeds para seguir." @@ -6529,6 +6580,10 @@ msgstr "" msgid "You do not have any followers." msgstr "Ninguรฉm segue vocรช ainda." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Vocรช ainda nรฃo tem nenhum convite! Nรณs lhe enviaremos alguns quando vocรช estiver hรก mais tempo no Bluesky." @@ -6616,15 +6671,15 @@ msgstr "Vocรช ainda nรฃo silenciou nenhuma conta. Para silenciar uma conta, aces msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: 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" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 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:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 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." @@ -6636,7 +6691,7 @@ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "Vocรช deve selecionar no mรญnimo um rotulador" @@ -6644,11 +6699,11 @@ msgstr "Vocรช deve selecionar no mรญnimo um rotulador" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Vocรช nรฃo vai mais receber notificaรงรตes desta thread" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Vocรช vai receber notificaรงรตes desta thread" @@ -6656,15 +6711,15 @@ msgstr "Vocรช vai receber notificaรงรตes desta thread" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Vocรช receberรก um e-mail com um \"cรณdigo de redefiniรงรฃo\". Digite esse cรณdigo aqui, e entรฃo digite sua nova senha." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "Vocรช: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6692,7 +6747,7 @@ msgstr "Tudo pronto!" msgid "You've chosen to hide a word or tag within this post." msgstr "Vocรช escolheu esconder uma palavra ou tag deste post." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -6738,7 +6793,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -6750,7 +6805,7 @@ msgstr "Seu identificador completo serรก" msgid "Your full handle will be <0>@{0}" msgstr "Seu usuรกrio completo serรก <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "Suas palavras silenciadas" @@ -6758,7 +6813,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:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Seu post foi publicado" @@ -6774,11 +6829,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Sua resposta foi publicada" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 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" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index 54146dccb6..4a2a222d58 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -13,7 +13,7 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.4.2\n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -45,10 +45,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -63,11 +67,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -79,7 +83,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -134,7 +138,7 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} okunmamฤฑลŸ" @@ -199,12 +203,12 @@ msgstr "" #~ 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." -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "Gezinme baฤŸlantฤฑlarฤฑna ve ayarlara eriลŸin" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Profil ve diฤŸer gezinme baฤŸlantฤฑlarฤฑna eriลŸin" @@ -217,7 +221,7 @@ msgstr "EriลŸilebilirlik" msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "" @@ -261,7 +265,7 @@ msgstr "Hesap seรงenekleri" msgid "Account removed from quick access" msgstr "Hesap hฤฑzlฤฑ eriลŸimden kaldฤฑrฤฑldฤฑ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "Hesap engeli kaldฤฑrฤฑldฤฑ" @@ -274,7 +278,7 @@ msgstr "" msgid "Account unmuted" msgstr "Hesap susturulmasฤฑ kaldฤฑrฤฑldฤฑ" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -296,9 +300,9 @@ msgstr "Bu listeye bir kullanฤฑcฤฑ ekleyin" msgid "Add account" msgstr "Hesap ekle" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -332,15 +336,15 @@ msgstr "Uygulama ลžifresi Ekle" #~ msgid "Add link card:" #~ msgstr "BaฤŸlantฤฑ kartฤฑ ekle:" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" @@ -357,7 +361,7 @@ msgstr "Alan adฤฑnฤฑza aลŸaฤŸฤฑdaki DNS kaydฤฑnฤฑ ekleyin:" msgid "Add to Lists" msgstr "Listelere Ekle" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "Beslemelerime ekle" @@ -370,7 +374,7 @@ msgstr "Beslemelerime ekle" msgid "Added to list" msgstr "Listeye eklendi" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "Beslemelerime eklendi" @@ -396,12 +400,12 @@ msgstr "" msgid "Advanced" msgstr "GeliลŸmiลŸ" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -424,13 +428,13 @@ msgstr "Zaten bir kodunuz mu var?" msgid "Already signed in as @{0}" msgstr "Zaten @{0} olarak oturum aรงฤฑldฤฑ" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -478,6 +482,7 @@ msgstr "Bir sorun oluลŸtu, lรผtfen tekrar deneyin." msgid "an unknown error occurred" msgstr "" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -503,11 +508,11 @@ msgstr "Uygulama Dili" msgid "App password deleted" msgstr "Uygulama ลŸifresi silindi" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "Uygulama ลžifre adlarฤฑ yalnฤฑzca harfler, sayฤฑlar, boลŸluklar, tireler ve alt รงizgiler iรงerebilir." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "Uygulama ลžifre adlarฤฑ en az 4 karakter uzunluฤŸunda olmalฤฑdฤฑr." @@ -515,18 +520,18 @@ msgstr "Uygulama ลžifre adlarฤฑ en az 4 karakter uzunluฤŸunda olmalฤฑdฤฑr." msgid "App password settings" msgstr "Uygulama ลŸifresi ayarlarฤฑ" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "Uygulama ลžifreleri" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "" @@ -538,7 +543,7 @@ msgstr "" #~ msgid "Appeal Content Warning" #~ msgstr "ฤฐรงerik Uyarฤฑsฤฑnฤฑ ฤฐtiraz Et" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -563,7 +568,7 @@ msgid "Appearance" msgstr "Gรถrรผnรผm" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "" @@ -587,15 +592,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "Bu taslaฤŸฤฑ silmek istediฤŸinizden emin misiniz?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "Emin misiniz?" @@ -620,8 +625,8 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -634,7 +639,7 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Geri" @@ -659,7 +664,7 @@ msgstr "DoฤŸum gรผnรผ" msgid "Birthday:" msgstr "DoฤŸum gรผnรผ:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "" @@ -703,7 +708,7 @@ msgstr "Engellendi" msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" @@ -784,8 +789,8 @@ msgstr "" msgid "Books" msgstr "Kitaplar" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "" @@ -801,7 +806,7 @@ msgstr "ฤฐลŸ" #~ msgid "Button disabled. Input custom domain to proceed." #~ msgstr "Button devre dฤฑลŸฤฑ. Devam etmek iรงin รถzel alan adฤฑnฤฑ girin." -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "tarafฤฑndan โ€”" @@ -817,7 +822,7 @@ msgstr "" #~ msgid "by @{0}" #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "tarafฤฑndan <0/>" @@ -825,7 +830,7 @@ msgstr "tarafฤฑndan <0/>" msgid "By creating an account you agree to the {els}." msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "siz tarafฤฑndan" @@ -833,7 +838,7 @@ msgstr "siz tarafฤฑndan" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 "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." @@ -842,8 +847,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:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -859,8 +864,8 @@ msgstr "Yalnฤฑzca harfler, sayฤฑlar, boลŸluklar, tireler ve alt รงizgiler iรงere #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "ฤฐptal" @@ -889,7 +894,7 @@ msgstr "Resim kฤฑrpma iลŸlemini iptal et" msgid "Cancel profile editing" msgstr "Profil dรผzenlemeyi iptal et" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "Alฤฑntฤฑ gรถnderiyi iptal et" @@ -953,7 +958,7 @@ msgstr "Gรถnderi dilini {0} olarak deฤŸiลŸtir" msgid "Change Your Email" msgstr "E-postanฤฑzฤฑ DeฤŸiลŸtirin" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -965,7 +970,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -1055,7 +1060,7 @@ msgid "Clear all storage data (restart after this)" msgstr "Tรผm depolama verilerini temizle (bundan sonra yeniden baลŸlat)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "Arama sorgusunu temizle" @@ -1163,7 +1168,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:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "Gรถnderi bestecisini kapatฤฑr ve gรถnderi taslaฤŸฤฑnฤฑ siler" @@ -1187,7 +1192,7 @@ msgstr "Komedi" msgid "Comics" msgstr "ร‡izgi romanlar" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Topluluk Kurallarฤฑ" @@ -1200,7 +1205,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:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "En fazla {MAX_GRAPHEME_LENGTH} karakter uzunluฤŸunda gรถnderiler oluลŸturun" @@ -1330,7 +1335,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Devam et" @@ -1338,8 +1343,12 @@ msgstr "Devam et" msgid "Continue as {0} (currently signed in)" msgstr "" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "Sonraki adฤฑma devam et" @@ -1352,7 +1361,7 @@ msgstr "Sonraki adฤฑma devam et" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Herhangi bir hesabฤฑ takip etmeden sonraki adฤฑma devam et" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1360,7 +1369,7 @@ msgstr "" msgid "Cooking" msgstr "Yemek piลŸirme" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Kopyalandฤฑ" @@ -1370,10 +1379,10 @@ msgid "Copied build version to clipboard" msgstr "Sรผrรผm numarasฤฑ panoya kopyalandฤฑ" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "Panoya kopyalandฤฑ" @@ -1381,11 +1390,11 @@ msgstr "Panoya kopyalandฤฑ" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "Uygulama ลŸifresini kopyalar" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Kopyala" @@ -1402,8 +1411,8 @@ msgstr "" msgid "Copy link to list" msgstr "Liste baฤŸlantฤฑsฤฑnฤฑ kopyala" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "Gรถnderi baฤŸlantฤฑsฤฑnฤฑ kopyala" @@ -1416,12 +1425,12 @@ msgstr "Gรถnderi baฤŸlantฤฑsฤฑnฤฑ kopyala" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "Gรถnderi metnini kopyala" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Telif Hakkฤฑ Politikasฤฑ" @@ -1472,11 +1481,11 @@ msgstr "Hesap OluลŸtur" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "Uygulama ลžifresi OluลŸtur" @@ -1518,7 +1527,7 @@ msgstr "" msgid "Custom domain" msgstr "ร–zel alan adฤฑ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 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." @@ -1561,7 +1570,7 @@ msgid "Debug panel" msgstr "Hata ayฤฑklama paneli" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1616,8 +1625,8 @@ msgstr "Hesabฤฑmฤฑ sil" msgid "Delete My Accountโ€ฆ" msgstr "Hesabฤฑmฤฑ Silโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "Gรถnderiyi sil" @@ -1625,7 +1634,7 @@ msgstr "Gรถnderiyi sil" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "Bu gรถnderiyi sil?" @@ -1648,7 +1657,7 @@ msgstr "" msgid "Description" msgstr "Aรงฤฑklama" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "" @@ -1656,7 +1665,7 @@ msgstr "" #~ msgid "Developer Tools" #~ msgstr "GeliลŸtirici Araรงlarฤฑ" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "Bir ลŸey sรถylemek istediniz mi?" @@ -1697,7 +1706,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "Sil" @@ -1705,7 +1714,7 @@ msgstr "Sil" #~ msgid "Discard draft" #~ msgstr "TaslaฤŸฤฑ sil" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "" @@ -1714,8 +1723,8 @@ 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/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Yeni รถzel beslemeler keลŸfet" @@ -1723,7 +1732,7 @@ msgstr "Yeni รถzel beslemeler keลŸfet" #~ msgid "Discover new feeds" #~ msgstr "Yeni beslemeler keลŸfet" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "" @@ -1763,11 +1772,11 @@ msgstr "Alan adฤฑ doฤŸrulandฤฑ!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1850,6 +1859,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/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1873,8 +1887,9 @@ msgstr "Liste ayrฤฑntฤฑlarฤฑnฤฑ dรผzenle" msgid "Edit Moderation List" msgstr "Dรผzenleme Listesini Dรผzenle" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Beslemelerimi Dรผzenle" @@ -1884,19 +1899,19 @@ msgid "Edit my profile" msgstr "Profilimi dรผzenle" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "Profil dรผzenle" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "Profil Dรผzenle" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "Kayฤฑtlฤฑ Beslemeleri Dรผzenle" +#~ msgid "Edit Saved Feeds" +#~ msgstr "Kayฤฑtlฤฑ Beslemeleri Dรผzenle" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1949,8 +1964,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "" @@ -2010,7 +2025,7 @@ msgstr "Beslemenin sonu" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Bu Uygulama ลžifresi iรงin bir ad girin" @@ -2018,8 +2033,8 @@ msgstr "Bu Uygulama ลžifresi iรงin bir ad girin" msgid "Enter a password" msgstr "" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "" @@ -2077,7 +2092,7 @@ msgid "Error receiving captcha response." msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Hata:" @@ -2169,7 +2184,7 @@ msgstr "Harici Medya" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Harici medya, web sitelerinin siz ve cihazฤฑnฤฑz hakkฤฑnda bilgi toplamasฤฑna izin verebilir. Bilgi, \"oynat\" dรผฤŸmesine basana kadar gรถnderilmez veya istenmez." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2179,8 +2194,8 @@ msgstr "Harici Medya Tercihleri" msgid "External media settings" msgstr "Harici medya ayarlarฤฑ" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Uygulama ลŸifresi oluลŸturulamadฤฑ." @@ -2192,7 +2207,7 @@ msgstr "Liste oluลŸturulamadฤฑ. ฤฐnternet baฤŸlantฤฑnฤฑzฤฑ kontrol edin ve tekra msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "Gรถnderi silinemedi, lรผtfen tekrar deneyin" @@ -2226,7 +2241,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -2236,15 +2251,15 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "Besleme" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} tarafฤฑndan besleme" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "Besleme รงevrimdฤฑลŸฤฑ" @@ -2253,17 +2268,16 @@ msgstr "Besleme รงevrimdฤฑลŸฤฑ" #~ msgstr "Besleme Tercihleri" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Geribildirim" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "Beslemeler" @@ -2296,12 +2310,12 @@ msgid "Finalizing" msgstr "Tamamlanฤฑyor" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Takip edilecek hesaplar bul" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "" @@ -2348,7 +2362,7 @@ msgstr "Dikey รงevir" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2359,7 +2373,7 @@ msgctxt "action" msgid "Follow" msgstr "Takip et" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "{0} takip et" @@ -2389,6 +2403,10 @@ msgstr "" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "BaลŸlamak iรงin bazฤฑ kullanฤฑcฤฑlarฤฑ takip edin. Sizi ilginรง bulduฤŸunuz kiลŸilere dayanarak size daha fazla kullanฤฑcฤฑ รถnerebiliriz." +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "{0} tarafฤฑndan takip ediliyor" @@ -2410,18 +2428,27 @@ msgstr "sizi takip etti" msgid "Followers" msgstr "Takipรงiler" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Takip edilenler" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "{0} takip ediliyor" @@ -2433,9 +2460,7 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2457,7 +2482,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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." @@ -2508,7 +2533,7 @@ msgstr "" msgid "Get Started" msgstr "BaลŸlayฤฑn" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "" @@ -2536,9 +2561,9 @@ msgstr "Geri git" msgid "Go Back" msgstr "Geri Git" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2558,7 +2583,7 @@ msgstr "" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "@{queryMaybeHandle} adresine git" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2591,7 +2616,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "" @@ -2604,11 +2629,11 @@ msgid "Having trouble?" msgstr "Sorun mu yaลŸฤฑyorsunuz?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Yardฤฑm" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2624,7 +2649,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "ฤฐลŸte uygulama ลŸifreniz." @@ -2635,7 +2660,7 @@ 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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "Gizle" @@ -2644,8 +2669,8 @@ msgctxt "action" msgid "Hide" msgstr "Gizle" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "Gรถnderiyi gizle" @@ -2654,7 +2679,7 @@ msgstr "Gรถnderiyi gizle" msgid "Hide the content" msgstr "ฤฐรงeriฤŸi gizle" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "Bu gรถnderiyi gizle?" @@ -2666,23 +2691,23 @@ msgstr "Kullanฤฑcฤฑ listesini gizle" #~ msgid "Hides posts from {0} in your feed" #~ msgstr "Beslemenizdeki {0} gรถnderilerini gizler" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "Hmm, besleme sunucusuna ulaลŸฤฑrken bir tรผr sorun oluลŸtu. Lรผtfen bu konuda besleme sahibini bilgilendirin." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "Hmm, besleme sunucusunun yanlฤฑลŸ yapฤฑlandฤฑrฤฑlmฤฑลŸ gรถrรผnรผyor. Lรผtfen bu konuda besleme sahibini bilgilendirin." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "Hmm, besleme sunucusunun รงevrimdฤฑลŸฤฑ gรถrรผnรผyor. Lรผtfen bu konuda besleme sahibini bilgilendirin." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "Hmm, besleme sunucusu kรถtรผ bir yanฤฑt verdi. Lรผtfen bu konuda besleme sahibini bilgilendirin." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, bu beslemeyi bulmakta sorun yaลŸฤฑyoruz. SilinmiลŸ olabilir." @@ -2694,11 +2719,11 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "Ana Sayfa" @@ -2758,7 +2783,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -2810,7 +2835,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:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "Uygulama ลŸifresi iรงin ad girin" @@ -2867,7 +2892,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "Geรงersiz veya desteklenmeyen gรถnderi kaydฤฑ" @@ -2952,11 +2977,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "" @@ -2968,7 +2993,7 @@ msgstr "Dil seรงimi" msgid "Language settings" msgstr "Dil ayarlarฤฑ" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Dil Ayarlarฤฑ" @@ -2982,7 +3007,7 @@ msgstr "Diller" #~ msgstr "Son adฤฑm!" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "" @@ -3072,8 +3097,8 @@ msgid "Like this feed" msgstr "Bu beslemeyi beฤŸen" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "BeฤŸenenler" @@ -3109,11 +3134,11 @@ msgstr "gรถnderinizi beฤŸendi" msgid "Likes" msgstr "BeฤŸeniler" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "Bu gรถnderideki beฤŸeniler" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "Liste" @@ -3125,7 +3150,7 @@ msgstr "Liste Avatarฤฑ" msgid "List blocked" msgstr "Liste engellendi" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "{0} tarafฤฑndan liste" @@ -3149,12 +3174,12 @@ msgstr "Liste engeli kaldฤฑrฤฑldฤฑ" msgid "List unmuted" msgstr "Liste sessizden รงฤฑkarฤฑldฤฑ" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "Listeler" @@ -3167,7 +3192,7 @@ msgstr "" #~ msgid "Load more posts" #~ msgstr "Daha fazla gรถnderi yรผkle" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "Yeni bildirimleri yรผkle" @@ -3186,7 +3211,7 @@ msgstr "Yรผkleniyor..." #~ msgid "Local dev server" #~ msgstr "Yerel geliลŸtirme sunucusu" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "Log" @@ -3222,7 +3247,7 @@ msgstr "" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "" @@ -3238,7 +3263,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "Bu gitmek istediฤŸiniz yer olduฤŸundan emin olun!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "" @@ -3260,8 +3285,8 @@ msgstr "bahsedilen kullanฤฑcฤฑlar" msgid "Mentioned users" msgstr "Bahsedilen kullanฤฑcฤฑlar" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "Menรผ" @@ -3270,11 +3295,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "Sunucudan mesaj: {0}" @@ -3291,7 +3316,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3306,7 +3331,7 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3343,7 +3368,7 @@ msgstr "Moderasyon listesi gรผncellendi" msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" @@ -3352,7 +3377,7 @@ msgstr "Moderasyon Listeleri" msgid "Moderation settings" msgstr "Moderasyon ayarlarฤฑ" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "" @@ -3365,7 +3390,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:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "" @@ -3411,11 +3436,11 @@ msgstr "" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "" @@ -3436,21 +3461,21 @@ msgstr "Bu hesaplarฤฑ sessize al?" #~ msgid "Mute this List" #~ msgstr "Bu Listeyi Sessize Al" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "Konuyu sessize al" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "" @@ -3462,7 +3487,7 @@ msgstr "Sessize alฤฑndฤฑ" msgid "Muted accounts" msgstr "Sessize alฤฑnan hesaplar" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Sessize Alฤฑnan Hesaplar" @@ -3488,7 +3513,7 @@ 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:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "Beslemelerim" @@ -3504,7 +3529,7 @@ msgstr "" msgid "My Saved Feeds" msgstr "Kayฤฑtlฤฑ Beslemelerim" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Ad" @@ -3591,8 +3616,8 @@ msgctxt "action" msgid "New post" msgstr "Yeni gรถnderi" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3662,7 +3687,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "{0} artฤฑk takip edilmiyor" @@ -3670,7 +3695,7 @@ msgstr "{0} artฤฑk takip edilmiyor" msgid "No longer than 253 characters" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "" @@ -3678,7 +3703,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "Henรผz bildirim yok!" @@ -3689,6 +3714,10 @@ msgstr "Henรผz bildirim yok!" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3702,13 +3731,13 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "\"{query}\" iรงin sonuรง bulunamadฤฑ" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "{query} iรงin sonuรง bulunamadฤฑ" @@ -3747,7 +3776,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "Uygulanamaz." -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "Bulunamadฤฑ" @@ -3758,7 +3787,7 @@ msgid "Not right now" msgstr "ลžu anda deฤŸil" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "" @@ -3779,13 +3808,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "Bildirimler" @@ -3835,11 +3864,11 @@ msgstr "En eski yanฤฑtlar รถnce" msgid "Onboarding reset" msgstr "Onboarding sฤฑfฤฑrlama" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "Bir veya daha fazla resimde alternatif metin eksik." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "" @@ -3869,17 +3898,17 @@ msgstr "Aรง" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "Emoji seรงiciyi aรง" @@ -3899,11 +3928,11 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Navigasyonu aรง" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "" @@ -4032,8 +4061,8 @@ msgstr "ลžifre sฤฑfฤฑrlama formunu aรงar" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "Kayฤฑtlฤฑ Beslemeleri dรผzenlemek iรงin ekranฤฑ 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 msgid "Opens screen with all saved feeds" @@ -4085,8 +4114,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "{0} seรงeneฤŸi, {numItems} seรงenekten" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "" @@ -4154,15 +4183,15 @@ msgstr "ลžifre gรผncellendi!" msgid "Pause" msgstr "" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "@{0} tarafฤฑndan takip edilenler" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "@{0} tarafฤฑndan takip edilenler" @@ -4245,7 +4274,7 @@ msgstr "" msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "E-postanฤฑzฤฑ deฤŸiลŸtirmeden รถnce onaylayฤฑn. Bu, e-posta gรผncelleme araรงlarฤฑ eklenirken geรงici bir gerekliliktir ve yakฤฑnda kaldฤฑrฤฑlacaktฤฑr." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Uygulama ลŸifreniz iรงin bir ad girin. Tรผm boลŸluklar izin verilmez." @@ -4253,11 +4282,11 @@ 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:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 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." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" @@ -4277,7 +4306,7 @@ msgstr "E-postanฤฑzฤฑ girin." msgid "Please enter your password as well:" msgstr "Lรผtfen ลŸifrenizi de girin:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4299,7 +4328,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "Lรผtfen E-postanฤฑzฤฑ DoฤŸrulayฤฑn" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "BaฤŸlantฤฑ kartฤฑnฤฑzฤฑn yรผklenmesini bekleyin" @@ -4311,28 +4340,28 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "Gรถnder" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "Gรถnderi" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "{0} tarafฤฑndan gรถnderi" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "@{0} tarafฤฑndan gรถnderi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "Gรถnderi silindi" @@ -4371,11 +4400,11 @@ msgstr "" msgid "Posts" msgstr "Gรถnderiler" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "Gรถnderiler gizlendi" @@ -4403,6 +4432,10 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "ร–nceki resim" @@ -4420,11 +4453,11 @@ msgstr "Takipรงilerinizi ร–nceliklendirin" msgid "Privacy" msgstr "Gizlilik" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Gizlilik Politikasฤฑ" @@ -4444,8 +4477,8 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "Profil" @@ -4469,16 +4502,16 @@ 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:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "Gรถnderiyi yayฤฑnla" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "Yanฤฑtฤฑ yayฤฑnla" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4506,7 +4539,7 @@ msgstr "Oranlar" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4514,7 +4547,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "" @@ -4534,12 +4567,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "Kaldฤฑr" @@ -4563,25 +4596,25 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "Beslemeyi kaldฤฑr" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Beslemelerimden kaldฤฑr" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4593,15 +4626,15 @@ msgstr "Resmi kaldฤฑr" msgid "Remove image preview" msgstr "Resim รถnizlemesini kaldฤฑr" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4609,8 +4642,8 @@ msgstr "" msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "Yeniden gรถndermeyi kaldฤฑr" @@ -4618,7 +4651,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:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "" @@ -4631,7 +4664,7 @@ msgstr "" msgid "Removed from list" msgstr "Listeden kaldฤฑrฤฑldฤฑ" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "Beslemelerimden kaldฤฑrฤฑldฤฑ" @@ -4662,7 +4695,7 @@ msgstr "Yanฤฑtlar" msgid "Replies to this thread are disabled" msgstr "Bu konuya yanฤฑtlar devre dฤฑลŸฤฑ bฤฑrakฤฑldฤฑ" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "Yanฤฑtla" @@ -4726,8 +4759,8 @@ msgstr "Listeyi Raporla" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "Gรถnderiyi raporla" @@ -4743,8 +4776,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "" @@ -4757,9 +4790,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "Yeniden gรถnder" @@ -4769,7 +4802,7 @@ msgstr "Yeniden gรถnder" msgid "Repost" msgstr "Yeniden gรถnder" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4795,7 +4828,7 @@ msgstr "" msgid "reposted your post" msgstr "gรถnderinizi yeniden gรถnderdi" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "Bu gรถnderinin yeniden gรถnderilmesi" @@ -4914,8 +4947,8 @@ msgstr "" #~ msgstr "KUM KUTUSU. Gรถnderiler ve hesaplar kalฤฑcฤฑ deฤŸildir." #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4995,20 +5028,20 @@ msgid "Scroll to top" msgstr "BaลŸa kaydฤฑr" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "Ara" @@ -5016,7 +5049,7 @@ msgstr "Ara" msgid "Search for \"{query}\"" msgstr "\"{query}\" iรงin ara" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "" @@ -5147,7 +5180,7 @@ msgstr "{i} seรงeneฤŸi, {numItems} seรงenekten" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5217,8 +5250,8 @@ msgctxt "action" msgid "Send Email" msgstr "E-posta Gรถnder" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "Geribildirim gรถnder" @@ -5227,14 +5260,14 @@ msgstr "Geribildirim gรถnder" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "" @@ -5251,8 +5284,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -5383,11 +5416,11 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Bluesky istemcisi iรงin sunucuyu ayarlar" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "Ayarlar" @@ -5406,8 +5439,8 @@ msgstr "PaylaลŸ" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5422,7 +5455,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "" @@ -5478,7 +5511,7 @@ msgstr "" #~ msgid "Show embeds from {0}" #~ msgstr "{0} adresinden gรถmรผlรผ รถฤŸeleri gรถster" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "{0} adresine benzer takipรงileri gรถster" @@ -5486,19 +5519,19 @@ msgstr "{0} adresine benzer takipรงileri gรถster" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "Daha Fazla Gรถster" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -5591,9 +5624,9 @@ msgstr "Beslemenizde {0} adresinden gรถnderileri gรถsterir" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5634,9 +5667,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5685,7 +5718,7 @@ msgstr "Yazฤฑlฤฑm GeliลŸtirme" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "" @@ -5725,7 +5758,7 @@ msgstr "Aynฤฑ gรถnderiye verilen yanฤฑtlarฤฑ ลŸuna gรถre sฤฑrala:" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5786,13 +5819,13 @@ msgstr "" msgid "Storage cleared, you need to restart the app now." msgstr "Depolama temizlendi, ลŸimdi uygulamayฤฑ yeniden baลŸlatmanฤฑz gerekiyor." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5823,7 +5856,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Bu listeye abone ol" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "ร–nerilen Takipรงiler" @@ -5835,7 +5868,7 @@ msgstr "Sana รถnerilenler" msgid "Suggestive" msgstr "Tehlikeli" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5866,7 +5899,7 @@ msgstr "Sistem" msgid "System log" msgstr "Sistem gรผnlรผฤŸรผ" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "" @@ -5894,11 +5927,11 @@ msgstr "" msgid "Terms" msgstr "ลžartlar" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "Hizmet ลžartlarฤฑ" @@ -5908,17 +5941,17 @@ msgstr "Hizmet ลžartlarฤฑ" msgid "Terms used violate community standards" msgstr "" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Metin giriลŸ alanฤฑ" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "" @@ -5930,7 +5963,7 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "Hesap, engeli kaldฤฑrdฤฑktan sonra sizinle etkileลŸime geรงebilecek." @@ -5951,11 +5984,11 @@ msgstr "Telif Hakkฤฑ Politikasฤฑ <0/> konumuna taลŸฤฑndฤฑ" msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "" @@ -5993,7 +6026,7 @@ msgstr "" 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." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Bu beslemeyi kaldฤฑrma konusunda bir sorun oluลŸtu. Lรผtfen internet baฤŸlantฤฑnฤฑzฤฑ kontrol edin ve tekrar deneyin." @@ -6021,12 +6054,12 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Sunucuya ulaลŸma konusunda bir sorun oluลŸtu" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 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:126 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." @@ -6043,8 +6076,8 @@ msgstr "Listeyi almakta bir sorun oluลŸtu. Tekrar denemek iรงin buraya dokunun." 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:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -6056,9 +6089,9 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "Uygulama ลŸifrelerinizi almakta bir sorun oluลŸtu" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -6107,7 +6140,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6140,28 +6173,37 @@ msgstr "Bu iรงerik {0} tarafฤฑndan barฤฑndฤฑrฤฑlฤฑyor. Harici medyayฤฑ etkinleลŸ msgid "This content is not available because one of the users involved has blocked the other." msgstr "Bu iรงerik, iรงerikte yer alan kullanฤฑcฤฑlardan biri diฤŸerini engellediฤŸi iรงin mevcut deฤŸil." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Bu iรงerik, bir Bluesky hesabฤฑ olmadan gรถrรผntรผlenemez." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Bu besleme ลŸu anda yรผksek trafik alฤฑyor ve geรงici olarak kullanฤฑlamฤฑyor. Lรผtfen daha sonra tekrar deneyin." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "Bu besleme boลŸ!" +#~ msgid "This feed is empty!" +#~ msgstr "Bu besleme boลŸ!" #: 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 "Bu besleme boลŸ! Daha fazla kullanฤฑcฤฑ takip etmeniz veya dil ayarlarฤฑnฤฑzฤฑ ayarlamanฤฑz gerekebilir." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6190,7 +6232,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -6210,20 +6252,20 @@ msgstr "Bu liste boลŸ!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "Bu isim zaten kullanฤฑlฤฑyor" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "Bu gรถnderi silindi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "" @@ -6280,7 +6322,7 @@ msgstr "" #~ msgid "This warning is only available for posts with media attached." #~ msgstr "Bu uyarฤฑ yalnฤฑzca medya ekli gรถnderiler iรงin mevcuttur." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "" @@ -6301,7 +6343,7 @@ msgstr "Konu Tercihleri" msgid "Threaded Mode" msgstr "Konu Tabanlฤฑ Mod" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "Konu Tercihleri" @@ -6317,7 +6359,7 @@ msgstr "" msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "" @@ -6330,7 +6372,7 @@ msgid "Toggle to enable or disable adult content" msgstr "" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "" @@ -6340,10 +6382,10 @@ msgstr "DรถnรผลŸรผmler" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "ร‡evir" @@ -6385,14 +6427,14 @@ msgstr "Hizmetinize ulaลŸฤฑlamฤฑyor. Lรผtfen internet baฤŸlantฤฑnฤฑzฤฑ kontrol e #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "Engeli kaldฤฑr" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "Engeli kaldฤฑr" @@ -6407,12 +6449,12 @@ msgstr "" msgid "Unblock Account" msgstr "Hesabฤฑn engelini kaldฤฑr" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -6427,7 +6469,7 @@ msgstr "Takibi bฤฑrak" msgid "Unfollow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "{0} adresini takibi bฤฑrak" @@ -6474,8 +6516,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "Konunun sessizliฤŸini kaldฤฑr" @@ -6533,7 +6575,7 @@ msgstr "" msgid "Updating..." msgstr "Gรผncelleniyor..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "" @@ -6594,7 +6636,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 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." @@ -6773,11 +6815,11 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "Profili gรถrรผntรผle" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Avatarฤฑ gรถrรผntรผle" @@ -6789,6 +6831,11 @@ msgstr "" msgid "View users who like this feed" msgstr "" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6816,7 +6863,7 @@ msgstr "" msgid "We couldn't find any results for that hashtag." msgstr "" -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "" @@ -6832,7 +6879,7 @@ msgstr "Harika vakit geรงirmenizi umuyoruz. Unutmayฤฑn, Bluesky:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Takipรงilerinizden gรถnderi kalmadฤฑ. ฤฐลŸte <0/>'den en son gรถnderiler." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "" @@ -6876,14 +6923,18 @@ msgstr "Sizi aramฤฑzda gรถrmekten รงok mutluyuz!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "รœzgรผnรผz, ancak bu listeyi รงรถzemedik. Bu durum devam ederse, lรผtfen liste oluลŸturucu, @{handleOrDid} ile iletiลŸime geรงin." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6911,7 +6962,7 @@ msgstr "ฤฐlgi alanlarฤฑnฤฑz nelerdir?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "Nasฤฑlsฤฑnฤฑz?" @@ -6932,7 +6983,7 @@ msgstr "" msgid "Who can reply" msgstr "Kimler yanฤฑtlayabilir" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "" @@ -6970,11 +7021,11 @@ msgstr "GeniลŸ" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "Gรถnderi yaz" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Yanฤฑtฤฑnฤฑzฤฑ yazฤฑn" @@ -7018,8 +7069,8 @@ msgstr "Sฤฑradasฤฑnฤฑz." msgid "You are not following anyone." msgstr "" -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Ayrฤฑca takip edebileceฤŸiniz yeni ร–zel Beslemeler keลŸfedebilirsiniz." @@ -7052,6 +7103,10 @@ msgstr "" msgid "You do not have any followers." msgstr "" +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "Henรผz hiรง davet kodunuz yok! Bluesky'de biraz daha uzun sรผre kaldฤฑktan sonra size bazฤฑ kodlar gรถndereceฤŸiz." @@ -7151,15 +7206,15 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" @@ -7175,7 +7230,7 @@ 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/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "" @@ -7183,11 +7238,11 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "Artฤฑk bu konu iรงin bildirim almayacaksฤฑnฤฑz" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "Artฤฑk bu konu iรงin bildirim alacaksฤฑnฤฑz" @@ -7195,15 +7250,15 @@ msgstr "Artฤฑk bu konu iรงin bildirim alacaksฤฑnฤฑz" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Bir \"sฤฑfฤฑrlama kodu\" iรงeren bir e-posta alacaksฤฑnฤฑz. Bu kodu buraya girin, ardฤฑndan yeni ลŸifrenizi girin." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -7231,7 +7286,7 @@ msgstr "Hazฤฑrsฤฑnฤฑz!" msgid "You've chosen to hide a word or tag within this post." msgstr "" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 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." @@ -7281,7 +7336,7 @@ 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/view/com/posts/FollowingEmptyState.tsx:47 +#: 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." @@ -7298,7 +7353,7 @@ msgstr "Tam kullanฤฑcฤฑ adฤฑnฤฑz <0>@{0} olacak" #~ msgid "Your invite codes are hidden when logged in using an App Password" #~ msgstr "Uygulama ลžifresi kullanarak giriลŸ yaptฤฑฤŸฤฑnฤฑzda davet kodlarฤฑnฤฑz gizlenir" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "" @@ -7306,7 +7361,7 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "ลžifreniz baลŸarฤฑyla deฤŸiลŸtirildi!" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "Gรถnderiniz yayฤฑnlandฤฑ" @@ -7322,11 +7377,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "Yanฤฑtฤฑnฤฑz yayฤฑnlandฤฑ" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index d6996dae1e..b6d08870b6 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -18,7 +18,7 @@ msgstr "" "X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" "X-Crowdin-File-ID: 14\n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -46,10 +46,14 @@ msgstr "" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -64,11 +68,11 @@ msgstr "" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -80,7 +84,7 @@ msgstr "" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" @@ -123,7 +127,7 @@ msgstr "" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} ะฝะตะฟั€ะพั‡ะธั‚ะฐะฝะธั…" @@ -180,12 +184,12 @@ msgstr "โš ะะตะดะพะฟัƒัั‚ะธะผะธะน ะฟัะตะฒะดะพะฝั–ะผ" msgid "2FA Confirmation" msgstr "" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะฝะฐะฒั–ะณะฐั†ั–ัŽ ะน ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะฟั€ะพั„ั–ะปัŒ ั‚ะฐ ั–ะฝัˆัƒ ะฝะฐะฒั–ะณะฐั†ั–ัŽ" @@ -198,7 +202,7 @@ msgstr "ะ”ะพัั‚ัƒะฟะฝั–ัั‚ัŒ" msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "" @@ -242,7 +246,7 @@ msgstr "ะŸะฐั€ะฐะผะตั‚ั€ะธ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ" msgid "Account removed from quick access" msgstr "ะžะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ะฒะธะปัƒั‡ะตะฝะพ ะทั– ัˆะฒะธะดะบะพะณะพ ะดะพัั‚ัƒะฟัƒ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "ะžะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ั€ะพะทะฑะปะพะบะพะฒะฐะฝะพ" @@ -255,7 +259,7 @@ msgstr "ะ’ะธ ะฒั–ะดะฟะธัะฐะปะธัั ะฒั–ะด ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ" msgid "Account unmuted" msgstr "ะžะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ะฑั–ะปัŒัˆะต ะฝะต ั–ะณะฝะพั€ัƒั”ั‚ัŒัั" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -277,9 +281,9 @@ msgstr "ะ”ะพะดะฐั‚ะธ ะบะพั€ะธัั‚ัƒะฒะฐั‡ะฐ ะดะพ ัะฟะธัะบัƒ" msgid "Add account" msgstr "ะ”ะพะดะฐั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -304,15 +308,15 @@ msgstr "ะ”ะพะดะฐั‚ะธ ะฟะฐั€ะพะปัŒ ะทะฐัั‚ะพััƒะฝะบัƒ" #~ msgid "Add link card:" #~ msgstr "ะ”ะพะดะฐั‚ะธ ะฟะพะฟะตั€ะตะดะฝั–ะน ะฟะตั€ะตะณะปัะด:" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "ะ”ะพะดะฐั‚ะธ ัะปะพะฒะพ ะดะพ ั–ะณะฝะพั€ัƒะฒะฐะฝะฝั ะท ะพะฑั€ะฐะฝะธะผะธ ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝัะผะธ" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "ะ”ะพะดะฐั‚ะธ ั–ะณะฝะพั€ะพะฒะฐะฝั– ัะปะพะฒะฐ ั‚ะฐ ั‚ะตะณะธ" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" @@ -329,7 +333,7 @@ msgstr "ะ”ะพะดะฐะนั‚ะต ะฝะฐัั‚ัƒะฟะฝะธะน DNS-ะทะฐะฟะธั ะดะพ ะฒะฐัˆะพะณะพ ะดะพ msgid "Add to Lists" msgstr "ะ”ะพะดะฐั‚ะธ ะดะพ ัะฟะธัะบัƒ" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "ะ”ะพะดะฐั‚ะธ ะดะพ ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ" @@ -342,7 +346,7 @@ msgstr "ะ”ะพะดะฐั‚ะธ ะดะพ ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ" msgid "Added to list" msgstr "ะ”ะพะดะฐะฝะพ ะดะพ ัะฟะธัะบัƒ" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "ะ”ะพะดะฐะฝะพ ะดะพ ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ" @@ -364,12 +368,12 @@ msgstr "ะšะพะฝั‚ะตะฝั‚ ะดะปั ะดะพั€ะพัะปะธั… ะฒะธะผะบะฝะตะฝะพ." msgid "Advanced" msgstr "ะ ะพะทัˆะธั€ะตะฝั–" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "ะฃัั– ะทะฑะตั€ะตะถะตะฝั– ัั‚ั€ั–ั‡ะบะธ ะฒ ะพะดะฝะพะผัƒ ะผั–ัั†ั–." -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "" @@ -392,13 +396,13 @@ msgstr "ะ’ะถะต ะผะฐั”ั‚ะต ะบะพะด?" msgid "Already signed in as @{0}" msgstr "ะ’ะถะต ัƒะฒั–ะนัˆะปะธ ัะบ @{0}" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -446,6 +450,7 @@ msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ, ะฑัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต msgid "an unknown error occurred" msgstr "" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -471,11 +476,11 @@ msgstr "ะœะพะฒะฐ ะทะฐัั‚ะพััƒะฝะบัƒ" msgid "App password deleted" msgstr "ะŸะฐั€ะพะปัŒ ะทะฐัั‚ะพััƒะฝะบัƒ ะฒะธะดะฐะปะตะฝะพ" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "ะะฐะทะฒะฐ ะฟะฐั€ะพะปั ะผะพะถะต ะผั–ัั‚ะธั‚ะธ ะปะธัˆะต ะปะฐั‚ะธะฝััŒะบั– ะปั–ั‚ะตั€ะธ, ั†ะธั„ั€ะธ, ะฟั€ะพะฑั–ะปะธ, ะผั–ะฝัƒัะธ ั‚ะฐ ะฝะธะถะฝั– ะฟั–ะดะบั€ะตัะปะตะฝะฝั." -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "ะะฐะทะฒะฐ ะฟะฐั€ะพะปั ะทะฐัั‚ะพััƒะฝะบัƒ ะผัƒัะธั‚ัŒ ะฑัƒั‚ะธ ั…ะพั‡ะฐ ะฑ 4 ัะธะผะฒะพะปะธ ะฒ ะดะพะฒะถะธะฝัƒ." @@ -483,22 +488,22 @@ msgstr "ะะฐะทะฒะฐ ะฟะฐั€ะพะปั ะทะฐัั‚ะพััƒะฝะบัƒ ะผัƒัะธั‚ัŒ ะฑัƒั‚ะธ ั…ะพ msgid "App password settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะฟะฐั€ะพะปั ะทะฐัั‚ะพััƒะฝะบั–ะฒ" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "ะŸะฐั€ะพะปั– ะดะปั ะทะฐัั‚ะพััƒะฝะบั–ะฒ" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "ะ—ะฒะตั€ะฝะตะฝะฝั" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "ะžัะบะฐั€ะถะธั‚ะธ ะผั–ั‚ะบัƒ \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -519,7 +524,7 @@ msgid "Appearance" msgstr "ะžั„ะพั€ะผะปะตะฝะฝั" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "" @@ -543,15 +548,15 @@ msgstr "" msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ะ’ะธ ะฒะฟะตะฒะฝะตะฝั–, ั‰ะพ ะฑะฐะถะฐั”ั‚ะต ะฒะธะดะฐะปะธั‚ะธ {0} ะทั– ัั‚ั€ั–ั‡ะบะธ?" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "ะ’ะธ ะดั–ะนัะฝะพ ะฑะฐะถะฐั”ั‚ะต ะฒะธะดะฐะปะธั‚ะธ ั†ัŽ ั‡ะตั€ะฝะตั‚ะบัƒ?" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "ะ’ะธ ะฒะฟะตะฒะฝะตะฝั–?" @@ -572,8 +577,8 @@ msgid "At least 3 characters" msgstr "ะะต ะผะตะฝัˆะต 3-ั… ัะธะผะฒะพะปั–ะฒ" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -586,7 +591,7 @@ msgstr "ะะต ะผะตะฝัˆะต 3-ั… ัะธะผะฒะพะปั–ะฒ" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "ะะฐะทะฐะด" @@ -606,7 +611,7 @@ msgstr "ะ”ะฐั‚ะฐ ะฝะฐั€ะพะดะถะตะฝะฝั" msgid "Birthday:" msgstr "ะ”ะฐั‚ะฐ ะฝะฐั€ะพะดะถะตะฝะฝั:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "ะ—ะฐะฑะปะพะบัƒะฒะฐั‚ะธ" @@ -646,7 +651,7 @@ msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝะพ" msgid "Blocked accounts" msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" @@ -719,8 +724,8 @@ msgstr "ะ ะพะทะผะธั‚ะธ ะทะพะฑั€ะฐะถะตะฝะฝั ั– ั„ั–ะปัŒั‚ั€ัƒะฒะฐั‚ะธ ั—ั… ะทั– msgid "Books" msgstr "ะšะฝะธะณะธ" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "" @@ -728,7 +733,7 @@ msgstr "" msgid "Business" msgstr "ะžั€ะณะฐะฝั–ะทะฐั†ั–ั" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "ะฒั–ะด โ€”" @@ -744,7 +749,7 @@ msgstr "ะ’ั–ะด {0}" #~ msgid "by @{0}" #~ msgstr "" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "ะฒั–ะด <0/>" @@ -752,7 +757,7 @@ msgstr "ะฒั–ะด <0/>" msgid "By creating an account you agree to the {els}." msgstr "ะกั‚ะฒะพั€ัŽัŽั‡ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั, ะฒะธ ะดะฐั”ั‚ะต ะทะณะพะดัƒ ะท {els}." -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "ัั‚ะฒะพั€ะตะฝะพ ะฒะฐะผะธ" @@ -760,7 +765,7 @@ msgstr "ัั‚ะฒะพั€ะตะฝะพ ะฒะฐะผะธ" msgid "Camera" msgstr "ะšะฐะผะตั€ะฐ" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 ัะธะผะฒะพะปั–ะฒ." @@ -769,8 +774,8 @@ msgstr "ะœะพะถะต ะผั–ัั‚ะธั‚ะธ ะปะธัˆะต ะปั–ั‚ะตั€ะธ, ั†ะธั„ั€ะธ, ะฟั€ะพะฑั–ะป #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -786,8 +791,8 @@ msgstr "ะœะพะถะต ะผั–ัั‚ะธั‚ะธ ะปะธัˆะต ะปั–ั‚ะตั€ะธ, ั†ะธั„ั€ะธ, ะฟั€ะพะฑั–ะป #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "ะกะบะฐััƒะฒะฐั‚ะธ" @@ -816,7 +821,7 @@ msgstr "ะกะบะฐััƒะฒะฐั‚ะธ ะพะฑั€ั–ะทะฐะฝะฝั ะทะพะฑั€ะฐะถะตะฝะฝั" msgid "Cancel profile editing" msgstr "ะกะบะฐััƒะฒะฐั‚ะธ ะทะผั–ะฝะธ ะฟั€ะพั„ั–ะปัŽ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "ะกะบะฐััƒะฒะฐั‚ะธ ั†ะธั‚ัƒะฒะฐะฝะฝั ะฟะพัั‚ัƒ" @@ -872,7 +877,7 @@ msgstr "ะ—ะผั–ะฝะธั‚ะธ ะผะพะฒัƒ ะฟะพัั‚ะฐ ะฝะฐ {0}" msgid "Change Your Email" msgstr "ะ—ะผั–ะฝะธั‚ะธ ะฐะดั€ะตััƒ ะตะปะตะบั‚ั€ะพะฝะฝะพั— ะฟะพัˆั‚ะธ" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -884,7 +889,7 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -970,7 +975,7 @@ msgid "Clear all storage data (restart after this)" msgstr "" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "ะžั‡ะธัั‚ะธั‚ะธ ะฟะพัˆัƒะบะพะฒะธะน ะทะฐะฟะธั‚" @@ -1078,7 +1083,7 @@ msgstr "ะ—ะฐะบั€ะธะฒะฐั” ะฝะธะถะฝัŽ ะฟะฐะฝะตะปัŒ ะฝะฐะฒั–ะณะฐั†ั–ั—" msgid "Closes password update alert" msgstr "ะ—ะฐะบั€ะธะฒะฐั” ัะฟะพะฒั–ั‰ะตะฝะฝั ะฟั€ะพ ะพะฝะพะฒะปะตะฝะฝั ะฟะฐั€ะพะปั" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "ะ—ะฐะบั€ะธะฒะฐั” ั€ะตะดะฐะบั‚ะพั€ ะฟะพัั‚ั–ะฒ ั– ะฒะธะดะฐะปัั” ั‡ะตั€ะฝะตั‚ะบัƒ" @@ -1102,7 +1107,7 @@ msgstr "ะšะพะผะตะดั–ั" msgid "Comics" msgstr "ะšะพะผั–ะบัะธ" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "ะŸั€ะฐะฒะธะปะฐ ัะฟั–ะปัŒะฝะพั‚ะธ" @@ -1115,7 +1120,7 @@ msgstr "ะ—ะฐะฒะตั€ัˆั–ั‚ัŒ ะพะทะฝะฐะนะพะผะปะตะฝะฝั ั‚ะฐ ั€ะพะทะฟะพั‡ะฝั–ั‚ัŒ ะบ msgid "Complete the challenge" msgstr "ะ’ะธะบะพะฝะฐะนั‚ะต ะทะฐะฒะดะฐะฝะฝั" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "ะกั‚ะฒะพั€ัŽะนั‚ะต ะฟะพัั‚ะธ ะดะพ {MAX_GRAPHEME_LENGTH} ัะธะผะฒะพะปั–ะฒ ัƒ ะดะพะฒะถะธะฝัƒ" @@ -1224,7 +1229,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "ะขะปะพ ะบะพะฝั‚ะตะบัั‚ะฝะพะณะพ ะผะตะฝัŽ ะฝะฐั‚ะธัะฝั–ั‚ัŒ, ั‰ะพะฑ ะทะฐะบั€ะธั‚ะธ ะผะตะฝัŽ." #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "ะ”ะฐะปั–" @@ -1232,8 +1237,12 @@ msgstr "ะ”ะฐะปั–" msgid "Continue as {0} (currently signed in)" msgstr "ะŸั€ะพะดะพะฒะถะธั‚ะธ ัะบ {0} (ะฟะพั‚ะพั‡ะฝะธะน ะบะพั€ะธัั‚ัƒะฒะฐั‡)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "ะŸะตั€ะตะนั‚ะธ ะดะพ ะฝะฐัั‚ัƒะฟะฝะพะณะพ ะบั€ะพะบัƒ" @@ -1246,7 +1255,7 @@ msgstr "ะŸะตั€ะตะนั‚ะธ ะดะพ ะฝะฐัั‚ัƒะฟะฝะพะณะพ ะบั€ะพะบัƒ" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "ะŸะตั€ะตะนะดั–ั‚ัŒ ะดะพ ะฝะฐัั‚ัƒะฟะฝะพะณะพ ะบั€ะพะบัƒ, ะฝั– ะฝะฐ ะบะพะณะพ ะฝะต ะฟั–ะดะฟะธััƒัŽั‡ะธััŒ" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "" @@ -1254,7 +1263,7 @@ msgstr "" msgid "Cooking" msgstr "ะšัƒั…ะฐั€ัั‚ะฒะพ" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "ะกะบะพะฟั–ะนะพะฒะฐะฝะพ" @@ -1264,10 +1273,10 @@ msgid "Copied build version to clipboard" msgstr "ะ’ะตั€ัั–ัŽ ะทะฑั–ั€ะบะธ ัะบะพะฟั–ะนะพะฒะฐะฝะพ ะดะพ ะฑัƒั„ะตั€ะฐ ะพะฑะผั–ะฝัƒ" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "ะกะบะพะฟั–ะนะพะฒะฐะฝะพ" @@ -1275,11 +1284,11 @@ msgstr "ะกะบะพะฟั–ะนะพะฒะฐะฝะพ" msgid "Copied!" msgstr "ะกะบะพะฟั–ะนะพะฒะฐะฝะพ!" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "ะšะพะฟั–ัŽั” ะฟะฐั€ะพะปัŒ ะทะฐัั‚ะพััƒะฝะบัƒ" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "ะกะบะพะฟั–ัŽะฒะฐั‚ะธ" @@ -1296,8 +1305,8 @@ msgstr "ะกะบะพะฟั–ัŽะฒะฐั‚ะธ ะบะพะด" msgid "Copy link to list" msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะฟะพัะธะปะฐะฝะฝั ะฝะฐ ัะฟะธัะพะบ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะฟะพัะธะปะฐะฝะฝั ะฝะฐ ะฟะพัั‚" @@ -1306,12 +1315,12 @@ msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะฟะพัะธะปะฐะฝะฝั ะฝะฐ ะฟะพัั‚" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ั‚ะตะบัั‚ ะฟะพะฒั–ะดะพะผะปะตะฝะฝั" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "ะŸะพะปั–ั‚ะธะบะฐ ะทะฐั…ะธัั‚ัƒ ะฐะฒั‚ะพั€ััŒะบะพะณะพ ะฟั€ะฐะฒะฐ" @@ -1358,11 +1367,11 @@ msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" msgid "Create an account" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ะฟะฐั€ะพะปัŒ ะทะฐัั‚ะพััƒะฝะบัƒ" @@ -1396,7 +1405,7 @@ msgstr "ะšะพั€ะธัั‚ัƒะฒะฐั†ัŒะบะธะน" msgid "Custom domain" msgstr "ะ’ะปะฐัะฝะธะน ะดะพะผะตะฝ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "ะšะฐัั‚ะพะผะฝั– ัั‚ั€ั–ั‡ะบะธ, ัั‚ะฒะพั€ะตะฝั– ัะฟั–ะปัŒะฝะพั‚ะพัŽ, ะฟะพะดะฐั€ัƒัŽั‚ัŒ ะฒะฐะผ ะฝะพะฒั– ะฒั€ะฐะถะตะฝะฝั ั‚ะฐ ะดะพะฟะพะผะพะถัƒั‚ัŒ ะทะฝะฐะนั‚ะธ ะบะพะฝั‚ะตะฝั‚, ัะบะธะน ะฒะธ ะปัŽะฑะธั‚ะต." @@ -1439,7 +1448,7 @@ msgid "Debug panel" msgstr "ะŸะฐะฝะตะปัŒ ะฝะฐะปะฐะณะพะดะถะตะฝะฝั" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1494,8 +1503,8 @@ msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะผั–ะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" msgid "Delete My Accountโ€ฆ" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะผั–ะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั..." -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะฟะพัั‚" @@ -1503,7 +1512,7 @@ msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะฟะพัั‚" msgid "Delete this list?" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ั†ะตะน ัะฟะธัะพะบ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ั†ะตะน ะฟะพัั‚?" @@ -1526,11 +1535,11 @@ msgstr "" msgid "Description" msgstr "ะžะฟะธั" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "ะŸะพั€ะพะถะฝั–ะน ะฟะพัั‚. ะ’ะธ ั…ะพั‚ั–ะปะธ ั‰ะพััŒ ะฝะฐะฟะธัะฐั‚ะธ?" @@ -1571,11 +1580,11 @@ msgstr "" msgid "Disabled" msgstr "ะ’ะธะผะบะฝะตะฝะพ" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "ะ’ะธะดะฐะปะธั‚ะธ" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "ะ’ั–ะดั…ะธะปะธั‚ะธ ั‡ะตั€ะฝะตั‚ะบัƒ?" @@ -1584,12 +1593,12 @@ msgstr "ะ’ั–ะดั…ะธะปะธั‚ะธ ั‡ะตั€ะฝะตั‚ะบัƒ?" msgid "Discourage apps from showing my account to logged-out users" msgstr "ะŸะพะฟั€ะพัะธั‚ะธ ะทะฐัั‚ะพััƒะฝะบะธ ะฝะต ะฟะพะบะฐะทัƒะฒะฐั‚ะธ ะผั–ะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ะฑะตะท ะฒั…ะพะดัƒ" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "ะ’ั–ะดะบั€ะธะนั‚ะต ะดะปั ัะตะฑะต ะฝะพะฒั– ัั‚ั€ั–ั‡ะบะธ" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "ะ’ั–ะดะบั€ะธะนั‚ะต ะดะปั ัะตะฑะต ะฝะพะฒั– ัั‚ั€ั–ั‡ะบะธ" @@ -1625,11 +1634,11 @@ msgstr "ะ”ะพะผะตะฝ ะฟะตั€ะตะฒั–ั€ะตะฝะพ!" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1708,6 +1717,11 @@ msgstr "ะฝะฐะฟั€. ะšะพั€ะธัั‚ัƒะฒะฐั‡ั–, ั‰ะพ ะฝะตะพะดะฝะพั€ะฐะทะพะฒะพ ะฒั–ะดะฟ msgid "Each code works once. You'll receive more invite codes periodically." msgstr "ะšะพะถะตะฝ ะบะพะด ะทะฐะฟั€ะพัˆะตะฝะฝั ะฟั€ะฐั†ัŽั” ะปะธัˆะต ะพะดะธะฝ ั€ะฐะท. ะงะฐั ะฒั–ะด ั‡ะฐััƒ ะฒะธ ะฑัƒะดะตั‚ะต ะพั‚ั€ะธะผัƒะฒะฐั‚ะธ ะฝะพะฒั– ะบะพะดะธ." +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1731,8 +1745,9 @@ msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะพะฟะธั ัะฟะธัะบัƒ" msgid "Edit Moderation List" msgstr "ะ ะตะดะฐะณัƒะฒะฐะฝะฝั ัะฟะธัะบัƒ" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะผะพั— ัั‚ั€ั–ั‡ะบะธ" @@ -1742,19 +1757,19 @@ msgid "Edit my profile" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะผั–ะน ะฟั€ะพั„ั–ะปัŒ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะฟั€ะพั„ั–ะปัŒ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะฟั€ะพั„ั–ะปัŒ" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะทะฑะตั€ะตะถะตะฝั– ัั‚ั€ั–ั‡ะบะธ" +#~ msgid "Edit Saved Feeds" +#~ msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะทะฑะตั€ะตะถะตะฝั– ัั‚ั€ั–ั‡ะบะธ" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1807,8 +1822,8 @@ msgid "Embed HTML code" msgstr "ะ’ะฑัƒะดะพะฒะฐะฝะธะน HTML ะบะพะด" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "ะ’ะฑัƒะดะพะฒะฐะฝะธะน ะฟะพัั‚" @@ -1864,7 +1879,7 @@ msgstr "ะšั–ะฝะตั†ัŒ ัั‚ั€ั–ั‡ะบะธ" #~ msgid "End of list" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "ะ’ะฒะตะดั–ั‚ัŒ ั–ะผ'ั ะดะปั ั†ัŒะพะณะพ ะฟะฐั€ะพะปั ะทะฐัั‚ะพััƒะฝะบัƒ" @@ -1872,8 +1887,8 @@ msgstr "ะ’ะฒะตะดั–ั‚ัŒ ั–ะผ'ั ะดะปั ั†ัŒะพะณะพ ะฟะฐั€ะพะปั ะทะฐัั‚ะพััƒะฝะบ msgid "Enter a password" msgstr "ะ’ะฒะตะดั–ั‚ัŒ ะฟะฐั€ะพะปัŒ" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "ะ’ะฒะตะดั–ั‚ัŒ ัะปะพะฒะพ ะฐะฑะพ ั‚ะตะณ" @@ -1923,7 +1938,7 @@ msgid "Error receiving captcha response." msgstr "ะŸะพะผะธะปะบะฐ ะพั‚ั€ะธะผะฐะฝะฝั ะฒั–ะดะฟะพะฒั–ะดั– Captcha." #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "ะŸะพะผะธะปะบะฐ:" @@ -2011,7 +2026,7 @@ msgstr "ะ—ะพะฒะฝั–ัˆะฝั– ะผะตะดั–ะฐ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ะ—ะพะฒะฝั–ัˆะฝั– ะผะตะดั–ะฐ ะผะพะถัƒั‚ัŒ ะดะพะทะฒะพะปัั‚ะธ ะฒะตะฑัะฐะนั‚ะฐะผ ะทะฑะธั€ะฐั‚ะธ ั–ะฝั„ะพั€ะผะฐั†ั–ัŽ ะฟั€ะพ ะฒะฐั ั‚ะฐ ะฒะฐัˆ ะฟั€ะธัั‚ั€ั–ะน. ะ†ะฝั„ะพั€ะผะฐั†ั–ั ะฝะต ะฝะฐะดัะธะปะฐั”ั‚ัŒัั ั‚ะฐ ะฝะต ะทะฐะฟะธั‚ัƒั”ั‚ัŒัั, ะดะพะฟะพะบะธ ะฝะต ะฝะฐั‚ะธัะฝัƒั‚ะพ ะบะฝะพะฟะบัƒ ยซะ’ั–ะดั‚ะฒะพั€ะธั‚ะธยป." -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -2021,8 +2036,8 @@ msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะทะพะฒะฝั–ัˆะฝั–ั… ะผะตะดั–ะฐ" msgid "External media settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะทะพะฒะฝั–ัˆะฝั–ั… ะผะตะดั–ะฐ" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "ะะต ะฒะดะฐะปะพัั ัั‚ะฒะพั€ะธั‚ะธ ะฟะฐั€ะพะปัŒ ะทะฐัั‚ะพััƒะฝะบัƒ." @@ -2034,7 +2049,7 @@ msgstr "ะะต ะฒะดะฐะปะพัั ัั‚ะฒะพั€ะธั‚ะธ ัะฟะธัะพะบ. ะŸะตั€ะตะฒั–ั€ั‚ะต ั– msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "ะะต ะฒะดะฐะปะพัั ะฒะธะดะฐะปะธั‚ะธ ะฟะพัั‚, ัะฟั€ะพะฑัƒะนั‚ะต ั‰ะต ั€ะฐะท" @@ -2068,7 +2083,7 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" @@ -2078,30 +2093,29 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "ะกั‚ั€ั–ั‡ะบะฐ" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "ะกั‚ั€ั–ั‡ะบะฐ ะฒั–ะด {0}" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "ะกั‚ั€ั–ั‡ะบะฐ ะฝะต ะฟั€ะฐั†ัŽั”" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "ะ—ะฒะพั€ะพั‚ะฝะธะน ะทะฒ'ัะทะพะบ" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "ะกั‚ั€ั–ั‡ะบะธ" @@ -2134,12 +2148,12 @@ msgid "Finalizing" msgstr "ะ—ะฐะฒะตั€ัˆะตะฝะฝั" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "ะ—ะฝะฐะนะดั–ั‚ัŒ ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ ะดะปั ัั‚ะตะถะตะฝะฝั" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "" @@ -2182,7 +2196,7 @@ msgstr "ะ’ั–ะดะดะทะตั€ะบะฐะปะธั‚ะธ ะฒะตั€ั‚ะธะบะฐะปัŒะฝะพ" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -2193,7 +2207,7 @@ msgctxt "action" msgid "Follow" msgstr "ะŸั–ะดะฟะธัะฐั‚ะธััŒ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "ะŸั–ะดะฟะธัะฐั‚ะธัั ะฝะฐ {0}" @@ -2223,6 +2237,10 @@ msgstr "ะŸั–ะดะฟะธัะฐั‚ะธัั ะฝะฐะฒะทะฐั”ะผ" #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." #~ msgstr "ะŸั–ะดะฟะธัˆั–ั‚ัŒัั ะฝะฐ ะบั–ะปัŒะบะพั… ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั‰ะพะฑ ะฟะพั‡ะฐั‚ะธ ั—ั… ั‡ะธั‚ะฐั‚ะธ. ะœะธ ะทะผะพะถะตะผะพ ะฟะพั€ะตะบะพะผะตะฝะดัƒะฒะฐั‚ะธ ะฒะฐะผ ะฑั–ะปัŒัˆะต ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ, ัะฟะธั€ะฐัŽั‡ะธััŒ ะฝะฐ ั‚ะต ั…ั‚ะพ ะฒะฐั ั†ั–ะบะฐะฒะธั‚ัŒ." +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "ะŸั–ะดะฟะธัะฐะฝั– {0}" @@ -2244,18 +2262,27 @@ msgstr "ะฟั–ะดะฟะธัะบะฐ ะฝะฐ ะฒะฐั" msgid "Followers" msgstr "ะŸั–ะดะฟะธัะฝะธะบะธ" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "ะŸั–ะดะฟะธัะฐะฝั–" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "ะŸั–ะดะฟะธัะฐะฝะฝั ะฝะฐ \"{0}\"" @@ -2267,9 +2294,7 @@ msgstr "" msgid "Following feed preferences" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ัั‚ั€ั–ั‡ะบะธ ะฟั–ะดะฟะธัะพะบ" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2291,7 +2316,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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 "ะ— ะผั–ั€ะบัƒะฒะฐะฝัŒ ะฑะตะทะฟะตะบะธ ั†ะตะน ะฟะฐั€ะพะปัŒ ะฒั–ะดะพะฑั€ะฐะถะฐั”ั‚ัŒัั ะปะธัˆะต ะพะดะธะฝ ั€ะฐะท. ะฏะบั‰ะพ ะฒะธ ะฒั‚ั€ะฐั‚ะธั‚ะต ั†ะตะน ะฟะฐั€ะพะปัŒ, ะฒะฐะผ ะฟะพั‚ั€ั–ะฑะฝะพ ะฑัƒะดะต ะทะณะตะฝะตั€ัƒะฒะฐั‚ะธ ะฝะพะฒะธะน." @@ -2334,7 +2359,7 @@ msgstr "" msgid "Get Started" msgstr "ะŸะพั‡ะฐั‚ะธ" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "" @@ -2362,9 +2387,9 @@ msgstr "ะะฐะทะฐะด" msgid "Go Back" msgstr "ะะฐะทะฐะด" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2384,7 +2409,7 @@ msgstr "ะŸะพะฒะตั€ะฝัƒั‚ะธัั ะฝะฐ ะณะพะปะพะฒะฝัƒ" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "ะŸะตั€ะตะนั‚ะธ ะดะพ @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "" @@ -2417,7 +2442,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "ะ”ะพะผะฐะณะฐะฝะฝั, ั‚ั€ะพะปั–ะฝะณ ะฐะฑะพ ะฝะตั‚ะตั€ะฟะธะผั–ัั‚ัŒ" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "ะฅะตัˆั‚ะตะณ" @@ -2430,11 +2455,11 @@ msgid "Having trouble?" msgstr "ะ’ะธะฝะธะบะปะธ ะฟั€ะพะฑะปะตะผะธ?" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "ะ”ะพะฒั–ะดะบะฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2450,7 +2475,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:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "ะฆะต ะฒะฐัˆ ะฟะฐั€ะพะปัŒ ะดะปั ะทะฐัั‚ะพััƒะฝะบั–ะฒ." @@ -2461,7 +2486,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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "ะŸั€ะธั…ะพะฒะฐั‚ะธ" @@ -2470,8 +2495,8 @@ msgctxt "action" msgid "Hide" msgstr "ะกั…ะพะฒะฐั‚ะธ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "ะกั…ะพะฒะฐั‚ะธ ะฟะพัั‚" @@ -2480,7 +2505,7 @@ msgstr "ะกั…ะพะฒะฐั‚ะธ ะฟะพัั‚" msgid "Hide the content" msgstr "ะŸั€ะธั…ะพะฒะฐั‚ะธ ะฒะผั–ัั‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "ะกั…ะพะฒะฐั‚ะธ ั†ะตะน ะฟะพัั‚?" @@ -2488,23 +2513,23 @@ msgstr "ะกั…ะพะฒะฐั‚ะธ ั†ะตะน ะฟะพัั‚?" msgid "Hide user list" msgstr "ะกั…ะพะฒะฐั‚ะธ ัะฟะธัะพะบ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "ะฅะผ, ะฟั€ะธ ะทะฒ'ัะทะบัƒ ะท ัะตั€ะฒะตั€ะพะผ ัั‚ั€ั–ั‡ะบะธ ะฒะธะฝะธะบะปะฐ ัะบะฐััŒ ะฟั€ะพะฑะปะตะผะฐ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟะพะฒั–ะดะพะผั‚ะต ะฟั€ะพ ั†ะต ั—ั— ะฒะปะฐัะฝะธะบะฐ." -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "ะฅะผ, ะทะดะฐั”ั‚ัŒัั ัะตั€ะฒะตั€ ัั‚ั€ั–ั‡ะบะธ ะฝะฐะปะฐัˆั‚ะพะฒะฐะฝะพ ะฝะตะฟั€ะฐะฒะธะปัŒะฝะพ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟะพะฒั–ะดะพะผั‚ะต ะฟั€ะพ ั†ะต ั—ั— ะฒะปะฐัะฝะธะบะฐ." -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "ะฅะผ, ะทะดะฐั”ั‚ัŒัั ัะตั€ะฒะตั€ ัั‚ั€ั–ั‡ะบะธ ะทะฐั€ะฐะท ะฝะต ะฟั€ะฐั†ัŽั”. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟะพะฒั–ะดะพะผั‚ะต ะฟั€ะพ ั†ะต ั—ั— ะฒะปะฐัะฝะธะบะฐ." -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "ะฅะผ, ัะตั€ะฒะตั€ ัั‚ั€ั–ั‡ะบะธ ะฝะฐะดั–ัะปะฐะฒ ะฝะฐะผ ะฝะตะทั€ะพะทัƒะผั–ะปัƒ ะฒั–ะดะฟะพะฒั–ะดัŒ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟะพะฒั–ะดะพะผั‚ะต ะฟั€ะพ ั†ะต ั—ั— ะฒะปะฐัะฝะธะบะฐ." -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ะฅะผ, ะผะธ ะฝะต ะผะพะถะตะผะพ ะทะฝะฐะนั‚ะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ. ะœะพะถะปะธะฒะพ ะฒะพะฝะฐ ะฑัƒะปะฐ ะฒะธะดะฐะปะตะฝะฐ." @@ -2516,11 +2541,11 @@ msgstr "ะ—ะดะฐั”ั‚ัŒัั, ัƒ ะฝะฐั ะฒะธะฝะธะบะปะธ ะฟั€ะพะฑะปะตะผะธ ะท ะทะฐะฒะฐ msgid "Hmmmm, we couldn't load that moderation service." msgstr "ะฅะผ, ะผะธ ะฝะต ะทะผะพะณะปะธ ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ั†ะตะน ัะตั€ะฒั–ั ะผะพะดะตั€ะฐั†ั–ั—." -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "ะ“ะพะปะพะฒะฝะฐ" @@ -2574,7 +2599,7 @@ msgstr "ะฏะบั‰ะพ ะฒะธ ั‰ะต ะฝะต ะดะพััะณะปะธ ะฟะพะฒะฝะพะปั–ั‚ั‚ั ะฒั–ะดะฟะพะฒ msgid "If you delete this list, you won't be able to recover it." msgstr "ะฏะบั‰ะพ ะฒะธ ะฒะธะดะฐะปะธั‚ะต ั†ะตะน ัะฟะธัะพะบ, ะฒะธ ะฝะต ะทะผะพะถะตั‚ะต ะนะพะณะพ ะฒั–ะดะฝะพะฒะธั‚ะธ." -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "ะฏะบั‰ะพ ะฒะธ ะฒะธะดะฐะปะธั‚ะต ั†ะตะน ะฟะพัั‚, ะฒะธ ะฝะต ะทะผะพะถะตั‚ะต ะนะพะณะพ ะฒั–ะดะฝะพะฒะธั‚ะธ." @@ -2614,7 +2639,7 @@ msgstr "ะ’ะฒะตะดั–ั‚ัŒ ะบะพะด, ะฝะฐะดั–ัะปะฐะฝะธะน ะฝะฐ ะฒะฐัˆัƒ ะตะปะตะบั‚ั€ะพ msgid "Input confirmation code for account deletion" msgstr "ะ’ะฒะตะดั–ั‚ัŒ ะบะพะด ะฟั–ะดั‚ะฒะตั€ะดะถะตะฝะฝั ะดะปั ะฒะธะดะฐะปะตะฝะฝั ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ" -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "ะ’ะฒะตะดั–ั‚ัŒ ั–ะผ'ั ะดะปั ะฟะฐั€ะพะปั ะทะฐัั‚ะพััƒะฝะบัƒ" @@ -2659,7 +2684,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "ะะตะฒั–ั€ะฝะธะน ะฐะฑะพ ะฝะตะฟั–ะดั‚ั€ะธะผัƒะฒะฐะฝะธะน ะฟะพัั‚" @@ -2723,11 +2748,11 @@ msgstr "ะœั–ั‚ะบะธ ั” ะฐะฝะพั‚ะฐั†ั–ัะผะธ ะดะปั ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั– ะบ #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "ะผั–ั‚ะบะฐ ะฑัƒะปะฐ ั€ะพะทะผั–ั‰ะตะฝะฐ ะฝะฐ {labelTarget}" -#: src/components/moderation/LabelsOnMeDialog.tsx:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "ะœั–ั‚ะบะธ ะฝะฐ ะฒะฐัˆะพะผัƒ ะพะฑะปั–ะบะพะฒะพะผัƒ ะทะฐะฟะธัั–" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "ะœั–ั‚ะบะธ ะฝะฐ ะฒะฐัˆะพะผัƒ ะบะพะฝั‚ะตะฝั‚ั–" @@ -2739,7 +2764,7 @@ msgstr "ะ’ะธะฑั–ั€ ะผะพะฒะธ" msgid "Language settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะฒะธ" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะฒ" @@ -2749,7 +2774,7 @@ msgid "Languages" msgstr "ะœะพะฒะธ" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "ะะตั‰ะพะดะฐะฒะฝั–" @@ -2831,8 +2856,8 @@ msgid "Like this feed" msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "ะกะฟะพะดะพะฑะฐะปะพัั" @@ -2868,11 +2893,11 @@ msgstr "ัะฟะพะดะพะฑะฐะฒัั ะฒะฐัˆ ะฟะพัั‚" msgid "Likes" msgstr "ะ’ะฟะพะดะพะฑะฐะฝะฝั" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "ะ’ะฟะพะดะพะฑะฐะนะบะธ ั†ัŒะพะณะพ ะฟะพัั‚ะฐ" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "ะกะฟะธัะพะบ" @@ -2884,7 +2909,7 @@ msgstr "ะะฒะฐั‚ะฐั€ ัะฟะธัะบัƒ" msgid "List blocked" msgstr "ะกะฟะธัะพะบ ะทะฐะฑะปะพะบะพะฒะฐะฝะพ" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "ะกะฟะธัะพะบ ะฒั–ะด {0}" @@ -2908,12 +2933,12 @@ msgstr "ะกะฟะธัะพะบ ั€ะพะทะฑะปะพะบะพะฒะฐะฝะพ" msgid "List unmuted" msgstr "ะกะฟะธัะพะบ ะฑั–ะปัŒัˆะต ะฝะต ั–ะณะฝะพั€ัƒั”ั‚ัŒัั" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "ะกะฟะธัะบะธ" @@ -2921,7 +2946,7 @@ msgstr "ะกะฟะธัะบะธ" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฝะพะฒั– ัะฟะพะฒั–ั‰ะตะฝะฝั" @@ -2936,7 +2961,7 @@ msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฝะพะฒั– ะฟะพัั‚ะธ" msgid "Loading..." msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั..." -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "ะ—ะฒั–ั‚" @@ -2972,7 +2997,7 @@ msgstr "ะ’ะธะณะปัะดะฐั” ัะบ XXXXX-XXXXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "" @@ -2988,7 +3013,7 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "ะŸะตั€ะตะบะพะฝะฐะนั‚ะตัั, ั‰ะพ ั†ะต ะดั–ะนัะฝะพ ั‚ะพะน ัะฐะนั‚, ั‰ะพ ะฒะธ ะทะฑะธั€ะฐั”ั‚ะตัั ะฒั–ะดะฒั–ะดะฐั‚ะธ!" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "ะะฐะปะฐัˆั‚ะพะฒัƒะนั‚ะต ะฒะฐัˆั– ั–ะณะฝะพั€ะพะฒะฐะฝั– ัะปะพะฒะฐ ั‚ะฐ ั‚ะตะณะธ" @@ -3010,8 +3035,8 @@ msgstr "ะทะณะฐะดะฐะฝั– ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–" msgid "Mentioned users" msgstr "ะ—ะณะฐะดะฐะฝั– ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "ะœะตะฝัŽ" @@ -3020,11 +3045,11 @@ msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "ะŸะพะฒั–ะดะพะผะปะตะฝะฝั ะฒั–ะด ัะตั€ะฒะตั€ะฐ: {0}" @@ -3041,7 +3066,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3056,7 +3081,7 @@ msgstr "" msgid "Misleading Account" msgstr "ะžะผะฐะฝะปะธะฒะธะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -3093,7 +3118,7 @@ msgstr "ะกะฟะธัะพะบ ะผะพะดะตั€ะฐั†ั–ั— ะพะฝะพะฒะปะตะฝะพ" msgid "Moderation lists" msgstr "ะกะฟะธัะบะธ ะดะปั ะผะพะดะตั€ะฐั†ั–ั—" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "ะกะฟะธัะบะธ ะดะปั ะผะพะดะตั€ะฐั†ั–ั—" @@ -3102,7 +3127,7 @@ msgstr "ะกะฟะธัะบะธ ะดะปั ะผะพะดะตั€ะฐั†ั–ั—" msgid "Moderation settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะดะตั€ะฐั†ั–ั—" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "ะกั‚ะฐั‚ัƒั ะผะพะดะตั€ะฐั†ั–ั—" @@ -3115,7 +3140,7 @@ msgstr "ะ†ะฝัั‚ั€ัƒะผะตะฝั‚ะธ ะผะพะดะตั€ะฐั†ั–ั—" msgid "Moderator has chosen to set a general warning on the content." msgstr "ะœะพะดะตั€ะฐั‚ะพั€ ะฒะธั€ั–ัˆะธะฒ ะฒัั‚ะฐะฝะพะฒะธั‚ะธ ะทะฐะณะฐะปัŒะฝะต ะฟะพะฟะตั€ะตะดะถะตะฝะฝั ะฝะฐ ะฒะผั–ัั‚." -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "ะ‘ั–ะปัŒัˆะต" @@ -3157,11 +3182,11 @@ msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ะฒัั– ะฟะพัั‚ะธ {displayTag}" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ะปะธัˆะต ะฒ ั‚ะตะณะฐั…" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ะฒ ั‚ะตะบัั‚ั– ั‚ะฐ ั‚ะตะณะฐั…" @@ -3178,21 +3203,21 @@ msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ัะฟะธัะพะบ" msgid "Mute these accounts?" msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ั†ั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ?" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ั†ะต ัะปะพะฒะพ ัƒ ะฟะพัั‚ะฐั… ั– ั‚ะตะณะฐั…" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ั†ะต ัะปะพะฒะพ ะปะธัˆะต ัƒ ั‚ะตะณะฐั…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ะพะฑะณะพะฒะพั€ะตะฝะฝั" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "ะ†ะณะฝะพั€ัƒะฒะฐั‚ะธ ัะปะพะฒะฐ ั‚ะฐ ั‚ะตะณะธ" @@ -3204,7 +3229,7 @@ msgstr "ะ†ะณะฝะพั€ัƒั”ั‚ัŒัั" msgid "Muted accounts" msgstr "ะ†ะณะฝะพั€ะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "ะ†ะณะฝะพั€ะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" @@ -3230,7 +3255,7 @@ msgstr "ะ†ะณะฝะพั€ัƒะฒะฐะฝะฝั ั” ะฟั€ะธะฒะฐั‚ะฝะธะผ. ะ†ะณะฝะพั€ะพะฒะฐะฝั– ะบะพ msgid "My Birthday" msgstr "ะœั–ะน ะดะตะฝัŒ ะฝะฐั€ะพะดะถะตะฝะฝั" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "ะœะพั— ัั‚ั€ั–ั‡ะบะธ" @@ -3246,7 +3271,7 @@ msgstr "ะœะพั— ะทะฑะตั€ะตะถะตะฝั– ัั‚ั€ั–ั‡ะบะธ" msgid "My Saved Feeds" msgstr "ะœะพั— ะทะฑะตั€ะตะถะตะฝั– ัั‚ั€ั–ั‡ะบะธ" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "ะ†ะผ'ั" @@ -3328,8 +3353,8 @@ msgctxt "action" msgid "New post" msgstr "ะะพะฒะธะน ะฟะพัั‚" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3399,7 +3424,7 @@ msgstr "ะะตะผะฐั” ะฟะฐะฝะตะปั– DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "ะ’ะธ ะฑั–ะปัŒัˆะต ะฝะต ะฟั–ะดะฟะธัะฐะฝั– ะฝะฐ {0}" @@ -3407,7 +3432,7 @@ msgstr "ะ’ะธ ะฑั–ะปัŒัˆะต ะฝะต ะฟั–ะดะฟะธัะฐะฝั– ะฝะฐ {0}" msgid "No longer than 253 characters" msgstr "ะะต ะผะพะถะต ะฑัƒั‚ะธ ะดะพะฒัˆะธะผ ะทะฐ 253 ัะธะผะฒะพะปะธ" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "" @@ -3415,7 +3440,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "ะฉะต ะฝั–ัะบะธั… ัะฟะพะฒั–ั‰ะตะฝัŒ!" @@ -3426,6 +3451,10 @@ msgstr "ะฉะต ะฝั–ัะบะธั… ัะฟะพะฒั–ั‰ะตะฝัŒ!" msgid "No one" msgstr "" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3439,13 +3468,13 @@ msgstr "" msgid "No results found" msgstr "ะั–ั‡ะพะณะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "ะั–ั‡ะพะณะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ ะทะฐ ะทะฐะฟะธั‚ะพะผ ยซ{query}ยป" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "ะั–ั‡ะพะณะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ ะทะฐ ะทะฐะฟะธั‚ะพะผ ยซ{query}ยป" @@ -3484,7 +3513,7 @@ msgstr "ะะตัะตะบััƒะฐะปัŒะฝะฐ ะพะณะพะปะตะฝั–ัั‚ัŒ" #~ msgid "Not Applicable." #~ msgstr "ะะต ะทะฐัั‚ะพัะพะฒะฝะพ." -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "ะะต ะทะฝะฐะนะดะตะฝะพ" @@ -3495,7 +3524,7 @@ msgid "Not right now" msgstr "ะŸั–ะทะฝั–ัˆะต" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "ะŸั€ะธะผั–ั‚ะบะฐ ั‰ะพะดะพ ะฟะพัˆะธั€ะตะฝะฝั" @@ -3516,13 +3545,13 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "ะกะฟะพะฒั–ั‰ะตะฝะฝั" @@ -3572,11 +3601,11 @@ msgstr "ะกะฟะพั‡ะฐั‚ะบัƒ ะฝะฐะนะดะฐะฒะฝั–ัˆั–" msgid "Onboarding reset" msgstr "ะกะบะธะฝัƒั‚ะธ ะพะทะฝะฐะนะพะผะปะตะฝะฝั" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "ะ”ะปั ะพะดะฝะพะณะพ ะฐะฑะพ ะบั–ะปัŒะบะพั… ะทะพะฑั€ะฐะถะตะฝัŒ ะฒั–ะดััƒั‚ะฝั–ะน ะพะฟะธั." -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "" @@ -3606,17 +3635,17 @@ msgstr "ะ’ั–ะดะบั€ะธั‚ะธ" msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "ะ•ะผะพะดะถั–" @@ -3636,11 +3665,11 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ั–ะณะฝะพั€ัƒะฒะฐะฝะฝั ัะปั–ะฒ ั– ั‚ะตะณั–ะฒ" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะฝะฐะฒั–ะณะฐั†ั–ัŽ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะผะตะฝัŽ ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝัŒ ะฟะพัั‚ัƒ" @@ -3749,8 +3778,8 @@ msgstr "ะ’ั–ะดะบั€ะธะฒะฐั” ั„ะพั€ะผัƒ ัะบะธะดะฐะฝะฝั ะฟะฐั€ะพะปั" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "ะ’ั–ะดะบั€ะธะฒะฐั” ัั‚ะพั€ั–ะฝะบัƒ ะท ัƒัั–ะผะฐ ะทะฑะตั€ะตะถะตะฝะธะผะธ ัั‚ั€ั–ั‡ะบะฐะผะธ" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "ะ’ั–ะดะบั€ะธะฒะฐั” ัั‚ะพั€ั–ะฝะบัƒ ะท ัƒัั–ะผะฐ ะทะฑะตั€ะตะถะตะฝะธะผะธ ัั‚ั€ั–ั‡ะบะฐะผะธ" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3794,8 +3823,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "ะžะฟั†ั–ั {0} ะท {numItems}" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "ะ—ะฐ ะฑะฐะถะฐะฝะฝัะผ ะฝะฐะดะฐะนั‚ะต ะดะพะดะฐั‚ะบะพะฒัƒ ั–ะฝั„ะพั€ะผะฐั†ั–ัŽ ะฝะธะถั‡ะต:" @@ -3859,15 +3888,15 @@ msgstr "ะŸะฐั€ะพะปัŒ ะทะผั–ะฝะตะฝะพ!" msgid "Pause" msgstr "" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "ะ›ัŽะดะธ" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "ะ›ัŽะดะธ, ะฝะฐ ัะบะธั… ะฟั–ะดะฟะธัะฐะฝะธะน(-ะฝะฐ) @{0}" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "ะ›ัŽะดะธ, ัะบั– ะฟั–ะดะฟะธัะฐะฝั– ะฝะฐ @{0}" @@ -3946,15 +3975,15 @@ msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะทะฐะฒะตั€ัˆั–ั‚ัŒ ะฟะตั€ะตะฒั–ั€ะบัƒ Captcha." msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟั–ะดั‚ะฒะตั€ะดั–ั‚ัŒ ะฒะฐัˆัƒ ะตะปะตะบั‚ั€ะพะฝะฝัƒ ะฐะดั€ะตััƒ, ะฟะตั€ัˆ ะฝั–ะถ ะทะผั–ะฝะธั‚ะธ ั—ั—. ะฆะต ั‚ะธะผั‡ะฐัะพะฒะฐ ะฒะธะผะพะณะฐ ะฟั–ะด ั‡ะฐั ะดะพะดะฐะฒะฐะฝะฝั ั–ะฝัั‚ั€ัƒะผะตะฝั‚ั–ะฒ ะพะฝะพะฒะปะตะฝะฝั ะตะปะตะบั‚ั€ะพะฝะฝะพั— ะฐะดั€ะตัะธ, ะฝะตะทะฐะฑะฐั€ะพะผ ั—ั— ะฒะธะดะฐะปัั‚ัŒ." -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฒะฒะตะดั–ั‚ัŒ ั–ะผ'ั ะดะปั ะฟะฐั€ะพะปั ะทะฐัั‚ะพััƒะฝะบัƒ. ะŸั€ะพะฑั–ะปะธ ั– ะฟั€ะพะฟัƒัะบะธ ะฝะต ะดะพะฟัƒัะบะฐัŽั‚ัŒัั." -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฒะฒะตะดั–ั‚ัŒ ัƒะฝั–ะบะฐะปัŒะฝัƒ ะฝะฐะทะฒัƒ ะดะปั ั†ัŒะพะณะพ ะฟะฐั€ะพะปัŽ ะฐะฑะพ ะฒะธะบะพั€ะธัั‚ะพะฒัƒะนั‚ะต ะฝะฐัˆัƒ ะฒะธะฟะฐะดะบะพะฒะพ ะทะณะตะฝะตั€ะพะฒะฐะฝัƒ." -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฒะฒะตะดั–ั‚ัŒ ะดะพะฟัƒัั‚ะธะผะต ัะปะพะฒะพ, ั‚ะตะณ ะฐะฑะพ ั„ั€ะฐะทัƒ ะดะปั ั–ะณะฝะพั€ัƒะฒะฐะฝะฝั" @@ -3966,7 +3995,7 @@ msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฒะฒะตะดั–ั‚ัŒ ะฐะดั€ะตััƒ ะตะป. ะฟะพัˆั‚ะธ." msgid "Please enter your password as well:" msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ั‚ะฐะบะพะถ ะฒะฒะตะดั–ั‚ัŒ ะฒะฐัˆ ะฟะฐั€ะพะปัŒ:" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟะพััะฝั–ั‚ัŒ, ั‡ะพะผัƒ ะฒะธ ะฒะฒะฐะถะฐั”ั‚ะต, ั‰ะพ ั†ั ะฟะพะทะฝะฐั‡ะบะฐ ะฑัƒะปะฐ ะฟะพะผะธะปะบะพะฒะพ ะดะพะดะฐะฝะฐ ะดะพ {0}" @@ -3983,7 +4012,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "ะŸั–ะดั‚ะฒะตั€ะดัŒั‚ะต ัะฒะพัŽ ะฐะดั€ะตััƒ ะตะปะตะบั‚ั€ะพะฝะฝะพั— ะฟะพัˆั‚ะธ" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะทะฐั‡ะตะบะฐะนั‚ะต ะดะพะบะธ ะทะฐะฒะตั€ัˆะธั‚ัŒัั ัั‚ะฒะพั€ะตะฝะฝั ะฟะพะฟะตั€ะตะดะฝัŒะพะณะพ ะฟะตั€ะตะณะปัะดัƒ ะดะปั ะฟะพัะธะปะฐะฝะฝั" @@ -3995,28 +4024,28 @@ msgstr "ะŸะพะปั–ั‚ะธะบะฐ" msgid "Porn" msgstr "ะŸะพั€ะฝะพะณั€ะฐั„ั–ั" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "ะ—ะฐะฟะพัั‚ะธั‚ะธ" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "ะŸะพัั‚" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "ะŸะพัั‚ ะฒั–ะด {0}" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "ะŸะพัั‚ ะฒั–ะด @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "ะŸะพัั‚ ะฒะธะดะฐะปะตะฝะพ" @@ -4055,11 +4084,11 @@ msgstr "ะฟะพัั‚ะธ" msgid "Posts" msgstr "ะŸะพัั‚ะธ" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "ะŸะพัั‚ะธ ะผะพะถัƒั‚ัŒ ะฑัƒั‚ะธ ั–ะณะฝะพั€ะพะฒะฐะฝั– ะทะฐ ั—ั…ะฝั–ะผ ั‚ะตะบัั‚ะพะผ, ั‚ะตะณะฐะผะธ ั‡ะธ ะทะฐ ะพะฑะพะผะฐ." -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "ะŸะพัั‚ะธ ะฟั€ะธั…ะพะฒะฐะฝะพ" @@ -4087,6 +4116,10 @@ msgstr "ะะฐั‚ะธัะฝั–ั‚ัŒ, ั‰ะพะฑ ะฟะพะฒั‚ะพั€ะธั‚ะธ ัะฟั€ะพะฑัƒ" #~ msgid "Press to Retry" #~ msgstr "" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "ะŸะพะฟะตั€ะตะดะฝั” ะทะพะฑั€ะฐะถะตะฝะฝั" @@ -4104,11 +4137,11 @@ msgstr "ะŸั€ั–ะพั€ะธั‚ะตะทัƒะฒะฐั‚ะธ ะฒะฐัˆั– ะฟั–ะดะฟะธัะบะธ" msgid "Privacy" msgstr "ะšะพะฝั„ั–ะดะตะฝั†ั–ะนะฝั–ัั‚ัŒ" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "ะŸะพะปั–ั‚ะธะบะฐ ะบะพะฝั„ั–ะดะตะฝั†ั–ะนะฝะพัั‚ั–" @@ -4128,8 +4161,8 @@ msgstr "ะฟั€ะพั„ั–ะปัŒ" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "ะŸั€ะพั„ั–ะปัŒ" @@ -4153,16 +4186,16 @@ msgstr "ะŸัƒะฑะปั–ั‡ะฝั–, ะฟะพัˆะธั€ัŽะฒะฐะฝั– ัะฟะธัะบะธ ะบะพั€ะธัั‚ัƒะฒะฐั‡ msgid "Public, shareable lists which can drive feeds." msgstr "ะŸัƒะฑะปั–ั‡ะฝั–, ะฟะพัˆะธั€ัŽะฒะฐะฝั– ัะฟะธัะบะธ ะดะปั ัั‚ะฒะพั€ะตะฝะฝั ัั‚ั€ั–ั‡ะพะบ." -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "ะžะฟัƒะฑะปั–ะบัƒะฒะฐั‚ะธ ะฟะพัั‚" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "ะžะฟัƒะฑะปั–ะบัƒะฒะฐั‚ะธ ะฒั–ะดะฟะพะฒั–ะดัŒ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -4190,7 +4223,7 @@ msgstr "ะกะฟั–ะฒะฒั–ะดะฝะพัˆะตะฝะฝั ัั‚ะพั€ั–ะฝ" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "" @@ -4198,7 +4231,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "ะžัั‚ะฐะฝะฝั– ะทะฐะฟะธั‚ะธ" @@ -4218,12 +4251,12 @@ msgstr "" msgid "Reload conversations" msgstr "" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "ะ’ะธะดะฐะปะธั‚ะธ" @@ -4243,25 +4276,25 @@ msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะฑะฐะฝะตั€" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ัั‚ั€ั–ั‡ะบัƒ" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ัั‚ั€ั–ั‡ะบัƒ?" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "ะ’ะธะปัƒั‡ะธั‚ะธ ะท ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะท ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ?" @@ -4273,15 +4306,15 @@ msgstr "ะ’ะธะปัƒั‡ะธั‚ะธ ะทะพะฑั€ะฐะถะตะฝะฝั" msgid "Remove image preview" msgstr "ะ’ะธะปัƒั‡ะธั‚ะธ ะฟะพะฟะตั€ะตะดะฝั–ะน ะฟะตั€ะตะณะปัะด ะทะพะฑั€ะฐะถะตะฝะฝั" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "ะ’ะธะปัƒั‡ะธั‚ะธ ั–ะณะฝะพั€ะพะฒะฐะฝั– ัะปะพะฒะฐ ะท ะฒะฐัˆะพะณะพ ัะฟะธัะบัƒ" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -4289,12 +4322,12 @@ msgstr "" msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ั€ะตะฟะพัั‚" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "ะ’ะธะปัƒั‡ะธั‚ะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ ะทั– ะทะฑะตั€ะตะถะตะฝะธั… ัั‚ั€ั–ั‡ะพะบ" @@ -4303,7 +4336,7 @@ msgstr "ะ’ะธะปัƒั‡ะธั‚ะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ ะทั– ะทะฑะตั€ะตะถะตะฝะธั… ัั‚ั€ั– msgid "Removed from list" msgstr "ะ’ะธะปัƒั‡ะตะฝะพ ะทั– ัะฟะธัะบัƒ" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "ะ’ะธะปัƒั‡ะตะฝะพ ะท ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ" @@ -4334,7 +4367,7 @@ msgstr "ะ’ั–ะดะฟะพะฒั–ะดั–" msgid "Replies to this thread are disabled" msgstr "ะ’ั–ะดะฟะพะฒั–ะดั– ะดะพ ั†ัŒะพะณะพ ะฟะพัั‚ัƒ ะฒะธะผะบะฝะตะฝะพ" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "ะ’ั–ะดะฟะพะฒั–ัั‚ะธ" @@ -4394,8 +4427,8 @@ msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธััŒ ะฝะฐ ัะฟะธัะพะบ" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธััŒ ะฝะฐ ะฟะพัั‚" @@ -4411,8 +4444,8 @@ msgstr "ะŸะพะฒั–ะดะพะผะธั‚ะธ ะฟั€ะพ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ" msgid "Report this list" msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธััŒ ะฝะฐ ั†ะตะน ัะฟะธัะพะบ" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "" @@ -4425,9 +4458,9 @@ msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธััŒ ะฝะฐ ั†ะตะน ะฟะพัั‚" msgid "Report this user" msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธััŒ ะฝะฐ ั†ัŒะพะณะพ ะบะพั€ะธัั‚ัƒะฒะฐั‡ะฐ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "ะ ะตะฟะพัั‚" @@ -4437,7 +4470,7 @@ msgstr "ะ ะตะฟะพัั‚" msgid "Repost" msgstr "ะ ะตะฟะพัั‚ะธั‚ะธ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4463,7 +4496,7 @@ msgstr "ะ—ั€ะพะฑะปะตะฝะพ ั€ะตะฟะพัั‚ ะฒั–ะด <0><1/>" msgid "reposted your post" msgstr "ะทั€ะพะฑะธะฒ(-ะปะฐ) ั€ะตะฟะพัั‚ ะฒะฐัˆะพะณะพ ะดะพะฟะธััƒ" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "ะ ะตะฟะพัั‚ะธ ั†ัŒะพะณะพ ะฟะพัั‚ะฐ" @@ -4566,8 +4599,8 @@ msgid "Returns to previous page" msgstr "ะŸะพะฒะตั€ั‚ะฐั” ะดะพ ะฟะพะฟะตั€ะตะดะฝัŒะพั— ัั‚ะพั€ั–ะฝะบะธ" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4647,20 +4680,20 @@ msgid "Scroll to top" msgstr "ะŸั€ะพะณะพั€ะฝัƒั‚ะธ ะฒะณะพั€ัƒ" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "ะŸะพัˆัƒะบ" @@ -4668,7 +4701,7 @@ msgstr "ะŸะพัˆัƒะบ" msgid "Search for \"{query}\"" msgstr "ะจัƒะบะฐั‚ะธ \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "" @@ -4790,7 +4823,7 @@ msgstr "ะžะฑั€ะฐั‚ะธ ะฒะฐั€ั–ะฐะฝั‚ {i} ั–ะท {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "ะžะฑะตั€ั–ั‚ัŒ ัะตั€ะฒั–ั ะผะพะดะตั€ะฐั†ั–ั— ะดะปั ัะบะฐั€ะณะธ" @@ -4852,8 +4885,8 @@ msgctxt "action" msgid "Send Email" msgstr "ะะฐะดั–ัะปะฐั‚ะธ ะตะป. ะปะธัั‚" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "ะะฐะดั–ัะปะฐั‚ะธ ะฒั–ะดะณัƒะบ" @@ -4862,14 +4895,14 @@ msgstr "ะะฐะดั–ัะปะฐั‚ะธ ะฒั–ะดะณัƒะบ" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธััŒ" @@ -4882,8 +4915,8 @@ msgstr "ะะฐะดั–ัะปะฐั‚ะธ ัะบะฐั€ะณัƒ ะดะพ {0}" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "" @@ -4967,11 +5000,11 @@ msgstr "ะ’ัั‚ะฐะฝะพะฒะปัŽั” ัะฟั–ะฒะฒั–ะดะฝะพัˆะตะฝะฝั ัั‚ะพั€ั–ะฝ ะทะพะฑั€ msgid "Sets image aspect ratio to wide" msgstr "ะ’ัั‚ะฐะฝะพะฒะปัŽั” ัะฟั–ะฒะฒั–ะดะฝะพัˆะตะฝะฝั ัั‚ะพั€ั–ะฝ ะทะพะฑั€ะฐะถะตะฝะฝั ะดะพ ัˆะธั€ะธะฝะธ" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั" @@ -4990,8 +5023,8 @@ msgstr "ะŸะพัˆะธั€ะธั‚ะธ" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -5006,7 +5039,7 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "ะ’ัะต ะพะดะฝะพ ะฟะพัˆะธั€ะธั‚ะธ" @@ -5058,7 +5091,7 @@ msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะทะฝะฐั‡ะพะบ" msgid "Show badge and filter from feeds" msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะทะฝะฐั‡ะพะบ ั– ั„ั–ะปัŒั‚ั€ะธ ะทั– ัั‚ั€ั–ั‡ะบะธ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะฟั–ะดะฟะธัะบะธ, ัั…ะพะถั– ะฝะฐ {0}" @@ -5066,19 +5099,19 @@ msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะฟั–ะดะฟะธัะบะธ, ัั…ะพะถั– ะฝะฐ {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะฑั–ะปัŒัˆะต" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "" @@ -5167,9 +5200,9 @@ msgstr "ะŸะพะบะฐะทัƒั” ะดะพะฟะธัะธ ะท {0} ัƒ ะฒะฐัˆั–ะน ัั‚ั€ั–ั‡ั†ั–" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5200,9 +5233,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5243,7 +5276,7 @@ msgstr "ะ ะพะทั€ะพะฑะบะฐ ะŸ/ะ—" msgid "Some people can reply" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "" @@ -5275,7 +5308,7 @@ msgstr "ะžะฑะตั€ั–ั‚ัŒ, ัะบ ัะพั€ั‚ัƒะฒะฐั‚ะธ ะฒั–ะดะฟะพะฒั–ะดั– ะดะพ ะฟะพัั‚ #~ msgid "Source:" #~ msgstr "ะ”ะถะตั€ะตะปะพ:" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "" @@ -5328,13 +5361,13 @@ msgstr "" msgid "Storage cleared, you need to restart the app now." msgstr "ะกั…ะพะฒะธั‰ะต ะพั‡ะธั‰ะตะฝะพ, ั‚ะตะฟะตั€ ะฒะฐะผ ั‚ั€ะตะฑะฐ ะฟะตั€ะตะทะฐะฟัƒัั‚ะธั‚ะธ ะทะฐัั‚ะพััƒะฝะพะบ." -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5365,7 +5398,7 @@ msgstr "ะŸั–ะดะฟะธัะฐั‚ะธัั ะฝะฐ ั†ัŒะพะณะพ ะผะฐั€ะบัƒะฒะฐะปัŒะฝะธะบะฐ" msgid "Subscribe to this list" msgstr "ะŸั–ะดะฟะธัะฐั‚ะธัั ะฝะฐ ั†ะตะน ัะฟะธัะพะบ" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "ะŸั€ะพะฟะพะฝะพะฒะฐะฝั– ะฟั–ะดะฟะธัะบะธ" @@ -5377,7 +5410,7 @@ msgstr "ะŸั€ะพะฟะพะทะธั†ั–ั— ะดะปั ะฒะฐั" msgid "Suggestive" msgstr "ะะตะฟั€ะธัั‚ะพะนะฝะธะน" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5404,7 +5437,7 @@ msgstr "ะกะธัั‚ะตะผะฝะต" msgid "System log" msgstr "ะกะธัั‚ะตะผะฝะธะน ะถัƒั€ะฝะฐะป" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "ั‚ะตะณ" @@ -5432,11 +5465,11 @@ msgstr "" msgid "Terms" msgstr "ะฃะผะพะฒะธ" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "ะฃะผะพะฒะธ ะ’ะธะบะพั€ะธัั‚ะฐะฝะฝั" @@ -5446,17 +5479,17 @@ msgstr "ะฃะผะพะฒะธ ะ’ะธะบะพั€ะธัั‚ะฐะฝะฝั" msgid "Terms used violate community standards" msgstr "ะ’ะธะบะพั€ะธัั‚ะฐะฝั– ั‚ะตั€ะผั–ะฝะธ ะฟะพั€ัƒัˆัƒัŽั‚ัŒ ัั‚ะฐะฝะดะฐั€ั‚ะธ ัะฟั–ะปัŒะฝะพั‚ะธ" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "ั‚ะตะบัั‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "ะŸะพะปะต ะฒะฒะพะดัƒ ั‚ะตะบัั‚ัƒ" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "ะ”ัะบัƒั”ะผะพ. ะ’ะฐัˆัƒ ัะบะฐั€ะณัƒ ะฑัƒะปะพ ะฝะฐะดั–ัะปะฐะฝะพ." @@ -5468,7 +5501,7 @@ msgstr "ะฉะพ ะผั–ัั‚ะธั‚ัŒ ะฝะฐัั‚ัƒะฟะฝะต:" msgid "That handle is already taken." msgstr "ะฆะตะน ะฟัะตะฒะดะพะฝั–ะผ ะฒะถะต ะทะฐะนะฝัั‚ะธะน." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "ะžะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ะทะผะพะถะต ะฒะทะฐั”ะผะพะดั–ัั‚ะธ ะท ะฒะฐะผะธ ะฟั–ัะปั ั€ะพะทะฑะปะพะบัƒะฒะฐะฝะฝั." @@ -5489,11 +5522,11 @@ msgstr "ะŸะพะปั–ั‚ะธะบัƒ ะทะฐั…ะธัั‚ัƒ ะฐะฒั‚ะพั€ััŒะบะพะณะพ ะฟั€ะฐะฒะฐ ะฟะตั€ msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "ะะฐัั‚ัƒะฟะฝั– ะผั–ั‚ะบะธ ะฑัƒะปะธ ะดะพะดะฐะฝะพ ะดะพ ะฒะฐัˆะพะณะพ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ." -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "ะะฐัั‚ัƒะฟะฝั– ะผั–ั‚ะบะธ ะฑัƒะปะธ ะดะพะดะฐะฝะพ ะดะพ ะฒะฐัˆะพะณะพ ะบะพะฝั‚ะตะฝั‚ัƒ." @@ -5531,7 +5564,7 @@ msgstr "" msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะดะพัั‚ัƒะฟะพะผ ะดะพ ัะตั€ะฒะตั€ะฐ. ะŸะตั€ะตะฒั–ั€ั‚ะต ะฟั–ะดะบะปัŽั‡ะตะฝะฝั ะดะพ ะ†ะฝั‚ะตั€ะฝะตั‚ัƒ ั– ะฟะพะฒั‚ะพั€ั–ั‚ัŒ ัะฟั€ะพะฑัƒ ะทะฝะพะฒัƒ." -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะฟั€ะธ ะฒะธะดะฐะปะตะฝะฝั– ั†ั–ั”ั— ัั‚ั€ั–ั‡ะบะธ. ะŸะตั€ะตะฒั–ั€ั‚ะต ะฟั–ะดะบะปัŽั‡ะตะฝะฝั ะดะพ ะ†ะฝั‚ะตั€ะฝะตั‚ัƒ ั– ะฟะพะฒั‚ะพั€ั–ั‚ัŒ ัะฟั€ะพะฑัƒ." @@ -5559,12 +5592,12 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "ะŸั€ะธ ะท'ั”ะดะฝะฐะฝะฝั– ะท ัะตั€ะฒะตั€ะพะผ ะฒะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "ะŸั€ะธ ะท'ั”ะดะฝะฐะฝะฝั– ะท ะฒะฐัˆะธะผ ัะตั€ะฒะตั€ะพะผ ะฒะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝัะผ ัะฟะพะฒั–ั‰ะตะฝัŒ. ะะฐั‚ะธัะฝั–ั‚ัŒ ั‚ัƒั‚, ั‰ะพะฑ ะฟะพะฒั‚ะพั€ะธั‚ะธ ัะฟั€ะพะฑัƒ." @@ -5581,8 +5614,8 @@ msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝัะผ ัะฟะธัะบ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝัะผ ะฒะฐัˆะธั… ัะฟะธัะบั–ะฒ. ะะฐั‚ะธัะฝั–ั‚ัŒ ั‚ัƒั‚, ั‰ะพะฑ ะฟะพะฒั‚ะพั€ะธั‚ะธ ัะฟั€ะพะฑัƒ." -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะฝะฐะดัะธะปะฐะฝะฝัะผ ะฒะฐัˆะพั— ัะบะฐั€ะณะธ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟะตั€ะตะฒั–ั€ั‚ะต ะฟั–ะดะบะปัŽั‡ะตะฝะฝั ะดะพ ะ†ะฝั‚ะตั€ะฝะตั‚ัƒ." @@ -5594,9 +5627,9 @@ msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะฝะฐะดัะธะปะฐะฝะฝัะผ ะฒะฐัˆะพั— ั msgid "There was an issue with fetching your app passwords" msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝัะผ ะฒะฐัˆะธั… ะฟะฐั€ะพะปั–ะฒ ะดะปั ะทะฐัั‚ะพััƒะฝะบั–ะฒ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5641,7 +5674,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "ะฆะต ะทะฒะตั€ะฝะตะฝะฝั ะฑัƒะดะต ะฝะฐะดั–ัะปะฐะฝะพ ะดะพ <0>{0}." @@ -5674,28 +5707,37 @@ msgstr "ะฆะตะน ะฒะผั–ัั‚ ั€ะพะทะผั–ั‰ะตะฝะพ {0}. ะฃะฒั–ะผะบะฝัƒั‚ะธ ะทะพะฒะฝั– msgid "This content is not available because one of the users involved has blocked the other." msgstr "ะฆะตะน ะบะพะฝั‚ะตะฝั‚ ะฝะตะดะพัั‚ัƒะฟะฝะธะน, ะพัะบั–ะปัŒะบะธ ะพะดะธะฝ ั–ะท ะทะฐะปัƒั‡ะตะฝะธั… ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ะทะฐะฑะปะพะบัƒะฒะฐะฒ ั–ะฝัˆะพะณะพ." -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "ะฆะตะน ะฒะผั–ัั‚ ะฝะต ะดะพัั‚ัƒะฟะฝะธะน ะดะปั ะฟะตั€ะตะณะปัะดัƒ ะฑะตะท ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ Bluesky." +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "ะฆั ั„ัƒะฝะบั†ั–ั ะทะฝะฐั…ะพะดะธั‚ัŒัั ะฒ ะฑะตั‚ั–. ะ’ะธ ะผะพะถะตั‚ะต ะดั–ะทะฝะฐั‚ะธัั ะฑั–ะปัŒัˆะต ะฟั€ะพ ะตะบัะฟะพั€ั‚ ั€ะตะฟะพะทะธั‚ะพั€ั–ั—ะฒ ัƒ <0>ั†ัŒะพะผัƒ ะฑะปะพะทั–.." -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "ะฆั ัั‚ั€ั–ั‡ะบะฐ ะทะฐั€ะฐะท ะพั‚ั€ะธะผัƒั” ะทะฐะฑะฐะณะฐั‚ะพ ะทะฐะฟะธั‚ั–ะฒ ั– ั‚ะธะผั‡ะฐัะพะฒะพ ะฝะตะดะพัั‚ัƒะฟะฝะฐ. ะกะฟั€ะพะฑัƒะนั‚ะต ั‰ะต ั€ะฐะท ะฟั–ะทะฝั–ัˆะต." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "ะกั‚ั€ั–ั‡ะบะฐ ะฟะพั€ะพะถะฝั!" +#~ msgid "This feed is empty!" +#~ 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 "ะฆั ัั‚ั€ั–ั‡ะบะฐ ะฟะพั€ะพะถะฝั! ะœะพะถะปะธะฒะพ, ะฒะฐะผ ั‚ั€ะตะฑะฐ ะฟั–ะดะฟะธัะฐั‚ะธัั ะฝะฐ ะฑั–ะปัŒัˆัƒ ะบั–ะปัŒะบั–ัั‚ัŒ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ะฐะฑะพ ะทะผั–ะฝะธั‚ะธ ะฒะฐัˆั– ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะฒะธ." +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -5724,7 +5766,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "" @@ -5744,20 +5786,20 @@ msgstr "ะกะฟะธัะพะบ ะฟะพั€ะพะถะฝั–ะน!" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "ะ”ะฐะฝะธะน ัะตั€ะฒั–ั ะผะพะดะตั€ะฐั†ั–ั— ะฝะตะดะพัั‚ัƒะฟะฝะธะน. ะŸะตั€ะตะณะปัะฝัŒั‚ะต ะดะตั‚ะฐะปั– ะฝะธะถั‡ะต. ะฏะบั‰ะพ ะฟั€ะพะฑะปะตะผะฐ ะฝะต ะทะฝะธะบะฝะต, ะทะฒ'ัะถั–ั‚ัŒัั ะท ะฝะฐะผะธ." -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "ะฆะต ั–ะผ'ั ะฒะถะต ะฒะธะบะพั€ะธัั‚ะพะฒัƒั”ั‚ัŒัั" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "ะฆะตะน ะฟะพัั‚ ะฑัƒะปะพ ะฒะธะดะฐะปะตะฝะพ." -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "ะฆะตะน ะฟะพัั‚ ะฑัƒะดะต ะฟั€ะธั…ะพะฒะฐะฝะพ ะทั– ัั‚ั€ั–ั‡ะพะบ." @@ -5806,7 +5848,7 @@ msgstr "ะฆะตะน ะบะพั€ะธัั‚ัƒะฒะฐั‡ ะฝะต ะฟั–ะดะฟะธัะฐะฝะธะน ะฝั– ะฝะฐ ะบะพะณะพ #~ msgid "This warning is only available for posts with media attached." #~ msgstr "ะฆะต ะฟะพะฟะตั€ะตะดะถะตะฝะฝั ะดะพัั‚ัƒะฟะฝะต ั‚ั–ะปัŒะบะธ ะดะปั ะทะฐะฟะธัั–ะฒ ะท ะฟั€ะธะบั€ั–ะฟะปะตะฝะธะผะธ ะผะตะดั–ะฐ-ั„ะฐะนะปะฐะผะธ." -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "ะฆะต ะฒะธะดะฐะปะธั‚ัŒ {0} ะทั– ะฒะฐัˆะธั… ั–ะณะฝะพั€ะพะฒะฐะฝะธั… ัะปั–ะฒ. ะ’ะธ ะทะฐะฒะถะดะธ ะผะพะถะตั‚ะต ะดะพะดะฐั‚ะธ ะนะพะณะพ ะฝะฐะทะฐะด." @@ -5823,7 +5865,7 @@ msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะณั–ะปะพะบ" msgid "Threaded Mode" msgstr "ะ ะตะถะธะผ ะณั–ะปะพะบ" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะพะฑะณะพะฒะพั€ะตะฝัŒ" @@ -5839,7 +5881,7 @@ msgstr "" msgid "To whom would you like to send this report?" msgstr "ะšะพะผัƒ ะฒะธ ั…ะพั‚ั–ะปะธ ะฑ ะฒั–ะดะฟั€ะฐะฒะธั‚ะธ ั†ัŽ ัะบะฐั€ะณัƒ?" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "ะŸะตั€ะตะผะธะบะฐะฝะฝั ะผั–ะถ ะพะฟั†ั–ัะผะธ ั–ะณะฝะพั€ัƒะฒะฐะฝะฝั ัะปั–ะฒ." @@ -5852,7 +5894,7 @@ msgid "Toggle to enable or disable adult content" msgstr "ะฃะฒั–ะผะบะฝัƒั‚ะธ ะฐะฑะพ ะฒะธะผะบะฝัƒั‚ะธ ะฒะผั–ัั‚ ะดะปั ะดะพั€ะพัะปะธั…" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "ะ’ะตั€ั…" @@ -5862,10 +5904,10 @@ msgstr "ะ ะตะดะฐะณัƒะฒะฐะฝะฝั" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "ะŸะตั€ะตะบะปะฐัั‚ะธ" @@ -5907,14 +5949,14 @@ msgstr "ะะต ะฒะดะฐะปะพัั ะทะฒ'ัะทะฐั‚ะธัั ะท ะฒะฐัˆะธะผ ั…ะพัั‚ะธะฝะณ-ะฟ #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "ะ ะพะทะฑะปะพะบัƒะฒะฐั‚ะธ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "ะ ะพะทะฑะปะพะบัƒะฒะฐั‚ะธ" @@ -5929,12 +5971,12 @@ msgstr "" msgid "Unblock Account" msgstr "ะ ะพะทะฑะปะพะบัƒะฒะฐั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "ะ ะพะทะฑะปะพะบัƒะฒะฐั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5949,7 +5991,7 @@ msgstr "ะ’ั–ะดะฟะธัะฐั‚ะธััŒ" msgid "Unfollow" msgstr "ะะต ัั‚ะตะถะธั‚ะธ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "ะ’ั–ะดะฟะธัะฐั‚ะธัั ะฒั–ะด {0}" @@ -5992,8 +6034,8 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "ะŸะตั€ะตัั‚ะฐั‚ะธ ั–ะณะฝะพั€ัƒะฒะฐั‚ะธ" @@ -6043,7 +6085,7 @@ msgstr "ะžะฝะพะฒะธั‚ะธ ะดะพ {handle}" msgid "Updating..." msgstr "ะžะฝะพะฒะปะตะฝะฝั..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "" @@ -6104,7 +6146,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "ะ’ะธะบะพั€ะธัั‚ะฐั‚ะธ ะฟะฐะฝะตะปัŒ DNS" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." msgstr "ะกะบะพั€ะธัั‚ะฐะนั‚ะตััŒ ะฝะธะผ ะดะปั ะฒั…ะพะดัƒ ะฒ ั–ะฝัˆั– ะทะฐัั‚ะพััƒะฝะบะธ." @@ -6271,11 +6313,11 @@ msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ั–ะฝั„ะพั€ะผะฐั†ั–ัŽ ะฟั€ะพ ะผั–ั‚ะบะธ" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฟั€ะพั„ั–ะปัŒ" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฐะฒะฐั‚ะฐั€" @@ -6287,6 +6329,11 @@ msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฟะพัะปัƒะณะธ ะผะฐั€ะบัƒะฒะฐะฝะฝั, ัะบะธะน ะฝ msgid "View users who like this feed" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ, ัะบั– ะฒะฟะพะดะพะฑะฐะปะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -6310,7 +6357,7 @@ msgstr "ะŸะพะฟะตั€ะตะดะถัƒะฒะฐั‚ะธ ะฟั€ะพ ะฒะผั–ัั‚ ั– ั„ั–ะปัŒั‚ั€ัƒะฒะฐั‚ะธ msgid "We couldn't find any results for that hashtag." msgstr "ะœะธ ะฝะต ะทะผะพะณะปะธ ะทะฝะฐะนั‚ะธ ะถะพะดะฝะธั… ั€ะตะทัƒะปัŒั‚ะฐั‚ั–ะฒ ะดะปั ั†ัŒะพะณะพ ั…ะตัˆั‚ะตะณัƒ." -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "" @@ -6326,7 +6373,7 @@ msgstr "ะœะธ ัะฟะพะดั–ะฒะฐั”ะผะพัั, ั‰ะพ ะฒะธ ะฟั€ะพะฒะตะดะตั‚ะต ั‡ัƒะดะพะฒะพ msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "ะฃ ะฝะฐั ะทะฐะบั–ะฝั‡ะธะปะธัั ะดะพะฟะธัะธ ัƒ ะฒะฐัˆะธั… ะฟั–ะดะฟะธัะบะฐั…. ะžััŒ ะพัั‚ะฐะฝะฝั– ะฟะพัั‚ะธ ะทั– ัั‚ั€ั–ั‡ะบะธ <0/>." -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "ะœะธ ั€ะตะบะพะผะตะฝะดัƒั”ะผะพ ัƒะฝะธะบะฐั‚ะธ ะทะฐะณะฐะปัŒะฝะธั… ัะปั–ะฒ, ั‰ะพ ะทสผัะฒะปััŽั‚ัŒัั ัƒ ะฑะฐะณะฐั‚ัŒะพั… ะฟะพัั‚ะฐั…, ะพัะบั–ะปัŒะบะธ ั†ะต ะผะพะถะต ะฟั€ะธะทะฒะตัั‚ะธ ะดะพ ั‚ะพะณะพ, ั‰ะพ ะถะพะดะฝะพะณะพ ะฟะพัั‚ะฐ ะฝะต ะฑัƒะดะต ะฟะพะบะฐะทะฐะฝะพ." @@ -6366,14 +6413,18 @@ msgstr "ะœะธ ะดัƒะถะต ั€ะฐะดั–, ั‰ะพ ะฒะธ ะฟั€ะธั”ะดะฝะฐะปะธัั!" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "ะ”ัƒะถะต ะฟั€ะธะบั€ะพ, ะฐะปะต ะฝะฐะผ ะฝะต ะฒะดะฐะปะพัั ะทะฝะฐะนั‚ะธ ั†ะตะน ัะฟะธัะพะบ. ะฏะบั‰ะพ ั†ะต ะฟั€ะพะดะพะฒะถัƒั”ั‚ัŒัั, ะฑัƒะดัŒ ะปะฐัะบะฐ, ะทะฒ'ัะถั–ั‚ัŒัั ะท ะนะพะณะพ ะฐะฒั‚ะพั€ะพะผ: @{handleOrDid}." -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ะะฐ ะถะฐะปัŒ, ะผะธ ะฝะต ะทะผะพะณะปะธ ะทะฐั€ะฐะท ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฒะฐัˆั– ั–ะณะฝะพั€ะพะฒะฐะฝั– ัะปะพะฒะฐ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ั‰ะต ั€ะฐะท." -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -6397,7 +6448,7 @@ msgstr "ะงะธะผ ะฒะธ ั†ั–ะบะฐะฒะธั‚ะตััŒ?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "ะฏะบ ัะฟั€ะฐะฒะธ?" @@ -6418,7 +6469,7 @@ msgstr "" msgid "Who can reply" msgstr "ะฅั‚ะพ ะผะพะถะต ะฒั–ะดะฟะพะฒั–ะดะฐั‚ะธ" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "" @@ -6456,11 +6507,11 @@ msgstr "ะจะธั€ะพะบะต" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "ะะฐะฟะธัะฐั‚ะธ ะฟะพัั‚" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "ะะฐะฟะธัะฐั‚ะธ ะฒั–ะดะฟะพะฒั–ะดัŒ" @@ -6500,8 +6551,8 @@ msgstr "ะ’ะธ ะฒ ั‡ะตั€ะทั–." msgid "You are not following anyone." msgstr "ะ’ะธ ะฝั– ะฝะฐ ะบะพะณะพ ะฝะต ะฟั–ะดะฟะธัะฐะฝั–." -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "ะขะฐะบะพะถ ะฒะธ ะผะพะถะตั‚ะต ะทะฝะฐะนั‚ะธ ะบะฐัั‚ะพะผะฝั– ัั‚ั€ั–ั‡ะบะธ ะดะปั ะฟั–ะดะฟะธัะฐะฝะฝั." @@ -6534,6 +6585,10 @@ msgstr "" msgid "You do not have any followers." msgstr "ะฃ ะฒะฐั ะฝะตะผะฐั” ะถะพะดะฝะพะณะพ ะฟั–ะดะฟะธัะฝะธะบะฐ." +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "ะฃ ะฒะฐั ั‰ะต ะฝะตะผะฐั” ะบะพะดั–ะฒ ะทะฐะฟั€ะพัˆะตะฝะฝั! ะ— ั‡ะฐัะพะผ ะผะธ ะฝะฐะดะฐะผะพ ะฒะฐะผ ะดะตะบั–ะปัŒะบะฐ." @@ -6621,15 +6676,15 @@ msgstr "ะ’ะธ ั‰ะต ะฝะต ั–ะณะฝะพั€ัƒั”ั‚ะต ะถะพะดะฝะพะณะพ ะพะฑะปั–ะบะพะฒะพะณะพ ะท msgid "You have reached the end" msgstr "" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "ะฃ ะฒะฐั ั‰ะต ะฝะตะผะฐั” ั–ะณะฝะพั€ะพะฒะฐะฝะธั… ัะปั–ะฒ ั‡ะธ ั‚ะตะณั–ะฒ" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "ะ’ะธ ะผะพะถะตั‚ะต ะพัะบะฐั€ะถัƒะฒะฐั‚ะธ ะผั–ั‚ะบะธ, ัะบั‰ะพ ะฒะฒะฐะถะฐั”ั‚ะต, ั‰ะพ ะฒะพะฝะธ ะฑัƒะปะธ ั€ะพะทะผั–ั‰ะตะฝั– ะฟะพะผะธะปะบะพะฒะพ." @@ -6641,7 +6696,7 @@ msgstr "ะ’ะฐะผ ะผะฐั” ะฒะธะฟะพะฒะฝะธั‚ะธััŒ 13 ั€ะพะบั–ะฒ ะดะปั ั‚ะพะณะพ, ั‰ะพ #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "ะ’ะธ ะฟะพะฒะธะฝะฝั– ะฑัƒั‚ะธ ัั‚ะฐั€ัˆะต 18 ั€ะพะบั–ะฒ, ั‰ะพะฑ ะดะพะทะฒะพะปะธั‚ะธ ะฟะตั€ะตะณะปัะด ะบะพะฝั‚ะตะฝั‚ัƒ ะดะปั ะดะพั€ะพัะปะธั…" -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "ะ’ะธ ะฟะพะฒะธะฝะฝั– ะพะฑั€ะฐั‚ะธ ั…ะพั‡ะฐ ะฑ ะพะดะฝะพะณะพ ะผะฐั€ะบัƒะฒะฐะปัŒะฝะธะบะฐ ะดะปั ัะบะฐั€ะณะธ" @@ -6649,11 +6704,11 @@ msgstr "ะ’ะธ ะฟะพะฒะธะฝะฝั– ะพะฑั€ะฐั‚ะธ ั…ะพั‡ะฐ ะฑ ะพะดะฝะพะณะพ ะผะฐั€ะบัƒะฒะฐ msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "ะ’ะธ ะฑั–ะปัŒัˆะต ะฝะต ะฑัƒะดะตั‚ะต ะพั‚ั€ะธะผัƒะฒะฐั‚ะธ ัะฟะพะฒั–ั‰ะตะฝะฝั ะท ั†ัŒะพะณะพ ะพะฑะณะพะฒะพั€ะตะฝะฝั" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "ะ’ะธ ะฑัƒะดะตั‚ะต ะพั‚ั€ะธะผัƒะฒะฐั‚ะธ ัะฟะพะฒั–ั‰ะตะฝะฝั ะท ั†ัŒะพะณะพ ะพะฑะณะพะฒะพั€ะตะฝะฝั" @@ -6661,15 +6716,15 @@ msgstr "ะ’ะธ ะฑัƒะดะตั‚ะต ะพั‚ั€ะธะผัƒะฒะฐั‚ะธ ัะฟะพะฒั–ั‰ะตะฝะฝั ะท ั†ัŒะพะณ msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "ะ’ะธ ะพั‚ั€ะธะผะฐั”ั‚ะต ะตะปะตะบั‚ั€ะพะฝะฝะธะน ะปะธัั‚ ั–ะท ะบะพะดะพะผ ะฟั–ะดั‚ะฒะตั€ะดะถะตะฝะฝั. ะ’ะฒะตะดั–ั‚ัŒ ั†ะตะน ะบะพะด ั‚ัƒั‚, ะฐ ะฟะพั‚ั–ะผ ะฒะฒะตะดั–ั‚ัŒ ะฝะพะฒะธะน ะฟะฐั€ะพะปัŒ." -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6697,7 +6752,7 @@ msgstr "ะ’ัะต ะณะพั‚ะพะฒะพ!" msgid "You've chosen to hide a word or tag within this post." msgstr "ะ’ะธ ะพะฑั€ะฐะปะธ ะฟั€ะธั…ะพะฒัƒะฒะฐั‚ะธ ัะปะพะฒะพ ะฐะฑะพ ั‚ะตะณ ะฒ ั†ัŒะพะผัƒ ะฟะพัั‚ั–." -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ะ’ะฐัˆะฐ ะดะพะผะฐัˆะฝั ัั‚ั€ั–ั‡ะบะฐ ะทะฐะบั–ะฝั‡ะธะปะฐััŒ! ะŸั–ะดะฟะธัˆั–ั‚ัŒัั ะฝะฐ ะฑั–ะปัŒัˆะต ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั‰ะพะฑ ะพั‚ั€ะธะผัƒะฒะฐั‚ะธ ะฑั–ะปัŒัˆะต ะฟะพัั‚ั–ะฒ." @@ -6743,7 +6798,7 @@ msgstr "ะ’ะฐัˆัƒ ะฐะดั€ะตััƒ ะตะปะตะบั‚ั€ะพะฝะฝะพั— ะฟะพัˆั‚ะธ ะฑัƒะปะพ ะทะผั– msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "ะ’ะฐัˆะฐ ะตะปะตะบั‚ั€ะพะฝะฝะฐ ะฟะพัˆั‚ะฐ ั‰ะต ะฝะต ะฟั–ะดั‚ะฒะตั€ะดะถะตะฝะฐ. ะฆะต ะฒะฐะถะปะธะฒะธะน ะบั€ะพะบ ะดะปั ะฑะตะทะฟะตะบะธ ะฒะฐัˆะพะณะพ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ, ัะบะธะน ะผะธ ั€ะตะบะพะผะตะฝะดัƒั”ะผะพ ะฒะฐะผ ะทั€ะพะฑะธั‚ะธ." -#: src/view/com/posts/FollowingEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ะ’ะฐัˆะฐ ะดะพะผะฐัˆะฝั ัั‚ั€ั–ั‡ะบะฐ ะฟะพั€ะพะถะฝั! ะŸั–ะดะฟะธัˆั–ั‚ัŒัั ะฝะฐ ะฑั–ะปัŒัˆะต ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั‰ะพะฑ ะพั‚ั€ะธะผัƒะฒะฐั‚ะธ ะฑั–ะปัŒัˆะต ะฟะพัั‚ั–ะฒ." @@ -6755,7 +6810,7 @@ msgstr "ะ’ะฐัˆ ะฟะพะฒะฝะธะน ะฟัะตะฒะดะพะฝั–ะผ ะฑัƒะดะต" msgid "Your full handle will be <0>@{0}" msgstr "ะ’ะฐัˆะธะผ ะฟะพะฒะฝะธะผ ะฟัะตะฒะดะพะฝั–ะผะพะผ ะฑัƒะดะต <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "ะ’ะฐัˆั– ั–ะณะฝะพั€ะพะฒะฐะฝั– ัะปะพะฒะฐ" @@ -6763,7 +6818,7 @@ msgstr "ะ’ะฐัˆั– ั–ะณะฝะพั€ะพะฒะฐะฝั– ัะปะพะฒะฐ" msgid "Your password has been changed successfully!" msgstr "ะ’ะฐัˆ ะฟะฐั€ะพะปัŒ ัƒัะฟั–ัˆะฝะพ ะทะผั–ะฝะตะฝะพ!" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "ะŸะพัั‚ ะพะฟัƒะฑะปั–ะบะพะฒะฐะฝะพ" @@ -6779,11 +6834,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "ะ’ั–ะดะฟะพะฒั–ะดัŒ ะพะฟัƒะฑะปั–ะบะพะฒะฐะฝะพ" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index b5ee296d22..c077c47044 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: Frudrax Cheng (auroursa), Simon Chan (RitsukiP), U2FsdGVkX1, Mikan Harada (mitian233), IceCodeNew\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "๏ผˆๅŒ…ๅซๅตŒๅ…ฅๅ†…ๅฎน๏ผ‰" @@ -33,10 +33,14 @@ msgstr "{0, plural, one {# ไธชๆ ‡็ญพๅทฒๆ ‡่ฎฐๅˆฐ่ฟ™ไธช่ดฆๆˆท} other {# ไธชๆ ‡็ญพ msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {# ไธชๆ ‡็ญพๅทฒๆ ‡่ฎฐๅˆฐๆญคๅ†…ๅฎน} other {# ไธชๆ ‡็ญพๅทฒๆ ‡่ฎฐๅˆฐๆญคๅ†…ๅฎน}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# ๆก่ฝฌๅ‘} other {# ๆก่ฝฌๅ‘}}" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -51,11 +55,11 @@ msgstr "{0, plural, one {ๆญฃๅœจๅ…ณๆณจ} other {ๆญฃๅœจๅ…ณๆณจ}}" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {ๅ–œๆฌข (# ไธชๅ–œๆฌข)} other {ๅ–œๆฌข (# ไธชๅ–œๆฌข)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {ๅ–œๆฌข} other {ๅ–œๆฌข}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {# ไฝ็”จๆˆทๅ–œๆฌข} other {# ไฝ็”จๆˆทๅ–œๆฌข}}" @@ -67,7 +71,7 @@ msgstr "{0, plural, one {ๅธ–ๅญ} other {ๅธ–ๅญ}}" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {ๅ›žๅค (# ไธชๅ›žๅค)} other {ๅ›žๅค (# ไธชๅ›žๅค)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {่ฝฌๅ‘} other {่ฝฌๅ‘}}" @@ -106,7 +110,7 @@ msgstr "ๆ— ๆณ•็ป™ {handle} ๅ‘้€็งไฟก" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# ไฝ็”จๆˆทๅ–œๆฌข} other {# ไฝ็”จๆˆทๅ–œๆฌข}}" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} ไธชๆœช่ฏป" @@ -138,12 +142,12 @@ msgstr "โš ๆ— ๆ•ˆ็š„็”จๆˆท่ฏ†ๅˆซ็ฌฆ" msgid "2FA Confirmation" msgstr "ไธคๆญฅ้ชŒ่ฏ" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "่ฎฟ้—ฎๅฏผ่ˆช้“พๆŽฅๅŠ่ฎพ็ฝฎ" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "่ฎฟ้—ฎไธชไบบ่ต„ๆ–™ๅŠๅ…ถไป–ๅฏผ่ˆช้“พๆŽฅ" @@ -156,7 +160,7 @@ msgstr "ๆ— ้šœ็ข" msgid "Accessibility settings" msgstr "ๆ— ้šœ็ข่ฎพ็ฝฎ" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "ๆ— ้šœ็ข่ฎพ็ฝฎ" @@ -196,7 +200,7 @@ msgstr "่ดฆๆˆท้€‰้กน" msgid "Account removed from quick access" msgstr "ๅทฒไปŽๅฟซ้€Ÿ่ฎฟ้—ฎไธญ็งป้™ค่ดฆๆˆท" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "ๅทฒๅ–ๆถˆๅฑ่”ฝ่ดฆๆˆท" @@ -209,7 +213,7 @@ msgstr "ๅทฒๅ–ๆถˆๅ…ณๆณจ่ดฆๆˆท" msgid "Account unmuted" msgstr "ๅทฒๅ–ๆถˆ้š่—่ดฆๆˆท" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -231,9 +235,9 @@ msgstr "ๅฐ†็”จๆˆทๆทปๅŠ ่‡ณๅˆ—่กจ" msgid "Add account" msgstr "ๆทปๅŠ ่ดฆๆˆท" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -246,15 +250,15 @@ msgstr "ๆ–ฐๅขžๆ›ฟไปฃๆ–‡ๅญ—" msgid "Add App Password" msgstr "ๆ–ฐๅขžๅบ”็”จไธ“็”จๅฏ†็ " -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "ไธบ้…็ฝฎ็š„่ฎพ็ฝฎๆทปๅŠ ้š่—่ฏๆฑ‡" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "ๆทปๅŠ ้š่—่ฏๅ’Œๆ ‡็ญพ" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "ๆทปๅŠ ๆŽจ่็š„่ต„่ฎฏๆบ" @@ -271,7 +275,7 @@ msgstr "ๅฐ†ไปฅไธ‹ DNS ่ฎฐๅฝ•ๆ–ฐๅขžๅˆฐไฝ ็š„ๅŸŸๅ:" msgid "Add to Lists" msgstr "ๆทปๅŠ ่‡ณๅˆ—่กจ" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "ๆทปๅŠ ่‡ณ่‡ชๅฎšไน‰่ต„่ฎฏๆบ" @@ -280,7 +284,7 @@ msgstr "ๆทปๅŠ ่‡ณ่‡ชๅฎšไน‰่ต„่ฎฏๆบ" msgid "Added to list" msgstr "ๅทฒๆทปๅŠ ่‡ณๅˆ—่กจ" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "ๅทฒๆทปๅŠ ่‡ณ่‡ชๅฎšไน‰่ต„่ฎฏๆบ" @@ -302,12 +306,12 @@ msgstr "ๆˆไบบๅ†…ๅฎนๆ˜พ็คบๅทฒ่ขซ็ฆ็”จใ€‚" msgid "Advanced" msgstr "่ฏฆ็ป†่ฎพ็ฝฎ" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "ไฝ ไฟๅญ˜็š„ๆ‰€ๆœ‰่ต„่ฎฏๆบ้ƒฝ้›†ไธญๅœจไธ€ๅค„ใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "ๅ…่ฎธ่ฏปๅ–ไฝ ็š„็งไฟก" @@ -325,13 +329,13 @@ msgstr "ๅทฒ็ปๆœ‰้ชŒ่ฏ็ ไบ†๏ผŸ" msgid "Already signed in as @{0}" msgstr "ๅทฒไปฅ@{0}่บซไปฝ็™ปๅฝ•" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -375,6 +379,7 @@ msgstr "ๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏท้‡่ฏ•ใ€‚" msgid "an unknown error occurred" msgstr "ๅ‡บ็Žฐๆœช็Ÿฅ้”™่ฏฏ" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -400,11 +405,11 @@ msgstr "ๅบ”็”จ่ฏญ่จ€" msgid "App password deleted" msgstr "ๅบ”็”จไธ“็”จๅฏ†็ ๅทฒๅˆ ้™ค" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "ๅบ”็”จไธ“็”จๅฏ†็ ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ฐๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜ๅทๅŠไธ‹ๅˆ’็บฟใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "ๅบ”็”จไธ“็”จๅฏ†็ ๅฟ…้กป่‡ณๅฐ‘ไธบ 4 ไธชๅญ—็ฌฆใ€‚" @@ -412,22 +417,22 @@ msgstr "ๅบ”็”จไธ“็”จๅฏ†็ ๅฟ…้กป่‡ณๅฐ‘ไธบ 4 ไธชๅญ—็ฌฆใ€‚" msgid "App password settings" msgstr "ๅบ”็”จไธ“็”จๅฏ†็ ่ฎพ็ฝฎ" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "ๅบ”็”จไธ“็”จๅฏ†็ " -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "็”ณ่ฏ‰" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "็”ณ่ฏ‰ \"{0}\" ๆ ‡่ฎฐ" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "็”ณ่ฏ‰ๅทฒๆไบค" @@ -444,7 +449,7 @@ msgid "Appearance" msgstr "ๅค–่ง‚" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "ไฝฟ็”จ้ป˜่ฎคๆŽจ่็š„่ต„่ฎฏๆบ" @@ -460,15 +465,15 @@ msgstr "ไฝ ็กฎๅฎš่ฆๅˆ ้™ค่ฟ™ๆก็งไฟกๅ—๏ผŸๆญคๆ“ไฝœไป…ไผšๅœจไฝ ็š„ๅฏน่ฏไธญๅˆ  msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "ไฝ ็กฎๅฎš่ฆ็ฆปๅผ€่ฟ™ไธชๅฏน่ฏๅ—๏ผŸๆญคๆ“ไฝœไป…ไผšๅœจไฝ ็š„็งไฟกๅˆ—่กจไธญๅˆ ้™คๅฏน่ฏ๏ผŒ่€Œไธไผšๅœจๅ…ถไป–ไบบ็š„็งไฟกๅˆ—่กจไธญๅˆ ้™คใ€‚" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ไฝ ็กฎๅฎš่ฆไปŽไฝ ็š„่ต„่ฎฏๆบไธญๅˆ ้™ค {0} ๅ—๏ผŸ" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "ไฝ ็กฎๅฎš่ฆไธขๅผƒ่ฟ™ๆฎต่‰็จฟๅ—๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "ไฝ ็กฎๅฎšๅ—๏ผŸ" @@ -489,8 +494,8 @@ msgid "At least 3 characters" msgstr "่‡ณๅฐ‘ 3 ไธชๅญ—็ฌฆ" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -503,7 +508,7 @@ msgstr "่‡ณๅฐ‘ 3 ไธชๅญ—็ฌฆ" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "่ฟ”ๅ›ž" @@ -519,7 +524,7 @@ msgstr "็”Ÿๆ—ฅ" msgid "Birthday:" msgstr "็”Ÿๆ—ฅ๏ผš" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "ๅฑ่”ฝ" @@ -559,7 +564,7 @@ msgstr "ๅทฒๅฑ่”ฝ" msgid "Blocked accounts" msgstr "ๅทฒๅฑ่”ฝ่ดฆๆˆท" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ๅทฒๅฑ่”ฝ่ดฆๆˆท" @@ -617,8 +622,8 @@ msgstr "ๆจก็ณŠๅŒ–ๅ›พ็‰‡ๅนถไปŽ่ต„่ฎฏๆบไธญ่ฟ‡ๆปค" msgid "Books" msgstr "ไนฆ็ฑ" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "ๆต่งˆๅ…ถไป–่ต„่ฎฏๆบ" @@ -626,7 +631,7 @@ msgstr "ๆต่งˆๅ…ถไป–่ต„่ฎฏๆบ" msgid "Business" msgstr "ๅ•†ๅŠก" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "ๆฅ่‡ช โ€”" @@ -634,7 +639,7 @@ msgstr "ๆฅ่‡ช โ€”" msgid "By {0}" msgstr "ๆฅ่‡ช {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "ๆฅ่‡ช <0/>" @@ -642,7 +647,7 @@ msgstr "ๆฅ่‡ช <0/>" msgid "By creating an account you agree to the {els}." msgstr "ๅˆ›ๅปบ่ดฆๆˆทๅณ้ป˜่ฎค่กจๆ˜Žไฝ ๅŒๆ„ๆˆ‘ไปฌ็š„ {els}ใ€‚" -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "ๆฅ่‡ชไฝ " @@ -650,7 +655,7 @@ msgstr "ๆฅ่‡ชไฝ " msgid "Camera" msgstr "็›ธๆœบ" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 ไธชๅญ—็ฌฆใ€‚" @@ -659,8 +664,8 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ฐๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜ๅทๅŠไธ‹ๅˆ’็บฟใ€‚ ้•ฟๅบฆ #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -676,8 +681,8 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ฐๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜ๅทๅŠไธ‹ๅˆ’็บฟใ€‚ ้•ฟๅบฆ #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "ๅ–ๆถˆ" @@ -706,7 +711,7 @@ msgstr "ๅ–ๆถˆ่ฃๅ‰ชๅ›พ็‰‡" msgid "Cancel profile editing" msgstr "ๅ–ๆถˆ็ผ–่พ‘ไธชไบบ่ต„ๆ–™" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "ๅ–ๆถˆๅผ•็”จๅธ–ๅญ" @@ -762,7 +767,7 @@ msgstr "ๆ›ดๆ”นๅธ–ๅญ็š„ๅ‘ๅธƒ่ฏญ่จ€่‡ณ {0}" msgid "Change Your Email" msgstr "ๆ›ดๆ”นไฝ ็š„้‚ฎ็ฎฑๅœฐๅ€" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -774,7 +779,7 @@ msgstr "ๅทฒ้š่—ๅฏน่ฏ" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -839,7 +844,7 @@ msgid "Clear all storage data (restart after this)" msgstr "ๆธ…้™คๆ‰€ๆœ‰ๆ•ฐๆฎ๏ผˆๅนถ้‡ๅฏ๏ผ‰" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "ๆธ…้™คๆœ็ดขๅކๅฒ่ฎฐๅฝ•" @@ -939,7 +944,7 @@ msgstr "ๅ…ณ้—ญๅบ•้ƒจๅฏผ่ˆชๆ " msgid "Closes password update alert" msgstr "ๅ…ณ้—ญๅฏ†็ ๆ›ดๆ–ฐ่ญฆๅ‘Š" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "ๅ…ณ้—ญๅธ–ๅญ็ผ–่พ‘้กตๅนถไธขๅผƒ่‰็จฟ" @@ -963,7 +968,7 @@ msgstr "ๅ–œๅ‰ง" msgid "Comics" msgstr "ๆผซ็”ป" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "็คพ็พคๅ‡†ๅˆ™" @@ -976,7 +981,7 @@ msgstr "ๅฎŒๆˆๅผ•ๅฏผๅนถๅผ€ๅง‹ไฝฟ็”จไฝ ็š„่ดฆๆˆท" msgid "Complete the challenge" msgstr "ๅฎŒๆˆ้ชŒ่ฏ" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "ๆ’ฐๅ†™ๅธ–ๅญ็š„้•ฟๅบฆๆœ€ๅคšไธบ {MAX_GRAPHEME_LENGTH} ไธชๅญ—็ฌฆ" @@ -1077,7 +1082,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "ไธŠไธ‹ๆ–‡่œๅ•่ƒŒๆ™ฏ๏ผŒ็‚นๅ‡ปๅ…ณ้—ญ่œๅ•ใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "็ปง็ปญ" @@ -1085,13 +1090,17 @@ msgstr "็ปง็ปญ" msgid "Continue as {0} (currently signed in)" msgstr "ไปฅ {0} ็ปง็ปญ๏ผˆๅทฒ็™ปๅฝ•๏ผ‰" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "็ปง็ปญไธ‹ไธ€ๆญฅ" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "ๅฏน่ฏๅทฒๅˆ ้™ค" @@ -1099,7 +1108,7 @@ msgstr "ๅฏน่ฏๅทฒๅˆ ้™ค" msgid "Cooking" msgstr "็ƒน้ฅช" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "ๅทฒๅคๅˆถ" @@ -1109,10 +1118,10 @@ msgid "Copied build version to clipboard" msgstr "ๅทฒๅคๅˆถๆž„ๅปบ็‰ˆๆœฌๅท่‡ณๅ‰ช่ดดๆฟ" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "ๅทฒๅคๅˆถ่‡ณๅ‰ช่ดดๆฟ" @@ -1120,11 +1129,11 @@ msgstr "ๅทฒๅคๅˆถ่‡ณๅ‰ช่ดดๆฟ" msgid "Copied!" msgstr "ๅทฒๅคๅˆถ๏ผ" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "ๅทฒๅคๅˆถๅบ”็”จไธ“็”จๅฏ†็ " -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "ๅคๅˆถ" @@ -1141,8 +1150,8 @@ msgstr "ๅคๅˆถไปฃ็ " msgid "Copy link to list" msgstr "ๅคๅˆถๅˆ—่กจ้“พๆŽฅ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "ๅคๅˆถๅธ–ๅญ้“พๆŽฅ" @@ -1151,12 +1160,12 @@ msgstr "ๅคๅˆถๅธ–ๅญ้“พๆŽฅ" msgid "Copy message text" msgstr "ๅคๅˆถ็งไฟกๆ–‡ๅญ—" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "ๅคๅˆถๅธ–ๅญๆ–‡ๅญ—" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "็‰ˆๆƒ่ฎธๅฏ" @@ -1195,11 +1204,11 @@ msgstr "ๅˆ›ๅปบ่ดฆๆˆท" msgid "Create an account" msgstr "ๅˆ›ๅปบไธ€ไธช่ดฆๆˆท" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "ๅˆ›ๅปบไธ€ไธชๅคดๅƒ" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "ๅˆ›ๅปบๅบ”็”จไธ“็”จๅฏ†็ " @@ -1229,7 +1238,7 @@ msgstr "่‡ชๅฎšไน‰" msgid "Custom domain" msgstr "่‡ชๅฎšไน‰ๅŸŸๅ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "็”ฑ็คพ็พคๆž„ๅปบ็š„่‡ชๅฎšไน‰่ต„่ฎฏๆบ่ƒฝไธบไฝ ๅธฆๆฅๆ–ฐ็š„ไฝ“้ชŒ๏ผŒๅนถๅธฎๅŠฉไฝ ๆ‰พๅˆฐไฝ ๅ–œๆฌข็š„ๅ†…ๅฎนใ€‚" @@ -1272,7 +1281,7 @@ msgid "Debug panel" msgstr "่ฐƒ่ฏ•้ขๆฟ" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1323,8 +1332,8 @@ msgstr "ๅˆ ้™คๆˆ‘็š„่ดฆๆˆท" msgid "Delete My Accountโ€ฆ" msgstr "ๅˆ ้™คๆˆ‘็š„่ดฆๆˆทโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "ๅˆ ้™คๅธ–ๅญ" @@ -1332,7 +1341,7 @@ msgstr "ๅˆ ้™คๅธ–ๅญ" msgid "Delete this list?" msgstr "ๅˆ ้™ค่ฟ™ไธชๅˆ—่กจ๏ผŸ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "ๅˆ ้™ค่ฟ™ๆกๅธ–ๅญ๏ผŸ" @@ -1355,11 +1364,11 @@ msgstr "ๅˆ ้™ค่Šๅคฉ่ฎฐๅฝ•" msgid "Description" msgstr "ๆ่ฟฐ" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "ๆ่ฟฐๆ›ฟไปฃๆ–‡ๅญ—" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "ๆœ‰ไป€ไนˆๆƒณ่ฏด็š„ๅ—๏ผŸ" @@ -1392,11 +1401,11 @@ msgstr "ๅ…ณ้—ญ่งฆๆ„Ÿๅ้ฆˆ" msgid "Disabled" msgstr "ๅ…ณ้—ญ" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "ไธขๅผƒ" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "ไธขๅผƒ่‰็จฟ๏ผŸ" @@ -1405,12 +1414,12 @@ msgstr "ไธขๅผƒ่‰็จฟ๏ผŸ" msgid "Discourage apps from showing my account to logged-out users" msgstr "้˜ปๆญขๅบ”็”จๅ‘ๆœช็™ปๅฝ•็”จๆˆทๆ˜พ็คบๆˆ‘็š„่ดฆๆˆท" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„่‡ชๅฎšไน‰่ต„่ฎฏๆบ" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„่ต„่ฎฏๆบ" @@ -1446,11 +1455,11 @@ msgstr "ๅŸŸๅๅทฒ่ฎค่ฏ๏ผ" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1525,6 +1534,11 @@ msgstr "ไพ‹ๅฆ‚๏ผšๆ•ฃๅธƒๅนฟๅ‘Šๅ†…ๅฎน็š„็”จๆˆทใ€‚" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "ๆฏไธช้‚€่ฏท็ ไป…ๅฏไฝฟ็”จไธ€ๆฌกใ€‚ไฝ ๅฐ†ไธๅฎšๆœŸ่Žทๅพ—ๆ–ฐ็š„้‚€่ฏท็ ใ€‚" +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1548,8 +1562,9 @@ msgstr "็ผ–่พ‘ๅˆ—่กจ่ฏฆๆƒ…" msgid "Edit Moderation List" msgstr "็ผ–่พ‘ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "็ผ–่พ‘่‡ชๅฎšไน‰่ต„่ฎฏๆบ" @@ -1559,19 +1574,19 @@ msgid "Edit my profile" msgstr "็ผ–่พ‘ไธชไบบ่ต„ๆ–™" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "็ผ–่พ‘ไธชไบบ่ต„ๆ–™" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "็ผ–่พ‘ไธชไบบ่ต„ๆ–™" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "็ผ–่พ‘ไฟๅญ˜็š„่ต„่ฎฏๆบ" +#~ msgid "Edit Saved Feeds" +#~ msgstr "็ผ–่พ‘ไฟๅญ˜็š„่ต„่ฎฏๆบ" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1624,8 +1639,8 @@ msgid "Embed HTML code" msgstr "ๅตŒๅ…ฅ HTML ไปฃ็ " #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "ๅตŒๅ…ฅๅธ–ๅญ" @@ -1668,7 +1683,7 @@ msgstr "ๅทฒๅฏ็”จ" msgid "End of feed" msgstr "ๅทฒๅˆฐๆœซๅฐพ" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "ไธบ่ฟ™ไธชๅบ”็”จไธ“็”จๅฏ†็ ๅ‘ฝๅ" @@ -1676,8 +1691,8 @@ msgstr "ไธบ่ฟ™ไธชๅบ”็”จไธ“็”จๅฏ†็ ๅ‘ฝๅ" msgid "Enter a password" msgstr "่พ“ๅ…ฅๅฏ†็ " +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "่พ“ๅ…ฅไธ€ไธช่ฏๆˆ–ๆ ‡็ญพ" @@ -1727,7 +1742,7 @@ msgid "Error receiving captcha response." msgstr "Captcha ๅ“ๅบ”้”™่ฏฏใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "้”™่ฏฏ๏ผš" @@ -1815,7 +1830,7 @@ msgstr "ๅค–้ƒจๅช’ไฝ“" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ๅค–้ƒจๅช’ไฝ“ๅฏ่ƒฝๅ…่ฎธ็ฝ‘็ซ™ๆ”ถ้›†ๆœ‰ๅ…ณไฝ ๅ’Œไฝ ่ฎพๅค‡็š„ๆœ‰ๅ…ณไฟกๆฏใ€‚ๅœจไฝ ๆŒ‰ไธ‹\"ๆŸฅ็œ‹\"ๆŒ‰้’ฎไน‹ๅ‰๏ผŒๅฐ†ไธไผšๅ‘้€ๆˆ–่ฏทๆฑ‚ไปปไฝ•ๅค–้ƒจไฟกๆฏใ€‚" -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1825,8 +1840,8 @@ msgstr "ๅค–้ƒจๅช’ไฝ“้ฆ–้€‰้กน" msgid "External media settings" msgstr "ๅค–้ƒจๅช’ไฝ“่ฎพ็ฝฎ" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "ๅˆ›ๅปบๅบ”็”จไธ“็”จๅฏ†็ ๅคฑ่ดฅใ€‚" @@ -1838,7 +1853,7 @@ msgstr "ๆ— ๆณ•ๅˆ›ๅปบๅˆ—่กจใ€‚่ฏทๆฃ€ๆŸฅไฝ ็š„ไบ’่”็ฝ‘่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" msgid "Failed to delete message" msgstr "ๆ— ๆณ•ๅˆ ้™ค็งไฟก" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "ๆ— ๆณ•ๅˆ ้™คๅธ–ๅญ๏ผŒ่ฏท้‡่ฏ•" @@ -1859,7 +1874,7 @@ msgstr "ๆ— ๆณ•ไฟๅญ˜่ฟ™ๅผ ๅ›พ็‰‡๏ผš{0}" msgid "Failed to send" msgstr "ๆ— ๆณ•ๅ‘้€็งไฟก" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "ๆ— ๆณ•ๆไบค็”ณ่ฏ‰๏ผŒ่ฏทๅ†่ฏ•ไธ€ๆฌกใ€‚" @@ -1869,30 +1884,29 @@ msgstr "ๆ— ๆณ•ๆไบค็”ณ่ฏ‰๏ผŒ่ฏทๅ†่ฏ•ไธ€ๆฌกใ€‚" msgid "Failed to update settings" msgstr "ๆ— ๆณ•ๆ›ดๆ–ฐ่ฎพ็ฝฎ" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "่ต„่ฎฏๆบ" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "็”ฑ {0} ๅˆ›ๅปบ็š„่ต„่ฎฏๆบ" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "่ต„่ฎฏๆบๅทฒ็ฆป็บฟ" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "ๅ้ฆˆ" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "่ต„่ฎฏๆบ" @@ -1917,12 +1931,12 @@ msgid "Finalizing" msgstr "ๆœ€็ปˆ็กฎๅฎš" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "ๅฏปๆ‰พไธ€ไบ›่ดฆๆˆทๅ…ณๆณจ" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "ๅœจ Bluesky ๅฏปๆ‰พๅธ–ๅญๅ’Œ็”จๆˆท" @@ -1953,7 +1967,7 @@ msgstr "ๅž‚็›ด็ฟป่ฝฌ" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -1964,7 +1978,7 @@ msgctxt "action" msgid "Follow" msgstr "ๅ…ณๆณจ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "ๅ…ณๆณจ {0}" @@ -1982,6 +1996,10 @@ msgstr "ๅ…ณๆณจ่ดฆๆˆท" msgid "Follow Back" msgstr "ๅ›žๅ…ณ" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "็”ฑ {0} ๅ…ณๆณจ" @@ -2003,18 +2021,27 @@ msgstr "ๅ…ณๆณจไบ†ไฝ " msgid "Followers" msgstr "ๅ…ณๆณจ่€…" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "ๆญฃๅœจๅ…ณๆณจ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "ๅทฒๅ…ณๆณจ {0}" @@ -2026,9 +2053,7 @@ msgstr "ๅทฒๅ…ณๆณจ {name}" msgid "Following feed preferences" msgstr "\"ๆญฃๅœจๅ…ณๆณจ\"่ต„่ฎฏๆบ้ฆ–้€‰้กน" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2050,7 +2075,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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 "ๅ‡บไบŽๅฎ‰ๅ…จๅŽŸๅ› ๏ผŒไฝ ๅฐ†ๆ— ๆณ•ๅ†ๆฌกๆŸฅ็œ‹ๆญคๅ†…ๅฎนใ€‚ๅฆ‚ๆžœไฝ ไธขๅคฑไบ†่ฏฅๅฏ†็ ๏ผŒๅˆ™้œ€่ฆ็”Ÿๆˆไธ€ไธชๆ–ฐ็š„ๅฏ†็ ใ€‚" @@ -2093,7 +2118,7 @@ msgstr "ๅผ€ๅง‹ๅง" msgid "Get Started" msgstr "ๅผ€ๅง‹" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "ไธบไฝ ็š„ไธชไบบ่ต„ๆ–™ๆทปๅŠ ๅคดๅƒ" @@ -2121,9 +2146,9 @@ msgstr "่ฟ”ๅ›ž" msgid "Go Back" msgstr "่ฟ”ๅ›ž" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2138,7 +2163,7 @@ msgstr "่ฟ”ๅ›žไธป้กต" msgid "Go Home" msgstr "่ฟ”ๅ›žไธป้กต" -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "่ฝฌๅˆฐไธŽ {0} ็š„ๅฏน่ฏ" @@ -2171,7 +2196,7 @@ msgstr "่งฆๆ„Ÿ" msgid "Harassment, trolling, or intolerance" msgstr "้ชšๆ‰ฐใ€ๆถไฝœๅ‰งๆˆ–ๅ…ถไป–ๆ— ๆณ•ๅฎนๅฟ็š„่กŒไธบ" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "ๆ ‡็ญพ" @@ -2184,15 +2209,15 @@ msgid "Having trouble?" msgstr "ไปปไฝ•็–‘้—ฎ๏ผŸ" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "ๅธฎๅŠฉ" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "้€š่ฟ‡ไธŠไผ ๅ›พ็‰‡ๆˆ–ๅˆ›ๅปบๅคดๅƒๆฅๅธฎๅŠฉไบบไปฌไบ†่งฃไฝ ไธๆ˜ฏๆœบๅ™จไบบใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "่ฟ™้‡Œๆ˜ฏไฝ ็š„ๅบ”็”จไธ“็”จๅฏ†็ ใ€‚" @@ -2203,7 +2228,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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "้š่—" @@ -2212,8 +2237,8 @@ msgctxt "action" msgid "Hide" msgstr "้š่—" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "้š่—ๅธ–ๅญ" @@ -2222,7 +2247,7 @@ msgstr "้š่—ๅธ–ๅญ" msgid "Hide the content" msgstr "้š่—ๅ†…ๅฎน" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "้š่—่ฟ™ๆกๅธ–ๅญ๏ผŸ" @@ -2230,23 +2255,23 @@ msgstr "้š่—่ฟ™ๆกๅธ–ๅญ๏ผŸ" msgid "Hide user list" msgstr "้š่—็”จๆˆทๅˆ—่กจ" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "่ฟžๆŽฅ่ต„่ฎฏๆบๆœๅŠกๅ™จๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "่ต„่ฎฏๆบๆœๅŠกๅ™จไผผไนŽ้…็ฝฎ้”™่ฏฏ๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "่ต„่ฎฏๆบๆœๅŠกๅ™จไผผไนŽๅทฒไธ‹็บฟ๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "่ต„่ฎฏๆบๆœๅŠกๅ™จ่ฟ”ๅ›ž้”™่ฏฏ็š„ๅ“ๅบ”๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ๆ— ๆณ•ๆ‰พๅˆฐ่ฏฅ่ต„่ฎฏๆบ๏ผŒไผผไนŽๅทฒ่ขซๅˆ ้™คใ€‚" @@ -2258,11 +2283,11 @@ msgstr "็œ‹่ตทๆฅๅœจๅŠ ่ฝฝๆ•ฐๆฎๆ—ถ้‡ๅˆฐไบ†้—ฎ้ข˜๏ผŒ่ฏทๆŸฅ็œ‹ไธ‹ๆ–น่Žทๅ–ๆ›ดๅคš msgid "Hmmmm, we couldn't load that moderation service." msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๆญคๅ†…ๅฎนๅฎกๆ ธๆไพ›ๆœๅŠกใ€‚" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "ไธป้กต" @@ -2316,7 +2341,7 @@ msgstr "ๅฆ‚ๆžœไฝ ๆ นๆฎไฝ ๆ‰€ๅœจๅ›ฝๅฎถ็š„ๆณ•ๅพ‹ๅฎšไน‰่ฟ˜ไธๆ˜ฏๆˆๅนดไบบ๏ผŒๅˆ™ไฝ  msgid "If you delete this list, you won't be able to recover it." msgstr "่ฏฅๅˆ—่กจๅˆ ้™คๅŽๅฐ†ๆ— ๆณ•ๆขๅคใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "่ฏฅๅˆ—่กจๅˆ ้™คๅŽๅฐ†ๆ— ๆณ•ๆขๅคใ€‚" @@ -2356,7 +2381,7 @@ msgstr "่พ“ๅ…ฅๅ‘้€ๅˆฐไฝ ็”ตๅญ้‚ฎ็ฎฑ็š„้ชŒ่ฏ็ ไปฅ้‡็ฝฎๅฏ†็ " msgid "Input confirmation code for account deletion" msgstr "่พ“ๅ…ฅๅˆ ้™ค็”จๆˆท็š„้ชŒ่ฏ็ " -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "่พ“ๅ…ฅๅบ”็”จไธ“็”จๅฏ†็ ๅ็งฐ" @@ -2401,7 +2426,7 @@ msgstr "ไป‹็ป็งไฟก" msgid "Invalid 2FA confirmation code." msgstr "ๆ— ๆ•ˆ็š„ไธคๆญฅ้ชŒ่ฏ็ ใ€‚" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "ๅธ–ๅญ่ฎฐๅฝ•ๆ— ๆ•ˆๆˆ–ไธๅ—ๆ”ฏๆŒ" @@ -2453,11 +2478,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "ไฝ ่ดฆๆˆทไธŠ็š„ๆ ‡่ฎฐ" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "ไฝ ๅ†…ๅฎนไธŠ็š„ๆ ‡่ฎฐ" @@ -2469,7 +2494,7 @@ msgstr "้€‰ๆ‹ฉ่ฏญ่จ€" msgid "Language settings" msgstr "่ฏญ่จ€่ฎพ็ฝฎ" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "่ฏญ่จ€่ฎพ็ฝฎ" @@ -2479,7 +2504,7 @@ msgid "Languages" msgstr "่ฏญ่จ€" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "ๆœ€ๆ–ฐ" @@ -2557,8 +2582,8 @@ msgid "Like this feed" msgstr "ๅ–œๆฌข่ฟ™ไธช่ต„่ฎฏๆบ" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "ๅ–œๆฌข" @@ -2580,11 +2605,11 @@ msgstr "ๅ–œๆฌขไบ†ไฝ ็š„ๅธ–ๅญ" msgid "Likes" msgstr "ๅ–œๆฌข" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "่ฟ™ๆกๅธ–ๅญ็š„ๅ–œๆฌขๆ•ฐ" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "ๅˆ—่กจ" @@ -2596,7 +2621,7 @@ msgstr "ๅˆ—่กจๅคดๅƒ" msgid "List blocked" msgstr "ๅˆ—่กจๅทฒๅฑ่”ฝ" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "ๅˆ—่กจ็”ฑ {0} ๅˆ›ๅปบ" @@ -2620,12 +2645,12 @@ msgstr "่งฃ้™คๅฏนๅˆ—่กจ็š„ๅฑ่”ฝ" msgid "List unmuted" msgstr "่งฃ้™คๅฏนๅˆ—่กจ็š„้š่—" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "ๅˆ—่กจ" @@ -2633,7 +2658,7 @@ msgstr "ๅˆ—่กจ" msgid "Lists blocking this user:" msgstr "ๅฑ่”ฝ่ฏฅ็”จๆˆท็š„ๅˆ—่กจ๏ผš" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "ๅŠ ่ฝฝๆ–ฐ็š„้€š็Ÿฅ" @@ -2648,7 +2673,7 @@ msgstr "ๅŠ ่ฝฝๆ–ฐ็š„ๅธ–ๅญ" msgid "Loading..." msgstr "ๅŠ ่ฝฝไธญ..." -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "ๆ—ฅๅฟ—" @@ -2684,7 +2709,7 @@ msgstr "็œ‹่ตทๆฅๅƒๆ˜ฏ XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "็œ‹่ตทๆฅไฝ ไผผไนŽๆœชไฟๅญ˜ไปปไฝ•่ต„่ฎฏๆบ๏ผๆฅ็œ‹็œ‹ๆˆ‘ไปฌๆไพ›็š„ๅปบ่ฎฎ๏ผŒๆˆ–ๆต่งˆไธ‹ๆ–น็š„ๆ›ดๅคšๅ†…ๅฎนใ€‚" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "็œ‹่ตทๆฅไฝ ๅทฒๅ–ๆถˆๅ›บๅฎšๆ‰€ๆœ‰่ต„่ฎฏๆบใ€‚ไธ่ฟ‡ๅˆซๆ‹…ๅฟƒ๏ผŒไฝ ไป็„ถๅฏไปฅๅœจไธ‹้ขๆทปๅŠ ไธ€ไบ›๐Ÿ˜„" @@ -2696,7 +2721,7 @@ msgstr "็œ‹่ตทๆฅไฝ ไผผไนŽ็ผบๅฐ‘\"ๆญฃๅœจๅ…ณๆณจ\"่ต„่ฎฏๆบใ€‚<0>็‚นๅ‡ป่ฟ™้‡Œๆฅ msgid "Make sure this is where you intend to go!" msgstr "่ฏท็กฎ่ฎค็›ฎๆ ‡้กต้ขๅœฐๅ€ๆ˜ฏๅฆๆญฃ็กฎ๏ผ" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "็ฎก็†ไฝ ็š„้š่—่ฏๅ’Œๆ ‡็ญพ" @@ -2718,8 +2743,8 @@ msgstr "ๆๅˆฐ็š„็”จๆˆท" msgid "Mentioned users" msgstr "ๆๅˆฐ็š„็”จๆˆท" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "่œๅ•" @@ -2728,11 +2753,11 @@ msgid "Message {0}" msgstr "็งไฟก {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "็งไฟกๅทฒๅˆ ้™ค" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "ๆฅ่‡ชๆœๅŠกๅ™จ็š„ไฟกๆฏ๏ผš{0}" @@ -2749,7 +2774,7 @@ msgstr "็งไฟก่ฟ‡้•ฟ" msgid "Message settings" msgstr "็งไฟก่ฎพ็ฝฎ" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -2760,7 +2785,7 @@ msgstr "็งไฟก" msgid "Misleading Account" msgstr "่ฏฏๅฏผๆ€ง่ดฆๆˆท" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -2797,7 +2822,7 @@ msgstr "ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจๅทฒๆ›ดๆ–ฐ" msgid "Moderation lists" msgstr "ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" @@ -2806,7 +2831,7 @@ msgstr "ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" msgid "Moderation settings" msgstr "ๅ†…ๅฎนๅฎกๆ ธ่ฎพ็ฝฎ" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "ๅ†…ๅฎนๅฎกๆ ธ็Šถๆ€" @@ -2819,7 +2844,7 @@ msgstr "ๅ†…ๅฎนๅฎกๆ ธๅทฅๅ…ท" msgid "Moderator has chosen to set a general warning on the content." msgstr "็”ฑๅ†…ๅฎนๅฎกๆ ธๆœๅŠกๆไพ›ๆ–นๅฏน่ฟ™ๆฎตๅ†…ๅฎน่ฎพ็ฝฎ็š„ไธ€่ˆฌ่ญฆๅ‘Šใ€‚" -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "ๆ›ดๅคš" @@ -2861,11 +2886,11 @@ msgstr "้š่—ๆ‰€ๆœ‰ {displayTag} ็š„ๅธ–ๅญ" msgid "Mute conversation" msgstr "้™้Ÿณๅฏน่ฏ" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "ไป…้š่—ๆ ‡็ญพ" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "้š่—่ฏๆฑ‡ๅ’Œๆ ‡็ญพ" @@ -2877,21 +2902,21 @@ msgstr "้š่—ๅˆ—่กจ" msgid "Mute these accounts?" msgstr "้š่—่ฟ™ไบ›่ดฆๆˆท๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "ๅœจๅธ–ๅญๆ–‡ๆœฌๅ’Œๆ ‡็ญพไธญ้š่—่ฏฅ่ฏ" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "ไป…ๅœจๆ ‡็ญพไธญ้š่—่ฏฅ่ฏ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "้š่—่ฎจ่ฎบไธฒ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "้š่—่ฏๅ’Œๆ ‡็ญพ" @@ -2903,7 +2928,7 @@ msgstr "ๅทฒ้š่—" msgid "Muted accounts" msgstr "ๅทฒ้š่—่ดฆๆˆท" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "ๅทฒ้š่—่ดฆๆˆท" @@ -2929,7 +2954,7 @@ msgstr "่ขซ้š่—็š„่ดฆๆˆทๅฐ†ไธไผšๅพ—็Ÿฅไฝ ๅทฒๅฐ†ไป–้š่—๏ผŒๅทฒ้š่—็š„่ดฆๆˆท msgid "My Birthday" msgstr "ๆˆ‘็š„็”Ÿๆ—ฅ" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "่‡ชๅฎšไน‰่ต„่ฎฏๆบ" @@ -2945,7 +2970,7 @@ msgstr "ๆˆ‘ไฟๅญ˜็š„่ต„่ฎฏๆบ" msgid "My Saved Feeds" msgstr "ๆˆ‘ไฟๅญ˜็š„่ต„่ฎฏๆบ" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "ๅ็งฐ" @@ -3022,8 +3047,8 @@ msgctxt "action" msgid "New post" msgstr "ๆ–ฐๅธ–ๅญ" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3088,7 +3113,7 @@ msgstr "ๆฒกๆœ‰ DNS ้ขๆฟ" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "ๆœชๆ‰พๅˆฐ็ฒพ้€‰ GIF๏ผŒTensor ๅฏ่ƒฝๅญ˜ๅœจ้—ฎ้ข˜ใ€‚" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "ไธๅ†ๅ…ณๆณจ {0}" @@ -3096,7 +3121,7 @@ msgstr "ไธๅ†ๅ…ณๆณจ {0}" msgid "No longer than 253 characters" msgstr "ไธ่ถ…่ฟ‡ 253 ไธชๅญ—็ฌฆ" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไปปไฝ•็งไฟก" @@ -3104,7 +3129,7 @@ msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไปปไฝ•็งไฟก" msgid "No more conversations to show" msgstr "ๆฒกๆœ‰ๆ›ดๅคšๅฏน่ฏๅฏๆ˜พ็คบ" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "่ฟ˜ๆฒกๆœ‰้€š็Ÿฅ๏ผ" @@ -3115,6 +3140,10 @@ msgstr "่ฟ˜ๆฒกๆœ‰้€š็Ÿฅ๏ผ" msgid "No one" msgstr "ๆฒกๆœ‰ไบบ" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3128,13 +3157,13 @@ msgstr "ๆฒกๆœ‰็ป“ๆžœ" msgid "No results found" msgstr "ๆœชๆ‰พๅˆฐ็ป“ๆžœ" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "ๆœชๆ‰พๅˆฐ\"{query}\"็š„็ป“ๆžœ" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "ๆœชๆ‰พๅˆฐ {query} ็š„็ป“ๆžœ" @@ -3165,7 +3194,7 @@ msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไบบๅ–œๆฌข๏ผŒไนŸ่ฎธไฝ ๅบ”่ฏฅๆˆไธบ็ฌฌไธ€ไธช๏ผ" msgid "Non-sexual Nudity" msgstr "้žๆ€งๆš—็คบ่ฃธ้œฒ" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "ๆœชๆ‰พๅˆฐ" @@ -3176,7 +3205,7 @@ msgid "Not right now" msgstr "ๆš‚ๆ—ถไธ้œ€่ฆ" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "ๅˆ†ไบซๆณจๆ„ไบ‹้กน" @@ -3197,13 +3226,13 @@ msgstr "้€š็Ÿฅๆ็คบ้Ÿณ" msgid "Notification Sounds" msgstr "้€š็Ÿฅๆ็คบ้Ÿณ" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "้€š็Ÿฅ" @@ -3249,11 +3278,11 @@ msgstr "ไผ˜ๅ…ˆๆ˜พ็คบๆœ€ๆ—ง็š„ๅ›žๅค" msgid "Onboarding reset" msgstr "้‡ๆ–ฐๅผ€ๅง‹ๅผ•ๅฏผๆต็จ‹" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผ ๅ›พ็‰‡็ผบๅคฑไบ†ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "็›ฎๅ‰ๅชๆ”ฏๆŒไธŠไผ  .jpg ๆˆ– .png ๆ ผๅผ็š„ๅ›พ็‰‡ๆ–‡ไปถ" @@ -3283,17 +3312,17 @@ msgstr "ๅผ€ๅฏ" msgid "Open {name} profile shortcut menu" msgstr "ๅผ€ๅฏ {name} ไธชไบบ่ต„ๆ–™ๅฟซๆท่œๅ•" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "ๅผ€ๅฏๅคดๅƒๅˆ›ๅปบๅทฅๅ…ท" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "ๅผ€ๅฏๅฏน่ฏ้€‰้กน" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "ๅผ€ๅฏ่กจๆƒ…็ฌฆๅท้€‰ๆ‹ฉๅ™จ" @@ -3313,11 +3342,11 @@ msgstr "ๅผ€ๅฏ็งไฟก้€‰้กน" msgid "Open muted words and tags settings" msgstr "ๅผ€ๅฏ้š่—่ฏๆฑ‡ๅ’Œๆ ‡็ญพ่ฎพ็ฝฎ" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "ๆ‰“ๅผ€ๅฏผ่ˆช" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "ๅผ€ๅฏๅธ–ๅญ้€‰้กน่œๅ•" @@ -3422,8 +3451,8 @@ msgstr "ๅผ€ๅฏๅฏ†็ ้‡็ฝฎ็”ณ่ฏท" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "ๅผ€ๅฏ็”จไบŽ็ผ–่พ‘ๅทฒไฟๅญ˜่ต„่ฎฏๆบ็š„็•Œ้ข" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "ๅผ€ๅฏ็”จไบŽ็ผ–่พ‘ๅทฒไฟๅญ˜่ต„่ฎฏๆบ็š„็•Œ้ข" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3463,8 +3492,8 @@ msgstr "ๅผ€ๅฏๆญคไธชไบบ่ต„ๆ–™" msgid "Option {0} of {numItems}" msgstr "็ฌฌ {0} ไธช้€‰้กน๏ผŒๅ…ฑ {numItems} ไธช" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "ๅฏ้€‰ๅœจไธ‹ๆ–นๆไพ›้ขๅค–ไฟกๆฏ๏ผš" @@ -3528,15 +3557,15 @@ msgstr "ๅฏ†็ ๅทฒๆ›ดๆ–ฐ๏ผ" msgid "Pause" msgstr "ๆš‚ๅœ" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "็”จๆˆท" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "@{0} ๅ…ณๆณจ็š„็”จๆˆท" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "ๅ…ณๆณจ @{0} ็š„็”จๆˆท" @@ -3610,15 +3639,15 @@ msgstr "่ฏทๅฎŒๆˆ Captcha ้ชŒ่ฏใ€‚" msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "ๆ›ดๆ”นๅ‰่ฏทๅ…ˆ็กฎ่ฎคไฝ ็š„็”ตๅญ้‚ฎ็ฎฑใ€‚่ฟ™ๆ˜ฏๆ–ฐๅขž็”ตๅญ้‚ฎ็ฎฑๆ›ดๆ–ฐๅทฅๅ…ท็š„ไธดๆ—ถ่ฆๆฑ‚๏ผŒ่ฟ™ไธช้™ๅˆถๅฐ†ๅพˆๅฟซ่ขซ็งป้™คใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "่ฏท่พ“ๅ…ฅๅบ”็”จไธ“็”จๅฏ†็ ็š„ๅ็งฐ๏ผŒไธๅ…่ฎธไฝฟ็”จ็ฉบๆ ผใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "่ฏท่พ“ๅ…ฅ่ฟ™ไธชๅบ”็”จไธ“็”จๅฏ†็ ็š„ๅ”ฏไธ€ๅ็งฐ๏ผŒๆˆ–ไฝฟ็”จๆˆ‘ไปฌๆไพ›็š„้šๆœบ็”Ÿๆˆๅ็งฐใ€‚" -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "่ฏท่พ“ๅ…ฅไธ€ไธชๆœ‰ๆ•ˆ็š„่ฏใ€ๆ ‡็ญพๆˆ–็Ÿญ่ฏญ" @@ -3630,7 +3659,7 @@ msgstr "่ฏท่พ“ๅ…ฅไฝ ็š„็”ตๅญ้‚ฎ็ฎฑใ€‚" msgid "Please enter your password as well:" msgstr "่ฏท่พ“ๅ…ฅไฝ ็š„ๅฏ†็ ๏ผš" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "่ฏท่งฃ้‡Šไธบไป€ไนˆไฝ ่ฎคไธบ่ฟ™ไธชๆ ‡่ฎฐๆ˜ฏ็”ฑ {0} ้”™่ฏฏๅบ”็”จ็š„" @@ -3647,7 +3676,7 @@ msgstr "่ฏทไปฅ @{0} ่บซไปฝ็™ปๅฝ•" msgid "Please Verify Your Email" msgstr "่ฏท้ชŒ่ฏไฝ ็š„็”ตๅญ้‚ฎ็ฎฑ" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "่ฏท็ญ‰ๅพ…ไฝ ็š„้“พๆŽฅๅก็‰‡ๅŠ ่ฝฝๅฎŒๆฏ•" @@ -3659,28 +3688,28 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "่‰ฒๆƒ…ๅ†…ๅฎน" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "ๅ‘ๅธƒ" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "ๅ‘ๅธƒ" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "{0} ็š„ๅธ–ๅญ" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "@{0} ็š„ๅธ–ๅญ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "ๅทฒๅˆ ้™คๅธ–ๅญ" @@ -3719,11 +3748,11 @@ msgstr "ๅธ–ๅญ" msgid "Posts" msgstr "ๅธ–ๅญ" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "ๅธ–ๅญๅฏไปฅๆ นๆฎๅ…ถๆ–‡ๆœฌใ€ๆ ‡็ญพๆˆ–ไธค่€…ๆฅ้š่—ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "ๅธ–ๅญๅทฒ้š่—" @@ -3746,6 +3775,10 @@ msgstr "็‚นๅ‡ปไปฅๅ˜ๆ›ดๆ‰˜็ฎกๆไพ›ๅ•†" msgid "Press to retry" msgstr "็‚นๆŒ‰้‡่ฏ•" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "ไธŠไธ€ๅผ ๅ›พ็‰‡" @@ -3763,11 +3796,11 @@ msgstr "ไผ˜ๅ…ˆๆ˜พ็คบๅ…ณๆณจ่€…" msgid "Privacy" msgstr "้š็ง" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "้š็งๆ”ฟ็ญ–" @@ -3787,8 +3820,8 @@ msgstr "ไธชไบบ่ต„ๆ–™" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "ไธชไบบ่ต„ๆ–™" @@ -3812,16 +3845,16 @@ msgstr "ๅ…ฌๅผ€ไธ”ๅฏๅ…ฑไบซ็š„ๆ‰น้‡้š่—ๆˆ–ๅฑ่”ฝๅˆ—่กจใ€‚" msgid "Public, shareable lists which can drive feeds." msgstr "ๅ…ฌๅผ€ไธ”ๅฏๅ…ฑไบซ็š„ๅˆ—่กจ๏ผŒๅฏไฝœไธบ่ต„่ฎฏๆบไฝฟ็”จใ€‚" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "ๅ‘ๅธƒๅธ–ๅญ" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "ๅ‘ๅธƒๅ›žๅค" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -3839,11 +3872,11 @@ msgstr "ๆฏ”็އ" msgid "Reactivate your account" msgstr "้‡ๆ–ฐๅฏ็”จไฝ ็š„่ดฆๆˆท" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "็ป“ๆžœ๏ผš" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "ๆœ€่ฟ‘็š„ๆœ็ดข" @@ -3855,12 +3888,12 @@ msgstr "้‡ๆ–ฐ่ฟžๆŽฅ" msgid "Reload conversations" msgstr "้‡ๆ–ฐๅŠ ่ฝฝๅฏน่ฏ" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "็งป้™ค" @@ -3880,25 +3913,25 @@ msgstr "ๅˆ ้™คๆจชๅน…ๅ›พ็‰‡" msgid "Remove embed" msgstr "ๅˆ ้™คๅตŒๅ…ฅ" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "ๅˆ ้™ค่ต„่ฎฏๆบ" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "ๅˆ ้™ค่ต„่ฎฏๆบ๏ผŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "ไปŽ่‡ชๅฎšไน‰่ต„่ฎฏๆบไธญๅˆ ้™ค" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "ไปŽ่‡ชๅฎšไน‰่ต„่ฎฏๆบไธญๅˆ ้™ค๏ผŸ" @@ -3910,15 +3943,15 @@ msgstr "ๅˆ ้™คๅ›พ็‰‡" msgid "Remove image preview" msgstr "ๅˆ ้™คๅ›พ็‰‡้ข„่งˆ" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "ไปŽไฝ ็š„้š่—่ฏๆฑ‡ๅˆ—่กจไธญๅˆ ้™ค" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "ๅˆ ้™คไธชไบบ่ต„ๆ–™" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "ไปŽๆœ็ดขๅކๅฒไธญๅˆ ้™คไธชไบบ่ต„ๆ–™" @@ -3926,12 +3959,12 @@ msgstr "ไปŽๆœ็ดขๅކๅฒไธญๅˆ ้™คไธชไบบ่ต„ๆ–™" msgid "Remove quote" msgstr "ๅˆ ้™คๅผ•็”จ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "ๅˆ ้™ค่ฝฌๅ‘" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "ไปŽไฟๅญ˜็š„่ต„่ฎฏๆบๅˆ—่กจไธญๅˆ ้™ค่ฟ™ไธช่ต„่ฎฏๆบ" @@ -3940,7 +3973,7 @@ msgstr "ไปŽไฟๅญ˜็š„่ต„่ฎฏๆบๅˆ—่กจไธญๅˆ ้™ค่ฟ™ไธช่ต„่ฎฏๆบ" msgid "Removed from list" msgstr "ไปŽๅˆ—่กจไธญๅˆ ้™ค" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "ๅทฒไปŽ่‡ชๅฎšไน‰่ต„่ฎฏๆบไธญๅˆ ้™ค" @@ -3971,7 +4004,7 @@ msgstr "ๅ›žๅค" msgid "Replies to this thread are disabled" msgstr "ๅฏน่ฟ™ๆก่ฎจ่ฎบไธฒ็š„ๅ›žๅคๅทฒ่ขซ็ฆ็”จ" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "ๅ›žๅค" @@ -4020,8 +4053,8 @@ msgstr "ไธพๆŠฅๅˆ—่กจ" msgid "Report message" msgstr "ไธพๆŠฅ็งไฟก" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "ไธพๆŠฅๅธ–ๅญ" @@ -4037,8 +4070,8 @@ msgstr "ไธพๆŠฅ่ฟ™ไธช่ต„่ฎฏๆบ" msgid "Report this list" msgstr "ไธพๆŠฅ่ฟ™ไธชๅˆ—่กจ" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "ไธพๆŠฅ่ฟ™ๆก็งไฟก" @@ -4051,9 +4084,9 @@ msgstr "ไธพๆŠฅ่ฟ™ๆกๅธ–ๅญ" msgid "Report this user" msgstr "ไธพๆŠฅ่ฟ™ไธช็”จๆˆท" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "่ฝฌๅ‘" @@ -4063,7 +4096,7 @@ msgstr "่ฝฌๅ‘" msgid "Repost" msgstr "่ฝฌๅ‘" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4085,7 +4118,7 @@ msgstr "็”ฑ <0><1/> ่ฝฌๅ‘" msgid "reposted your post" msgstr "่ฝฌๅ‘ไฝ ็š„ๅธ–ๅญ" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "่ฝฌๅ‘่ฟ™ๆกๅธ–ๅญ" @@ -4184,8 +4217,8 @@ msgid "Returns to previous page" msgstr "ๅ›žๅˆฐไธŠไธ€้กต" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4261,20 +4294,20 @@ msgid "Scroll to top" msgstr "ๆปšๅŠจๅˆฐ้กถ้ƒจ" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "ๆœ็ดข" @@ -4282,7 +4315,7 @@ msgstr "ๆœ็ดข" msgid "Search for \"{query}\"" msgstr "ๆœ็ดข \"{query}\"" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "ๆœ็ดข \"{searchText}\"" @@ -4387,7 +4420,7 @@ msgstr "้€‰ๆ‹ฉ {numItems} ้กนไธญ็š„็ฌฌ {i} ้กน" msgid "Select the {emojiName} emoji as your avatar" msgstr "้€‰ๆ‹ฉ {emojiName} ่กจๆƒ…็ฌฆๅทไฝœไธบไฝ ็š„ๅคดๅƒ" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "่ฏท้€‰ๆ‹ฉไฝ ่ฆๅ‘ๅ“ชไธชๅ†…ๅฎนๅฎกๆ ธๆœๅŠกๆไพ›ๆ–นๆไบคไธพๆŠฅ" @@ -4433,8 +4466,8 @@ msgctxt "action" msgid "Send Email" msgstr "ๅ‘้€็”ตๅญ้‚ฎไปถ" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "ๆไบคๅ้ฆˆ" @@ -4443,14 +4476,14 @@ msgstr "ๆไบคๅ้ฆˆ" msgid "Send message" msgstr "ๅ‘้€็งไฟก" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "ๅ‘้€็งไฟก็ป™..." -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "ๆไบคไธพๆŠฅ" @@ -4463,8 +4496,8 @@ msgstr "็ป™ {0} ๆไบคไธพๆŠฅ" msgid "Send verification email" msgstr "ๅ‘้€้ชŒ่ฏ็”ตๅญ้‚ฎไปถ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "้€š่ฟ‡็งไฟกๅ‘้€" @@ -4548,11 +4581,11 @@ msgstr "ๅฐ†ๅ›พ็‰‡็บตๆจชๆฏ”่ฎพ็ฝฎไธบ้ซ˜" msgid "Sets image aspect ratio to wide" msgstr "ๅฐ†ๅ›พ็‰‡็บตๆจชๆฏ”่ฎพ็ฝฎไธบๅฎฝ" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "่ฎพ็ฝฎ" @@ -4571,8 +4604,8 @@ msgstr "ๅˆ†ไบซ" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4587,7 +4620,7 @@ msgid "Share a fun fact!" msgstr "ๅˆ†ไบซไธ€ไธชๆœ‰่ถฃ็š„ไบ‹ๅฎž๏ผ" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "ไป็„ถๅˆ†ไบซ" @@ -4635,7 +4668,7 @@ msgstr "ๆ˜พ็คบๅพฝ็ซ " msgid "Show badge and filter from feeds" msgstr "ๆ˜พ็คบๅพฝ็ซ ๅนถไปŽ่ต„่ฎฏๆบไธญ่ฟ‡ๆปค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "ๆ˜พ็คบ็ฑปไผผไบŽ {0} ็š„ๅ…ณๆณจ่€…" @@ -4643,19 +4676,19 @@ msgstr "ๆ˜พ็คบ็ฑปไผผไบŽ {0} ็š„ๅ…ณๆณจ่€…" msgid "Show hidden replies" msgstr "ๆ˜พ็คบๅทฒ้š่—็š„ๅ›žๅค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "ๆ›ดๅฐ‘ๆ˜พ็คบ็ฑปไผผ่ฟ™ๆ ท็š„" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "ๆ˜พ็คบๆ›ดๅคš" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "ๆ›ดๅคšๆ˜พ็คบ็ฑปไผผ่ฟ™ๆ ท็š„" @@ -4712,9 +4745,9 @@ msgstr "ๅœจไฝ ็š„่ต„่ฎฏๆบไธญๆ˜พ็คบๆฅ่‡ช {0} ็š„ๅธ–ๅญ" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -4745,9 +4778,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -4788,7 +4821,7 @@ msgstr "็จ‹ๅบๅผ€ๅ‘" msgid "Some people can reply" msgstr "ไธ€ไบ›ไบบๅฏไปฅๅ›žๅค" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "ๅ‡บไบ†็‚น้—ฎ้ข˜" @@ -4816,7 +4849,7 @@ msgstr "ๅ›žๅคๆŽ’ๅบ" msgid "Sort replies to the same post by:" msgstr "ๅฏนๅŒไธ€ๅธ–ๅญ็š„ๅ›žๅค่ฟ›่กŒๆŽ’ๅบ๏ผš" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "ๆฅๆบ๏ผš<0>{0}" @@ -4861,13 +4894,13 @@ msgstr "ๆญฅ้ชค {1} ๅ…ฑ {0} ๆญฅ" msgid "Storage cleared, you need to restart the app now." msgstr "ๅทฒๆธ…้™คๅญ˜ๅ‚จ๏ผŒ่ฏท็ซ‹ๅณ้‡ๅฏๅบ”็”จใ€‚" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -4893,7 +4926,7 @@ msgstr "่ฎข้˜…่ฟ™ไธชๆ ‡่ฎฐ่€…" msgid "Subscribe to this list" msgstr "่ฎข้˜…่ฟ™ไธชๅˆ—่กจ" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "ๆŽจ่็š„ๅ…ณๆณจ่€…" @@ -4905,7 +4938,7 @@ msgstr "ไธบไฝ ๆŽจ่" msgid "Suggestive" msgstr "ๅปบ่ฎฎ" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -4932,7 +4965,7 @@ msgstr "็ณป็ปŸ" msgid "System log" msgstr "็ณป็ปŸๆ—ฅๅฟ—" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "ๆ ‡็ญพ" @@ -4960,11 +4993,11 @@ msgstr "่ฎฒไธช็ฌ‘่ฏ๏ผ" msgid "Terms" msgstr "ๆกๆฌพ" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "ๆœๅŠกๆกๆฌพ" @@ -4974,17 +5007,17 @@ msgstr "ๆœๅŠกๆกๆฌพ" msgid "Terms used violate community standards" msgstr "็”จ่ฏ่ฟๅไบ†็คพ็พคๅ‡†ๅˆ™" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "ๆ–‡ๆœฌ" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "ๆ–‡ๆœฌ่พ“ๅ…ฅๆก†" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "่ฐข่ฐข๏ผŒไฝ ็š„ไธพๆŠฅๅทฒๆไบคใ€‚" @@ -4996,7 +5029,7 @@ msgstr "ๅ…ถไธญๅŒ…ๅซไปฅไธ‹ๅ†…ๅฎน๏ผš" msgid "That handle is already taken." msgstr "่ฏฅ็”จๆˆท่ฏ†ๅˆซ็ฌฆๅทฒ่ขซๅ ็”จใ€‚" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "่งฃ้™คๅฑ่”ฝๅŽ๏ผŒ่ฏฅ่ดฆๆˆทๅฐ†่ƒฝๅคŸไธŽไฝ ไบ’ๅŠจใ€‚" @@ -5013,11 +5046,11 @@ msgstr "็‰ˆๆƒ่ฎธๅฏๅทฒ่ฟ็งป่‡ณ <0/>" msgid "The feed has been replaced with Discover." msgstr "่ต„่ฎฏๆบๅทฒๆ›ฟๆขไธบ\"Discover\"ใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "ไปฅไธ‹ๆ ‡่ฎฐๅทฒๅบ”็”จๅˆฐไฝ ็š„่ดฆๆˆทใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "ไปฅไธ‹ๆ ‡่ฎฐๅทฒๅบ”็”จๅˆฐไฝ ็š„ๅ†…ๅฎนใ€‚" @@ -5051,7 +5084,7 @@ msgstr "ๅœ็”จ่ดฆๆˆทๆฒกๆœ‰ๆ—ถ้—ด้™ๅˆถ๏ผŒไฝ ๅฏไปฅ้šๆ—ถๅ†ณๅฎšๅ›žๆฅใ€‚" msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "่ฟžๆŽฅ่‡ณๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„ไบ’่”็ฝ‘่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ๅˆ ้™ค่ต„่ฎฏๆบๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„ไบ’่”็ฝ‘่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" @@ -5075,12 +5108,12 @@ msgstr "่ฟžๆŽฅ Tenor ๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜ใ€‚" msgid "There was an issue contacting the server" msgstr "่ฟžๆŽฅๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "่ฟžๆŽฅๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ๅˆทๆ–ฐ้€š็Ÿฅๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ็‚นๅ‡ป้‡่ฏ•ใ€‚" @@ -5097,8 +5130,8 @@ msgstr "ๅˆทๆ–ฐๅˆ—่กจๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ็‚นๅ‡ป้‡่ฏ•ใ€‚" msgid "There was an issue fetching your lists. Tap here to try again." msgstr "ๅˆทๆ–ฐๅˆ—่กจๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ็‚นๅ‡ป้‡่ฏ•ใ€‚" -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "ๆไบคไธพๆŠฅๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„็ฝ‘็ปœ่ฟžๆŽฅใ€‚" @@ -5106,9 +5139,9 @@ msgstr "ๆไบคไธพๆŠฅๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„็ฝ‘็ปœ่ฟžๆŽฅใ€‚" msgid "There was an issue with fetching your app passwords" msgstr "่Žทๅ–ๅบ”็”จไธ“็”จๅฏ†็ ๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5149,7 +5182,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "่ฟ™ๆก็”ณ่ฏ‰ๅฐ†ๅ‘้€่‡ณ <0>{0}ใ€‚" @@ -5178,28 +5211,37 @@ msgstr "ๆญคๅ†…ๅฎน็”ฑ {0} ๆ‰˜็ฎกใ€‚ๆ˜ฏๅฆ่ฆๅฏ็”จๅค–้ƒจๅช’ไฝ“๏ผŸ" msgid "This content is not available because one of the users involved has blocked the other." msgstr "็”ฑไบŽๅ…ถไธญไธ€ไธช็”จๆˆทๅฑ่”ฝไบ†ๅฆไธ€ไธช็”จๆˆท๏ผŒๆญคๅ†…ๅฎนไธๅฏ็”จใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "ๆฒกๆœ‰ Bluesky ่ดฆๆˆท๏ผŒๆ— ๆณ•ๆŸฅ็œ‹ๆญคๅ†…ๅฎนใ€‚" +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "่ฏฅๅŠŸ่ƒฝๆญฃๅœจๆต‹่ฏ•๏ผŒไฝ ๅฏไปฅๅœจ<0>่ฟ™็ฏ‡ๅšๅฎขๆ–‡็ซ ไธญ่Žทๅพ—ๅ…ณไบŽๅฏผๅ‡บๆ•ฐๆฎ็š„ๆ›ดๅคšไฟกๆฏใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "่ฏฅ่ต„่ฎฏๆบๅฝ“ๅ‰ไฝฟ็”จไบบๆ•ฐ่พƒๅคš๏ผŒๆœๅŠกๆš‚ๆ—ถไธๅฏ็”จใ€‚่ฏท็จๅŽๅ†่ฏ•ใ€‚" #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "่ฟ™้‡Œๆ˜ฏ็ฉบ็š„๏ผ" +#~ msgid "This feed is empty!" +#~ 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 "่ฟ™ไธช่ต„่ฎฏๆบๆ˜ฏ็ฉบ็š„๏ผไฝ ๆˆ–่ฎธ้œ€่ฆๅ…ˆๅ…ณๆณจๆ›ดๅคš็š„็”จๆˆท๏ผŒๆˆ–ๆฃ€ๆŸฅไฝ ็š„่ฏญ่จ€่ฎพ็ฝฎใ€‚" +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "่ฟ™ไธช่ต„่ฎฏๆบๅทฒ็ฆป็บฟ๏ผŒๆˆ‘ไปฌๅฐ†ๆ”นไธบๆ˜พ็คบๆฅ่‡ช <0>Discover ่ต„่ฎฏๆบ็š„ๅ†…ๅฎนใ€‚" @@ -5220,7 +5262,7 @@ msgstr "่ฟ™ไธชๆ ‡็ญพๆ˜ฏ็”ฑ <0>{0} ๆ ‡่ฎฐ็š„ใ€‚" msgid "This label was applied by the author." msgstr "่ฟ™ไธชๆ ‡็ญพๆ˜ฏ็”ฑ่ฏฅไฝœ่€…ๆ ‡่ฎฐ็š„ใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "่ฟ™ไธชๆ ‡็ญพๆ˜ฏ็”ฑไฝ ๆ ‡่ฎฐ็š„ใ€‚" @@ -5240,20 +5282,20 @@ msgstr "่ฟ™ไธชๅˆ—่กจไธบ็ฉบ๏ผ" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "ๆญคๅ†…ๅฎนๅฎกๆ ธๆไพ›ๆœๅŠกไธๅฏ็”จ๏ผŒ่ฏทๆŸฅ็œ‹ไธ‹ๆ–น่Žทๅ–ๆ›ดๅคš่ฏฆๆƒ…ใ€‚ๅฆ‚ๆžœ้—ฎ้ข˜ๆŒ็ปญๅญ˜ๅœจ๏ผŒ่ฏท่”็ณปๆˆ‘ไปฌใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "่ฏฅๅ็งฐๅทฒ่ขซไฝฟ็”จ" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "่ฟ™ๆกๅธ–ๅญๅทฒ่ขซๅˆ ้™คใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "่ฟ™ๆกๅธ–ๅญๅฐ†ไปŽ่ต„่ฎฏๆบไธญ้š่—ใ€‚" @@ -5298,7 +5340,7 @@ msgstr "่ฟ™ไธช็”จๆˆทๅŒ…ๅซๅœจไฝ ๅทฒ้š่—็š„ <0>{0} ๅˆ—่กจไธญใ€‚" msgid "This user isn't following anyone." msgstr "่ฟ™ไธช่ดฆๆˆท็›ฎๅ‰ๆฒกๆœ‰ๅ…ณๆณจไปปไฝ•ไบบใ€‚" -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "่ฟ™ๅฐ†ไปŽไฝ ็š„้š่—่ฏๆฑ‡ไธญๅˆ ้™ค {0}ใ€‚ไฝ ้šๆ—ถๅฏไปฅ้‡ๆ–ฐๆทปๅŠ ใ€‚" @@ -5315,7 +5357,7 @@ msgstr "่ฎจ่ฎบไธฒ้ฆ–้€‰้กน" msgid "Threaded Mode" msgstr "่ฎจ่ฎบไธฒๆจกๅผ" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "่ฎจ่ฎบไธฒ้ฆ–้€‰้กน" @@ -5331,7 +5373,7 @@ msgstr "่ฆไธพๆŠฅๅฏน่ฏ๏ผŒ่ฏทๅœจไผš่ฏไธญ้€‰ๆ‹ฉไธ€ๆก็งไฟกๅนถไธพๆŠฅใ€‚่ฟ™ๆœ‰ๅŠฉ msgid "To whom would you like to send this report?" msgstr "ไฝ ๆƒณๅฐ†ไธพๆŠฅๆไบค็ป™่ฐ๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "ๅœจ้š่—่ฏๆฑ‡้€‰้กนไน‹้—ดๅˆ‡ๆขใ€‚" @@ -5344,7 +5386,7 @@ msgid "Toggle to enable or disable adult content" msgstr "ๅˆ‡ๆขไปฅๅฏ็”จๆˆ–็ฆ็”จๆˆไบบๅ†…ๅฎน" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "็ƒญ้—จ" @@ -5354,10 +5396,10 @@ msgstr "่ฝฌๆข" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "็ฟป่ฏ‘" @@ -5399,14 +5441,14 @@ msgstr "ๆ— ๆณ•่ฟžๆŽฅๅˆฐๆœๅŠก๏ผŒ่ฏทๆฃ€ๆŸฅไบ’่”็ฝ‘่ฟžๆŽฅใ€‚" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "ๅ–ๆถˆๅฑ่”ฝ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "ๅ–ๆถˆๅฑ่”ฝ" @@ -5421,12 +5463,12 @@ msgstr "ๅ–ๆถˆๅฑ่”ฝ่ดฆๆˆท" msgid "Unblock Account" msgstr "ๅ–ๆถˆๅฑ่”ฝ่ดฆๆˆท" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "ๅ–ๆถˆๅฑ่”ฝ่ดฆๆˆท๏ผŸ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5441,7 +5483,7 @@ msgstr "ๅ–ๆถˆๅ…ณๆณจ" msgid "Unfollow" msgstr "ๅ–ๆถˆๅ…ณๆณจ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "ๅ–ๆถˆๅ…ณๆณจ {0}" @@ -5476,8 +5518,8 @@ msgstr "ๅ–ๆถˆ้š่—ๆ‰€ๆœ‰ {displayTag} ๅธ–ๅญ" msgid "Unmute conversation" msgstr "ๅ–ๆถˆ้™้Ÿณๅฏน่ฏ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "ๅ–ๆถˆ้š่—่ฎจ่ฎบไธฒ" @@ -5523,7 +5565,7 @@ msgstr "ๆ›ดๆ–ฐ่‡ณ {handle}" msgid "Updating..." msgstr "ๆ›ดๆ–ฐไธญ..." -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "ไธŠไผ ๅ›พ็‰‡" @@ -5584,7 +5626,7 @@ msgstr "ไฝฟ็”จๆŽจ่" msgid "Use the DNS panel" msgstr "ไฝฟ็”จ DNS ้ขๆฟ" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." msgstr "ไฝฟ็”จ่ฟ™ไธชๅ’Œไฝ ็š„็”จๆˆท่ฏ†ๅˆซ็ฌฆไธ€่ตท็™ปๅฝ•ๅ…ถไป–ๅบ”็”จใ€‚" @@ -5743,11 +5785,11 @@ msgstr "ๆŸฅ็œ‹่ฟ™ไธชๆ ‡่ฎฐ็š„่ฏฆๆƒ…" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "ๆŸฅ็œ‹ไธชไบบ่ต„ๆ–™" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "ๆŸฅ็œ‹ๅคดๅƒ" @@ -5759,6 +5801,11 @@ msgstr "ๆŸฅ็œ‹ @{0} ๆไพ›็š„ๆ ‡่ฎฐๆœๅŠกใ€‚" msgid "View users who like this feed" msgstr "ๆŸฅ็œ‹่ฟ™ไธช่ต„่ฎฏๆบ่ขซ่ฐๅ–œๆฌข" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -5782,7 +5829,7 @@ msgstr "่ญฆๅ‘Šๅ†…ๅฎนๅนถไปŽ่ต„่ฎฏๆบไธญ่ฟ‡ๆปค" msgid "We couldn't find any results for that hashtag." msgstr "ๆ‰พไธๅˆฐไปปไฝ•ไธŽ่ฏฅๆ ‡็ญพ็›ธๅ…ณ็š„็ป“ๆžœใ€‚" -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "ๆˆ‘ไปฌๆ— ๆณ•ๅŠ ่ฝฝ่ฟ™ไธชๅฏน่ฏ" @@ -5798,7 +5845,7 @@ msgstr "ๆˆ‘ไปฌๅธŒๆœ›ไฝ ๅœจๆญคๅบฆ่ฟ‡ๆ„‰ๅฟซ็š„ๆ—ถๅ…‰ใ€‚่ฏท่ฎฐไฝ๏ผŒBluesky ๆ˜ฏ๏ผš" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "ๆˆ‘ไปฌๅทฒ็ป็œ‹ๅฎŒไบ†ไฝ ๅ…ณๆณจ็š„ๅธ–ๅญใ€‚่ฟ™ๆ˜ฏๆฅ่‡ช <0/> ็š„ๆœ€ๆ–ฐๆถˆๆฏใ€‚" -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "ไธๅปบ่ฎฎไฝ ๆทปๅŠ ไผšๅ‡บ็Žฐๅœจ่ฎธๅคšๅธ–ๅญไธญ็š„ๅธธ่ง่ฏๆฑ‡๏ผŒ่ฟ™ๅฏ่ƒฝๅฏผ่‡ดไฝ ็š„ๆ—ถ้—ด็บฟไธŠๆฒกๆœ‰ๅธ–ๅญๅฏๆ˜พ็คบใ€‚" @@ -5834,14 +5881,18 @@ msgstr "ๆˆ‘ไปฌ้žๅธธ้ซ˜ๅ…ดไฝ ๅŠ ๅ…ฅๆˆ‘ไปฌ๏ผ" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ไปฌๆ— ๆณ•่งฃๆž่ฟ™ไธชๅˆ—่กจใ€‚ๅฆ‚ๆžœ้—ฎ้ข˜ๆŒ็ปญๅ‘็”Ÿ๏ผŒ่ฏท่”็ณปๅˆ—่กจๅˆ›ๅปบ่€…๏ผŒ@{handleOrDid}ใ€‚" -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ไปฌๆ— ๆณ•ๅŠ ่ฝฝไฝ ็š„้š่—่ฏๆฑ‡ๅˆ—่กจใ€‚่ฏท้‡่ฏ•ใ€‚" -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -5861,7 +5912,7 @@ msgstr "ไฝ ๆ„Ÿๅ…ด่ถฃ็š„ๆ˜ฏไป€ไนˆ๏ผŸ" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "ๅ‘็”Ÿไบ†ไป€ไนˆๆ–ฐ้ฒœไบ‹๏ผŸ" @@ -5882,7 +5933,7 @@ msgstr "่ฐๅฏไปฅ็ป™ไฝ ๅ‘้€็งไฟก๏ผŸ" msgid "Who can reply" msgstr "่ฐๅฏไปฅๅ›žๅค" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "็ณŸ็ณ•๏ผ" @@ -5920,11 +5971,11 @@ msgstr "ๅฎฝ" msgid "Write a message" msgstr "็ผ–ๅ†™็งไฟก" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "ๆ’ฐๅ†™ๅธ–ๅญ" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "ๆ’ฐๅ†™ไฝ ็š„ๅ›žๅค" @@ -5964,8 +6015,8 @@ msgstr "่ฝฎๅˆฐไฝ ไบ†ใ€‚" msgid "You are not following anyone." msgstr "ไฝ ๆฒกๆœ‰ๅ…ณๆณจไปปไฝ•่ดฆๆˆทใ€‚" -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "ไฝ ไนŸๅฏไปฅๆŽข็ดขๆ–ฐ็š„่‡ชๅฎšไน‰่ต„่ฎฏๆบๆฅๅ…ณๆณจใ€‚" @@ -5994,6 +6045,10 @@ msgstr "ไฝ ๅฏไปฅ้‡ๆ–ฐๆฟ€ๆดปไฝ ็š„่ดฆๆˆทไปฅ็ปง็ปญ็™ปๅฝ•๏ผŒๅ…ถไป–็”จๆˆทๅฐ†ๅฏไปฅ msgid "You do not have any followers." msgstr "ไฝ ็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไปปไฝ•ๅ…ณๆณจ่€…ใ€‚" +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "ไฝ ็›ฎๅ‰่ฟ˜ๆฒกๆœ‰้‚€่ฏท็ ๏ผๅฝ“ไฝ ๆŒ็ปญไฝฟ็”จ Bluesky ไธ€ๆฎตๆ—ถ้—ดๅŽ๏ผŒๆˆ‘ไปฌๅฐ†ๆไพ›ไธ€ไบ›ๆ–ฐ็š„้‚€่ฏท็ ็ป™ไฝ ใ€‚" @@ -6073,15 +6128,15 @@ msgstr "ไฝ ่ฟ˜ๆฒกๆœ‰้š่—ไปปไฝ•่ดฆๆˆทใ€‚่ฆ้š่—่ดฆๆˆท๏ผŒ่ฏท่ฝฌๅˆฐๅ…ถไธชไบบ่ต„ msgid "You have reached the end" msgstr "ไฝ ๅทฒ็ปๅˆฐๆœซๅฐพไบ†" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "ไฝ ่ฟ˜ๆฒกๆœ‰้š่—ไปปไฝ•่ฏๆˆ–ๆ ‡็ญพ" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "ๅฆ‚ๆžœไฝ ่ฎคไธบ็”ฑไป–ไบบๆ”พ็ฝฎๆ ‡็ญพ็š„ๆ ‡่ฎฐไฟกๆฏๆœ‰่ฏฏ๏ผŒไฝ ๅฏไปฅๆๅ‡บ็”ณ่ฏ‰ใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "ๅฆ‚ๆžœไฝ ่ฎคไธบๆ ‡็ญพ็š„ๆ ‡่ฎฐไฟกๆฏๆœ‰่ฏฏ๏ผŒไฝ ๅฏไปฅๆๅ‡บ็”ณ่ฏ‰ใ€‚" @@ -6089,7 +6144,7 @@ msgstr "ๅฆ‚ๆžœไฝ ่ฎคไธบๆ ‡็ญพ็š„ๆ ‡่ฎฐไฟกๆฏๆœ‰่ฏฏ๏ผŒไฝ ๅฏไปฅๆๅ‡บ็”ณ่ฏ‰ใ€‚" msgid "You must be 13 years of age or older to sign up." msgstr "ไฝ ๅฟ…้กปๅนดๆปก13ๅฒๅŠไปฅไธŠๆ‰่ƒฝๆณจๅ†Œใ€‚" -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "ไฝ ๅฟ…้กป้€‰ๆ‹ฉ่‡ณๅฐ‘ไธ€ไธชๆ ‡่ฎฐ่€…่ฟ›่กŒไธพๆŠฅ" @@ -6097,11 +6152,11 @@ msgstr "ไฝ ๅฟ…้กป้€‰ๆ‹ฉ่‡ณๅฐ‘ไธ€ไธชๆ ‡่ฎฐ่€…่ฟ›่กŒไธพๆŠฅ" msgid "You previously deactivated @{0}." msgstr "ไฝ ไน‹ๅ‰ๅทฒๅœ็”จ @{0}ใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "ไฝ ๅฐ†ไธๅ†ๆ”ถๅˆฐ่ฟ™ๆก่ฎจ่ฎบไธฒ็š„้€š็Ÿฅ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "ไฝ ๅฐ†ๆ”ถๅˆฐ่ฟ™ๆก่ฎจ่ฎบไธฒ็š„้€š็Ÿฅ" @@ -6109,15 +6164,15 @@ msgstr "ไฝ ๅฐ†ๆ”ถๅˆฐ่ฟ™ๆก่ฎจ่ฎบไธฒ็š„้€š็Ÿฅ" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "ไฝ ๅฐ†ๆ”ถๅˆฐไธ€ๅฐๅธฆๆœ‰็กฎ่ฎค็ ็š„็”ตๅญ้‚ฎไปถใ€‚่ฏทๅœจๆญค่พ“ๅ…ฅ่ฏฅ็กฎ่ฎค็ ๏ผŒ็„ถๅŽ่พ“ๅ…ฅไฝ ็š„ๆ–ฐๅฏ†็ ใ€‚" -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "ไฝ ๏ผš{0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "ไฝ ๏ผš{defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "ไฝ ๏ผš{short}" @@ -6141,7 +6196,7 @@ msgstr "ไฝ ๅทฒ่ฎพ็ฝฎๅฎŒๆˆ๏ผ" msgid "You've chosen to hide a word or tag within this post." msgstr "ไฝ ้€‰ๆ‹ฉ้š่—ไบ†่ฟ™ๆกๅธ–ๅญไธญ็š„่ฏๆฑ‡ๆˆ–ๆ ‡็ญพใ€‚" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ไฝ ๅทฒ็ปๆต่งˆๅฎŒไฝ ็š„่ฎข้˜…่ต„่ฎฏๆบๅ•ฆ๏ผๅฏปๆ‰พไธ€ไบ›ๆ›ดๅคš็š„่ดฆๆˆทๅ…ณๆณจๅงใ€‚" @@ -6183,7 +6238,7 @@ msgstr "ไฝ ็š„็”ตๅญ้‚ฎ็ฎฑๅทฒๆ›ดๆ–ฐไฝ†ๅฐšๆœช้ชŒ่ฏใ€‚ไฝœไธบไธ‹ไธ€ๆญฅ๏ผŒ่ฏท้ชŒ่ฏ msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "ไฝ ็š„็”ตๅญ้‚ฎ็ฎฑๅฐšๆœช้ชŒ่ฏใ€‚่ฟ™ๆ˜ฏไธ€ไธช้‡่ฆ็š„ๅฎ‰ๅ…จๆญฅ้ชค๏ผŒๆˆ‘ไปฌๅปบ่ฎฎไฝ ๅฎŒๆˆ้ชŒ่ฏใ€‚" -#: src/view/com/posts/FollowingEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ไฝ ็š„\"ๆญฃๅœจๅ…ณๆณจ\"่ต„่ฎฏๆบไธบ็ฉบ๏ผๅ…ณๆณจๆ›ดๅคš็”จๆˆทๅŽป็œ‹็œ‹ไป–ไปฌๅ‘ไบ†ไป€ไนˆใ€‚" @@ -6195,7 +6250,7 @@ msgstr "ไฝ ็š„ๅฎŒๆ•ด็”จๆˆท่ฏ†ๅˆซ็ฌฆๅฐ†ไฟฎๆ”นไธบ" msgid "Your full handle will be <0>@{0}" msgstr "ไฝ ็š„ๅฎŒๆ•ด็”จๆˆท่ฏ†ๅˆซ็ฌฆๅฐ†ไฟฎๆ”นไธบ <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "ไฝ ็š„้š่—่ฏๆฑ‡" @@ -6203,7 +6258,7 @@ msgstr "ไฝ ็š„้š่—่ฏๆฑ‡" msgid "Your password has been changed successfully!" msgstr "ไฝ ็š„ๅฏ†็ ๅทฒๆˆๅŠŸๆ›ดๆ”น๏ผ" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "ไฝ ็š„ๅธ–ๅญๅทฒๅ‘ๅธƒ" @@ -6219,11 +6274,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "ไฝ ็š„ๅ›žๅคๅทฒๅ‘ๅธƒ" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "ไฝ ็š„ไธพๆŠฅๅฐ†ๅ‘้€่‡ณ Bluesky ๅ†…ๅฎนๅฎกๆ ธๆœๅŠก" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index 5660c06aa6..b931d211e0 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -13,7 +13,7 @@ msgstr "" "X-Generator: @lingui/cli\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:119 +#: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" msgstr "" @@ -33,10 +33,14 @@ msgstr "{0, plural, one {่ฉฒๅธณ่™Ÿๆœ‰ # ๅ€‹ๆจ™่จ˜} other {่ฉฒๅธณ่™Ÿๆœ‰ # ๅ€‹ๆจ™ msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {่ฉฒๅ…งๅฎนๆœ‰ # ๅ€‹ๆจ™่จ˜} other {่ฉฒๅ…งๅฎนๆœ‰ # ๅ€‹ๆจ™่จ˜}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# ๅ€‹่ฝ‰่ฒผ} other {# ๅ€‹่ฝ‰่ฒผ}}" +#: src/components/KnownFollowers.tsx:179 +msgid "{0, plural, one {and # other} other {and # others}}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -51,11 +55,11 @@ msgstr "{0, plural, one {ๅ€‹่ทŸ้šจไธญ} other {ๅ€‹่ทŸ้šจไธญ}}" msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {ๅ–œๆญก๏ผˆ# ๅ€‹ๅ–œๆญก๏ผ‰} other {ๅ–œๆญก๏ผˆ# ๅ€‹ๅ–œๆญก๏ผ‰}}" -#: src/view/com/post-thread/PostThreadItem.tsx:386 +#: src/view/com/post-thread/PostThreadItem.tsx:380 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {ๅ–œๆญก} other {ๅ–œๆญก}}" -#: src/view/com/feeds/FeedSourceCard.tsx:280 +#: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural,one {# ๅ€‹็”จๆˆถๅทฒๅ–œๆญก} other {# ๅ€‹็”จๆˆถๅทฒๅ–œๆญก}}" @@ -67,7 +71,7 @@ msgstr "{0, plural, one {ๅ‰‡่ฒผๆ–‡} other {ๅ‰‡่ฒผๆ–‡}}" msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {ๅ›ž่ฆ†๏ผˆ# ๅ€‹ๅ›ž่ฆ†๏ผ‰} other {ๅ›ž่ฆ†๏ผˆ# ๅ€‹ๅ›ž่ฆ†๏ผ‰}}" -#: src/view/com/post-thread/PostThreadItem.tsx:366 +#: src/view/com/post-thread/PostThreadItem.tsx:360 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {่ฝ‰่ฒผ} other {่ฝ‰่ฒผ}}" @@ -106,7 +110,7 @@ msgstr "็„กๆณ•ๅ‚ณ้€่จŠๆฏ็ตฆ {handle}" msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# ๅ€‹็”จๆˆถๅทฒๅ–œๆญก} other {# ๅ€‹็”จๆˆถๅทฒๅ–œๆญก}}" -#: src/view/shell/Drawer.tsx:461 +#: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} ๅ€‹ๆœช่ฎ€้€š็Ÿฅ" @@ -138,12 +142,12 @@ msgstr "โš ็„กๆ•ˆ็š„ๅธณ่™Ÿไปฃ็ขผ" msgid "2FA Confirmation" msgstr "้›™้‡้ฉ—่ญ‰" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/com/util/ViewHeader.tsx:93 +#: src/view/screens/Search/Search.tsx:715 msgid "Access navigation links and settings" msgstr "ๅญ˜ๅ–ๅฐŽ่ฆฝ้€ฃ็ตๅ’Œ่จญๅฎš" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "ๅญ˜ๅ–ๅ€‹ไบบๆช”ๆกˆๅ’Œๅ…ถไป–ๅฐŽ่ฆฝ้€ฃ็ต" @@ -156,7 +160,7 @@ msgstr "็„ก้šœ็ค™" msgid "Accessibility settings" msgstr "็„ก้šœ็ค™่จญๅฎš" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:296 #: src/view/screens/AccessibilitySettings.tsx:63 msgid "Accessibility Settings" msgstr "็„ก้šœ็ค™่จญๅฎš" @@ -196,7 +200,7 @@ msgstr "ๅธณ่™Ÿ้ธ้ …" msgid "Account removed from quick access" msgstr "ๅทฒๅพžๅฟซ้€Ÿๅญ˜ๅ–ไธญ็งป้™คๅธณ่™Ÿ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 #: src/view/com/profile/ProfileMenu.tsx:131 msgid "Account unblocked" msgstr "ๅทฒ่งฃ้™คๅฐ้Ž–ๅธณ่™Ÿ" @@ -209,7 +213,7 @@ msgstr "ๅทฒๅ–ๆถˆ่ทŸ้šจๅธณ่™Ÿ" msgid "Account unmuted" msgstr "ๅทฒๅ–ๆถˆ้œ้Ÿณๅธณ่™Ÿ" -#: src/components/dialogs/MutedWords.tsx:165 +#: src/components/dialogs/MutedWords.tsx:164 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 @@ -231,9 +235,9 @@ msgstr "ๅฐ‡็”จๆˆถๆ–ฐๅขž่‡ณๆญคๅˆ—่กจ" msgid "Add account" msgstr "ๆ–ฐๅขžๅธณ่™Ÿ" -#: src/view/com/composer/GifAltText.tsx:70 -#: src/view/com/composer/GifAltText.tsx:136 -#: src/view/com/composer/GifAltText.tsx:176 +#: src/view/com/composer/GifAltText.tsx:69 +#: src/view/com/composer/GifAltText.tsx:135 +#: src/view/com/composer/GifAltText.tsx:175 #: src/view/com/composer/photos/Gallery.tsx:120 #: src/view/com/composer/photos/Gallery.tsx:187 #: src/view/com/modals/AltImage.tsx:118 @@ -246,15 +250,15 @@ msgstr "ๆ–ฐๅขžๆ›ฟไปฃๆ–‡ๅญ—" msgid "Add App Password" msgstr "ๆ–ฐๅขžๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" -#: src/components/dialogs/MutedWords.tsx:158 +#: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "ๅœจๅทฒ้…็ฝฎ็š„่จญๅฎšไธญๆ–ฐๅขž้œ้Ÿณๆ–‡ๅญ—" -#: src/components/dialogs/MutedWords.tsx:87 +#: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" msgstr "ๆ–ฐๅขž้œ้Ÿณๆ–‡ๅญ—ๅŠๆจ™็ฑค" -#: src/screens/Home/NoFeedsPinned.tsx:112 +#: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "ๆ–ฐๅขžๆŽจ่–ฆ็š„ๅ‹•ๆ…‹ๆบ" @@ -271,7 +275,7 @@ msgstr "ๅฐ‡ไปฅไธ‹ DNS ่จ˜้Œ„ๆ–ฐๅขžๅˆฐๆ‚จ็š„็ถฒๅŸŸ๏ผš" msgid "Add to Lists" msgstr "ๆ–ฐๅขž่‡ณๅˆ—่กจ" -#: src/view/com/feeds/FeedSourceCard.tsx:246 +#: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "ๅŠ ๅ…ฅๅˆฐๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -280,7 +284,7 @@ msgstr "ๅŠ ๅ…ฅๅˆฐๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" msgid "Added to list" msgstr "ๆ–ฐๅขž่‡ณๅˆ—่กจ" -#: src/view/com/feeds/FeedSourceCard.tsx:118 +#: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "ๅŠ ๅ…ฅๅˆฐๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -302,12 +306,12 @@ msgstr "ๆˆไบบๅ…งๅฎนๅทฒๅœ็”จใ€‚" msgid "Advanced" msgstr "้€ฒ้šŽ่จญๅฎš" -#: src/view/screens/Feeds.tsx:798 +#: src/view/screens/Feeds.tsx:771 msgid "All the feeds you've saved, right in one place." msgstr "ไปฅไธ‹ๆ˜ฏๆ‚จๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:188 -#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:187 +#: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" msgstr "ๅ…่จฑๅญ˜ๅ–ๆ‚จ็š„็งไบบ่จŠๆฏ" @@ -325,13 +329,13 @@ msgstr "ๅทฒ็ถ“ๆœ‰้‡็ฝฎ็ขผไบ†๏ผŸ" msgid "Already signed in as @{0}" msgstr "ๅทฒไปฅ @{0} ่บซไปฝ็™ปๅ…ฅ" -#: src/view/com/composer/GifAltText.tsx:94 +#: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 #: src/view/com/util/post-embeds/GifEmbed.tsx:173 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 #: src/view/screens/AccessibilitySettings.tsx:77 msgid "Alt text" @@ -375,6 +379,7 @@ msgstr "ๅ‡บ็พๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" msgid "an unknown error occurred" msgstr "ๅ‡บ็พๆœช็Ÿฅ้Œฏ่ชค" +#: src/components/KnownFollowers.tsx:187 #: src/view/com/notifications/FeedItem.tsx:258 #: src/view/com/threadgate/WhoCanReply.tsx:180 msgid "and" @@ -400,11 +405,11 @@ msgstr "ๆ‡‰็”จ็จ‹ๅผ่ชž่จ€" msgid "App password deleted" msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผๅทฒๅˆช้™ค" -#: src/view/com/modals/AddAppPasswords.tsx:139 +#: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ธๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜่™ŸๅŠๅบ•็ทšใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:104 +#: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผๅ็จฑๅฟ…้ ˆ่‡ณๅฐ‘็‚บ 4 ๅ€‹ๅญ—ๅ…ƒใ€‚" @@ -412,22 +417,22 @@ msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผๅ็จฑๅฟ…้ ˆ่‡ณๅฐ‘็‚บ 4 ๅ€‹ๅญ—ๅ…ƒใ€‚" msgid "App password settings" msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ่จญๅฎš" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:264 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" -#: src/components/moderation/LabelsOnMeDialog.tsx:153 -#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +#: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" msgstr "็”ณ่จด" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" msgstr "็”ณ่จดใ€Œ{0}ใ€ๆจ™่จ˜" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "ๅทฒๆไบค็”ณ่จด" @@ -444,7 +449,7 @@ msgid "Appearance" msgstr "ๅค–่ง€" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 -#: src/screens/Home/NoFeedsPinned.tsx:106 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "ไฝฟ็”จ้ ่จญๆŽจ่–ฆ็š„ๅ‹•ๆ…‹ๆบ" @@ -460,15 +465,15 @@ msgstr "ๆ‚จ็ขบๅฎš่ฆๅˆช้™ค้€™ๅ‰‡่จŠๆฏๅ—Ž๏ผŸ่ฉฒ่จŠๆฏๅฐ‡็‚บๆ‚จๅˆช้™ค๏ผŒไฝ†ไธๆœƒ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "ๆ‚จ็ขบๅฎš่ฆ้›ข้–‹ๆญคๅฐ่ฉฑๅ—Ž๏ผŸๆ‚จ็š„่จŠๆฏๅฐ‡็‚บๆ‚จๅˆช้™ค๏ผŒไฝ†ไธๆœƒ็‚บๅ…ถไป–ๅƒ่ˆ‡่€…ๅˆช้™คใ€‚" -#: src/view/com/feeds/FeedSourceCard.tsx:293 +#: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ๆ‚จ็ขบๅฎš่ฆๅพžๆ‚จ็š„ๅ‹•ๆ…‹ไธญ็งป้™ค {0} ๅ—Ž๏ผŸ" -#: src/view/com/composer/Composer.tsx:617 +#: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "ๆ‚จ็ขบๅฎš่ฆๆจๆฃ„ๆญค่‰็จฟๅ—Ž๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:283 +#: src/components/dialogs/MutedWords.tsx:281 msgid "Are you sure?" msgstr "ๆ‚จ็ขบๅฎšๅ—Ž๏ผŸ" @@ -489,8 +494,8 @@ msgid "At least 3 characters" msgstr "่‡ณๅฐ‘ 3 ๅ€‹ๅญ—ๅ…ƒ" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:283 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 +#: src/components/moderation/LabelsOnMeDialog.tsx:281 +#: src/components/moderation/LabelsOnMeDialog.tsx:282 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -503,7 +508,7 @@ msgstr "่‡ณๅฐ‘ 3 ๅ€‹ๅญ—ๅ…ƒ" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:193 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "่ฟ”ๅ›ž" @@ -519,7 +524,7 @@ msgstr "็”Ÿๆ—ฅ" msgid "Birthday:" msgstr "็”Ÿๆ—ฅ๏ผš" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 msgid "Block" msgstr "ๅฐ้Ž–" @@ -559,7 +564,7 @@ msgstr "ๅทฒ่ขซๅฐ้Ž–" msgid "Blocked accounts" msgstr "ๅทฒๅฐ้Ž–ๅธณ่™Ÿ" -#: src/Navigation.tsx:141 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ๅทฒๅฐ้Ž–ๅธณ่™Ÿ" @@ -617,8 +622,8 @@ msgstr "ๆจก็ณŠๅœ–็‰‡ไธฆๅพžๅ‹•ๆ…‹ไธญ้Žๆฟพ" msgid "Books" msgstr "ๆ›ธ็ฑ" -#: src/screens/Home/NoFeedsPinned.tsx:116 -#: src/screens/Home/NoFeedsPinned.tsx:123 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "็€่ฆฝๅ…ถไป–ๅ‹•ๆ…‹ๆบ" @@ -626,7 +631,7 @@ msgstr "็€่ฆฝๅ…ถไป–ๅ‹•ๆ…‹ๆบ" msgid "Business" msgstr "ๅ•†ๅ‹™" -#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 msgid "by โ€”" msgstr "ไพ†่‡ช โ€”" @@ -634,7 +639,7 @@ msgstr "ไพ†่‡ช โ€”" msgid "By {0}" msgstr "ไพ†่‡ช {0}" -#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 msgid "by <0/>" msgstr "ไพ†่‡ช <0/>" @@ -642,7 +647,7 @@ msgstr "ไพ†่‡ช <0/>" msgid "By creating an account you agree to the {els}." msgstr "ๅปบ็ซ‹ๅธณ่™Ÿๅณ่กจ็คบๆ‚จๅŒๆ„ {els}ใ€‚" -#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 msgid "by you" msgstr "ไพ†่‡ชๆ‚จ" @@ -650,7 +655,7 @@ msgstr "ไพ†่‡ชๆ‚จ" msgid "Camera" msgstr "็›ธๆฉŸ" -#: src/view/com/modals/AddAppPasswords.tsx:180 +#: 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 ๅ€‹ๅญ—ๅ…ƒใ€‚" @@ -659,8 +664,8 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ธๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜่™ŸๅŠๅบ•็ทšใ€‚้•ทๅบฆๅฟ…้ ˆ #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:417 -#: src/view/com/composer/Composer.tsx:423 +#: src/view/com/composer/Composer.tsx:432 +#: src/view/com/composer/Composer.tsx:438 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -676,8 +681,8 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ธๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜่™ŸๅŠๅบ•็ทšใ€‚้•ทๅบฆๅฟ…้ ˆ #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:136 -#: src/view/screens/Search/Search.tsx:738 +#: src/view/com/util/post-ctrls/RepostButton.tsx:138 +#: src/view/screens/Search/Search.tsx:735 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "ๅ–ๆถˆ" @@ -706,7 +711,7 @@ msgstr "ๅ–ๆถˆๅœ–็‰‡่ฃๅ‰ช" msgid "Cancel profile editing" msgstr "ๅ–ๆถˆ็ทจ่ผฏๅ€‹ไบบๆช”ๆกˆ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:130 +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "ๅ–ๆถˆๅผ•็”จ่ฒผๆ–‡" @@ -762,7 +767,7 @@ msgstr "่ฎŠๆ›ด่ฒผๆ–‡็š„็™ผไฝˆ่ชž่จ€็‚บ {0}" msgid "Change Your Email" msgstr "่ฎŠๆ›ดๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€" -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:308 #: src/view/shell/bottom-bar/BottomBar.tsx:201 #: src/view/shell/desktop/LeftNav.tsx:295 msgid "Chat" @@ -774,7 +779,7 @@ msgstr "ๅฐ่ฉฑๅทฒ้œ้Ÿณ" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:313 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" @@ -839,7 +844,7 @@ msgid "Clear all storage data (restart after this)" msgstr "ๆธ…้™คๆ‰€ๆœ‰่ณ‡ๆ–™๏ผˆไธฆ้‡ๅ•Ÿ๏ผ‰" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:864 +#: src/view/screens/Search/Search.tsx:861 msgid "Clear search query" msgstr "ๆธ…้™คๆœๅฐ‹่จ˜้Œ„" @@ -939,7 +944,7 @@ msgstr "้—œ้–‰ๅบ•้ƒจๅฐŽ่ฆฝๅˆ—" msgid "Closes password update alert" msgstr "้—œ้–‰ๅฏ†็ขผๆ›ดๆ–ฐ่ญฆๅ‘Š" -#: src/view/com/composer/Composer.tsx:419 +#: src/view/com/composer/Composer.tsx:434 msgid "Closes post composer and discards post draft" msgstr "้—œ้–‰่ฒผๆ–‡็ทจ่ผฏ้ ไธฆๆจๆฃ„่‰็จฟ" @@ -963,7 +968,7 @@ msgstr "ๅ–œๅЇ" msgid "Comics" msgstr "ๆผซ็•ซ" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:254 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "็คพ็พคๅฎˆๅ‰‡" @@ -976,7 +981,7 @@ msgstr "ๅฎŒๆˆๅˆๅง‹่จญๅฎšไธฆ้–‹ๅง‹ไฝฟ็”จๆ‚จ็š„ๅธณ่™Ÿ" msgid "Complete the challenge" msgstr "ๅฎŒๆˆ้ฉ—่ญ‰" -#: src/view/com/composer/Composer.tsx:536 +#: src/view/com/composer/Composer.tsx:551 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "ๆ’ฐๅฏซ่ฒผๆ–‡็š„้•ทๅบฆๆœ€ๅคš็‚บ {MAX_GRAPHEME_LENGTH} ๅ€‹ๅญ—ๅ…ƒ" @@ -1077,7 +1082,7 @@ msgid "Context menu backdrop, click to close the menu." msgstr "ๅฝˆๅ‡บๅผ้ธๅ–ฎ่ƒŒๆ™ฏ๏ผŒ้ปžๆ“Šไปฅ้—œ้–‰้ธๅ–ฎใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:253 -#: src/screens/Onboarding/StepProfile/index.tsx:268 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "็นผ็บŒ" @@ -1085,13 +1090,17 @@ msgstr "็นผ็บŒ" msgid "Continue as {0} (currently signed in)" msgstr "ไปฅ {0} ็นผ็บŒ (็›ฎๅ‰ๅทฒ็™ปๅ…ฅ)" +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + #: src/screens/Onboarding/StepInterests/index.tsx:250 -#: src/screens/Onboarding/StepProfile/index.tsx:265 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "็นผ็บŒไธ‹ไธ€ๆญฅ" -#: src/screens/Messages/List/ChatListItem.tsx:153 +#: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" msgstr "ๅฐ่ฉฑๅทฒๅˆช้™ค" @@ -1099,7 +1108,7 @@ msgstr "ๅฐ่ฉฑๅทฒๅˆช้™ค" msgid "Cooking" msgstr "็ƒน้ฃช" -#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/AddAppPasswords.tsx:220 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "ๅทฒ่ค‡่ฃฝ" @@ -1109,10 +1118,10 @@ msgid "Copied build version to clipboard" msgstr "ๅทฒ่ค‡่ฃฝๅปบๆง‹็‰ˆๆœฌ่™Ÿ่‡ณๅ‰ช่ฒผ็ฐฟ" #: src/components/dms/MessageMenu.tsx:57 -#: src/view/com/modals/AddAppPasswords.tsx:81 +#: 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:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copied to clipboard" msgstr "ๅทฒ่ค‡่ฃฝ่‡ณๅ‰ช่ฒผ็ฐฟ" @@ -1120,11 +1129,11 @@ msgstr "ๅทฒ่ค‡่ฃฝ่‡ณๅ‰ช่ฒผ็ฐฟ" msgid "Copied!" msgstr "ๅทฒ่ค‡่ฃฝ๏ผ" -#: src/view/com/modals/AddAppPasswords.tsx:215 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" msgstr "่ค‡่ฃฝๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "่ค‡่ฃฝ" @@ -1141,8 +1150,8 @@ msgstr "่ค‡่ฃฝ็จ‹ๅผ็ขผ" msgid "Copy link to list" msgstr "่ค‡่ฃฝๅˆ—่กจ้€ฃ็ต" -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 msgid "Copy link to post" msgstr "่ค‡่ฃฝ่ฒผๆ–‡้€ฃ็ต" @@ -1151,12 +1160,12 @@ msgstr "่ค‡่ฃฝ่ฒผๆ–‡้€ฃ็ต" msgid "Copy message text" msgstr "่ค‡่ฃฝ่จŠๆฏๆ–‡ๅญ—" -#: src/view/com/util/forms/PostDropdownBtn.tsx:288 -#: src/view/com/util/forms/PostDropdownBtn.tsx:290 +#: src/view/com/util/forms/PostDropdownBtn.tsx:275 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 msgid "Copy post text" msgstr "่ค‡่ฃฝ่ฒผๆ–‡ๆ–‡ๅญ—" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:259 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "่‘—ไฝœๆฌŠๆ”ฟ็ญ–" @@ -1195,11 +1204,11 @@ msgstr "ๅปบ็ซ‹ๅธณ่™Ÿ" msgid "Create an account" msgstr "ๅปบ็ซ‹ไธ€ๅ€‹ๅธณ่™Ÿ" -#: src/screens/Onboarding/StepProfile/index.tsx:282 +#: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "ๆˆ–ๆ˜ฏๅปบ็ซ‹ไธ€ๅ€‹้ ญๅƒ" -#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" msgstr "ๅปบ็ซ‹ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" @@ -1229,7 +1238,7 @@ msgstr "่‡ช่จ‚" msgid "Custom domain" msgstr "่‡ช่จ‚็ถฒๅŸŸ" -#: src/view/screens/Feeds.tsx:824 +#: src/view/screens/Feeds.tsx:797 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "็”ฑ็คพ็พคๆ‰“้€ ็š„่‡ช่จ‚ๅ‹•ๆ…‹ๆบๅธถไพ†ๅ…จๆ–ฐ้ซ”้ฉ—๏ผŒๅนซๅŠฉๆ‚จๆ‰พๅˆฐๆ‰€ๆ„›็š„ๅ…งๅฎนใ€‚" @@ -1272,7 +1281,7 @@ msgid "Debug panel" msgstr "ๅต้Œฏ้ขๆฟ" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:423 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1323,8 +1332,8 @@ msgstr "ๅˆช้™คๆˆ‘็š„ๅธณ่™Ÿ" msgid "Delete My Accountโ€ฆ" msgstr "ๅˆช้™คๆˆ‘็š„ๅธณ่™Ÿโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:417 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Delete post" msgstr "ๅˆช้™ค่ฒผๆ–‡" @@ -1332,7 +1341,7 @@ msgstr "ๅˆช้™ค่ฒผๆ–‡" msgid "Delete this list?" msgstr "ๅˆช้™คๆญคๅˆ—่กจ๏ผŸ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:431 +#: src/view/com/util/forms/PostDropdownBtn.tsx:418 msgid "Delete this post?" msgstr "ๅˆช้™ค้€™ๆข่ฒผๆ–‡๏ผŸ" @@ -1355,11 +1364,11 @@ msgstr "ๅˆช้™คๅฐ่ฉฑ่ฒๆ˜Ž็ด€้Œ„" msgid "Description" msgstr "ๆ่ฟฐ" -#: src/view/com/composer/GifAltText.tsx:141 +#: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" msgstr "็”Ÿๅ‹•็š„ๆ›ฟไปฃๆ–‡ๅญ—" -#: src/view/com/composer/Composer.tsx:264 +#: src/view/com/composer/Composer.tsx:277 msgid "Did you want to say anything?" msgstr "ๆœ‰ไป€้บผๆƒณ่ชช็š„ๅ—Ž๏ผŸ" @@ -1392,11 +1401,11 @@ msgstr "้—œ้–‰่งธ่ฆบๅ›ž้ฅ‹" msgid "Disabled" msgstr "ๅœ็”จ" -#: src/view/com/composer/Composer.tsx:619 +#: src/view/com/composer/Composer.tsx:632 msgid "Discard" msgstr "ๆจๆฃ„" -#: src/view/com/composer/Composer.tsx:616 +#: src/view/com/composer/Composer.tsx:629 msgid "Discard draft?" msgstr "ๆจๆฃ„่‰็จฟ๏ผŸ" @@ -1405,12 +1414,12 @@ msgstr "ๆจๆฃ„่‰็จฟ๏ผŸ" msgid "Discourage apps from showing my account to logged-out users" msgstr "้˜ปๆ’“ๆ‡‰็”จ็จ‹ๅผๅ‘ๆœช็™ปๅ…ฅ็”จๆˆถ้กฏ็คบๆˆ‘็š„ๅธณ่™Ÿ" -#: src/view/com/posts/FollowingEmptyState.tsx:74 -#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„่‡ช่จ‚ๅ‹•ๆ…‹ๆบ" -#: src/view/screens/Feeds.tsx:821 +#: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„ๅ‹•ๆ…‹ๆบ" @@ -1446,11 +1455,11 @@ msgstr "็ถฒๅŸŸๅทฒ้ฉ—่ญ‰๏ผ" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/forms/DateField/index.tsx:74 #: src/components/forms/DateField/index.tsx:80 -#: src/screens/Onboarding/StepProfile/index.tsx:321 -#: src/screens/Onboarding/StepProfile/index.tsx:324 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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:243 +#: src/view/com/modals/AddAppPasswords.tsx:242 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 @@ -1525,6 +1534,11 @@ msgstr "ไพ‹ๅฆ‚๏ผšๅคšๆฌกๅผต่ฒผๅปฃๅ‘Š็š„็”จๆˆถใ€‚" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "ๆฏๅ€‹้‚€่ซ‹็ขผๅƒ…่ƒฝไฝฟ็”จไธ€ๆฌกใ€‚ๆ‚จๅฐ‡ๅฎšๆœŸๆ”ถๅˆฐๆ›ดๅคš็š„้‚€่ซ‹็ขผใ€‚" +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "" + #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" @@ -1548,8 +1562,9 @@ msgstr "็ทจ่ผฏๅˆ—่กจ่ฉณๆƒ…" msgid "Edit Moderation List" msgstr "็ทจ่ผฏๅ…งๅฎน็ฎก็†ๅˆ—่กจ" -#: src/Navigation.tsx:263 -#: src/view/screens/Feeds.tsx:495 +#: src/Navigation.tsx:269 +#: src/view/screens/Feeds.tsx:398 +#: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "็ทจ่ผฏๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -1559,19 +1574,19 @@ msgid "Edit my profile" msgstr "็ทจ่ผฏๆˆ‘็š„ๅ€‹ไบบๆช”ๆกˆ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:171 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 msgid "Edit profile" msgstr "็ทจ่ผฏๅ€‹ไบบๆช”ๆกˆ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:174 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 msgid "Edit Profile" msgstr "็ทจ่ผฏๅ€‹ไบบๆช”ๆกˆ" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 -msgid "Edit Saved Feeds" -msgstr "็ทจ่ผฏๅทฒๅ„ฒๅญ˜ไน‹ๅ‹•ๆ…‹ๆบ" +#~ msgid "Edit Saved Feeds" +#~ msgstr "็ทจ่ผฏๅทฒๅ„ฒๅญ˜ไน‹ๅ‹•ๆ…‹ๆบ" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1624,8 +1639,8 @@ msgid "Embed HTML code" msgstr "ๅตŒๅ…ฅ HTML ็จ‹ๅผ็ขผ" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:327 -#: src/view/com/util/forms/PostDropdownBtn.tsx:329 +#: src/view/com/util/forms/PostDropdownBtn.tsx:314 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Embed post" msgstr "ๅตŒๅ…ฅ่ฒผๆ–‡" @@ -1668,7 +1683,7 @@ msgstr "ๅ•Ÿ็”จ" msgid "End of feed" msgstr "ๅทฒ็ถ“ๅˆฐๅบ•้ƒจๅ•ฆ๏ผ" -#: src/view/com/modals/AddAppPasswords.tsx:161 +#: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "่ผธๅ…ฅๆญคๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ็š„ๅ็จฑ" @@ -1676,8 +1691,8 @@ msgstr "่ผธๅ…ฅๆญคๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ็š„ๅ็จฑ" msgid "Enter a password" msgstr "่ผธๅ…ฅๅฏ†็ขผ" +#: src/components/dialogs/MutedWords.tsx:99 #: src/components/dialogs/MutedWords.tsx:100 -#: src/components/dialogs/MutedWords.tsx:101 msgid "Enter a word or tag" msgstr "่ผธๅ…ฅๆ–‡ๅญ—ๆˆ–ๆจ™็ฑค" @@ -1727,7 +1742,7 @@ msgid "Error receiving captcha response." msgstr "Captcha ็ตฆๅ‡บไบ†้Œฏ่ชค็š„ๅ›žๆ‡‰ใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:192 -#: src/view/screens/Search/Search.tsx:115 +#: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "้Œฏ่ชค๏ผš" @@ -1815,7 +1830,7 @@ msgstr "ๅค–้ƒจๅช’้ซ”" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ๅค–้ƒจๅช’้ซ”ๅฏ่ƒฝๅ…่จฑ็ถฒ็ซ™ๆ”ถ้›†ๆœ‰้—œๆ‚จๅ’Œๆ‚จ่ฃ็ฝฎ็š„่ณ‡ๆ–™ใ€‚ๅœจๆ‚จๆŒ‰ไธ‹ใ€Œๆ’ญๆ”พใ€ๆŒ‰้ˆ•ไน‹ๅ‰๏ผŒไธๆœƒๅ‚ณ้€ๆˆ–่ซ‹ๆฑ‚ไปปไฝ•่ณ‡ๆ–™ใ€‚" -#: src/Navigation.tsx:282 +#: src/Navigation.tsx:288 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:679 msgid "External Media Preferences" @@ -1825,8 +1840,8 @@ msgstr "ๅค–้ƒจๅช’้ซ”ๅๅฅฝ" msgid "External media settings" msgstr "ๅค–้ƒจๅช’้ซ”่จญๅฎš" -#: src/view/com/modals/AddAppPasswords.tsx:120 -#: src/view/com/modals/AddAppPasswords.tsx:124 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "ๅปบ็ซ‹ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผๅคฑๆ•—ใ€‚" @@ -1838,7 +1853,7 @@ msgstr "็„กๆณ•ๅปบ็ซ‹ๅˆ—่กจใ€‚่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšไธฆ้‡่ฉฆใ€‚" msgid "Failed to delete message" msgstr "็„กๆณ•ๅˆช้™ค่จŠๆฏ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +#: src/view/com/util/forms/PostDropdownBtn.tsx:149 msgid "Failed to delete post, please try again" msgstr "็„กๆณ•ๅˆช้™ค่ฒผๆ–‡๏ผŒ่ซ‹้‡่ฉฆ" @@ -1859,7 +1874,7 @@ msgstr "็„กๆณ•ๅ„ฒๅญ˜ๅœ–็‰‡๏ผš{0}" msgid "Failed to send" msgstr "็„กๆณ•ๅ‚ณ้€" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 +#: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "็„กๆณ•ๆไบค็”ณ่จด๏ผŒ่ซ‹้‡่ฉฆใ€‚" @@ -1869,30 +1884,29 @@ msgstr "็„กๆณ•ๆไบค็”ณ่จด๏ผŒ่ซ‹้‡่ฉฆใ€‚" msgid "Failed to update settings" msgstr "็„กๆณ•ๆ›ดๆ–ฐ่จญๅฎš" -#: src/Navigation.tsx:203 +#: src/Navigation.tsx:209 msgid "Feed" msgstr "ๅ‹•ๆ…‹" -#: src/view/com/feeds/FeedSourceCard.tsx:230 +#: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} ๅปบ็ซ‹็š„ๅ‹•ๆ…‹ๆบ" -#: src/view/screens/Feeds.tsx:736 +#: src/view/screens/Feeds.tsx:709 msgid "Feed offline" msgstr "ๅ‹•ๆ…‹ๆบๅทฒ้›ข็ทš" #: src/view/shell/desktop/RightNav.tsx:66 -#: src/view/shell/Drawer.tsx:344 +#: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "ๆ„่ฆ‹ๅ›ž้ฅ‹" -#: src/Navigation.tsx:511 -#: src/view/screens/Feeds.tsx:480 -#: src/view/screens/Feeds.tsx:596 +#: src/view/screens/Feeds.tsx:463 +#: src/view/screens/Feeds.tsx:570 #: src/view/screens/Profile.tsx:197 #: src/view/shell/desktop/LeftNav.tsx:367 -#: src/view/shell/Drawer.tsx:492 #: src/view/shell/Drawer.tsx:493 +#: src/view/shell/Drawer.tsx:494 msgid "Feeds" msgstr "ๅ‹•ๆ…‹ๆบ" @@ -1917,12 +1931,12 @@ msgid "Finalizing" msgstr "ๆญฃๅœจๅฎŒๆˆ" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 -#: src/view/com/posts/FollowingEmptyState.tsx:57 -#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "ๅฐ‹ๆ‰พไธ€ไบ›ๅธณ่™Ÿไพ†่ทŸ้šจ" -#: src/view/screens/Search/Search.tsx:469 +#: src/view/screens/Search/Search.tsx:470 msgid "Find posts and users on Bluesky" msgstr "ๅœจ Bluesky ไธŠๅฐ‹ๆ‰พ่ฒผๆ–‡ๅ’Œ็”จๆˆถ" @@ -1953,7 +1967,7 @@ msgstr "ๅž‚็›ด็ฟป่ฝ‰" #: src/components/ProfileHoverCard/index.web.tsx:412 #: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -1964,7 +1978,7 @@ msgctxt "action" msgid "Follow" msgstr "่ทŸ้šจ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "่ทŸ้šจ {0}" @@ -1982,6 +1996,10 @@ msgstr "่ทŸ้šจๅธณ่™Ÿ" msgid "Follow Back" msgstr "ๅ›ž่ฟฝ่นค" +#: src/components/KnownFollowers.tsx:169 +msgid "Followed by" +msgstr "" + #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "็”ฑ {0} ่ทŸ้šจ" @@ -2003,18 +2021,27 @@ msgstr "ๅทฒ่ทŸ้šจๆ‚จ" msgid "Followers" msgstr "่ทŸ้šจ่€…" +#: src/Navigation.tsx:177 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:242 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:683 +#: src/view/screens/Feeds.tsx:656 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "่ทŸ้šจไธญ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 msgid "Following {0}" msgstr "ๅทฒ่ทŸ้šจ {0}" @@ -2026,9 +2053,7 @@ msgstr "ๅทฒ่ทŸ้šจ {name}" msgid "Following feed preferences" msgstr "ใ€ŒFollowingใ€ๅ‹•ๆ…‹ๆบๅๅฅฝ" -#: src/Navigation.tsx:269 -#: src/view/com/home/HomeHeaderLayout.web.tsx:64 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:87 +#: src/Navigation.tsx:275 #: src/view/screens/PreferencesFollowingFeed.tsx:103 #: src/view/screens/Settings/index.tsx:582 msgid "Following Feed Preferences" @@ -2050,7 +2075,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:233 +#: src/view/com/modals/AddAppPasswords.tsx:232 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 "็‚บไบ†ไฟ่ญทๆ‚จ็š„ๅธณ่™Ÿๅฎ‰ๅ…จ๏ผŒๆ‚จๅฐ‡็„กๆณ•ๅ†ๆฌกๆŸฅ็œ‹ๆญคๅ…งๅฎนใ€‚ๅฆ‚ๆžœๆ‚จไธŸๅคฑไบ†ๆญคๅฏ†็ขผ๏ผŒๆ‚จๅฐ‡้œ€่ฆๅ†็”ข็”Ÿไธ€ๅ€‹ๆ–ฐ็š„ๅฏ†็ขผใ€‚" @@ -2093,7 +2118,7 @@ msgstr "้–‹ๅง‹" msgid "Get Started" msgstr "้–‹ๅง‹" -#: src/screens/Onboarding/StepProfile/index.tsx:224 +#: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "็‚บๆ‚จ็š„ๅ€‹ไบบๆช”ๆกˆๅขžๆทปๆ–ฐ้ก" @@ -2121,9 +2146,9 @@ msgstr "่ฟ”ๅ›ž" msgid "Go Back" msgstr "่ฟ”ๅ›ž" -#: src/components/dms/ReportDialog.tsx:152 +#: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:77 -#: src/components/ReportDialog/SubmitView.tsx:105 +#: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/index.tsx:187 @@ -2138,7 +2163,7 @@ msgstr "ๅ‰ๅพ€้ฆ–้ " msgid "Go Home" msgstr "ๅ‰ๅพ€้ฆ–้ " -#: src/screens/Messages/List/ChatListItem.tsx:208 +#: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" msgstr "่ˆ‡ {0} ๅฐ่ฉฑ" @@ -2171,7 +2196,7 @@ msgstr "่งธ่ฆบ" msgid "Harassment, trolling, or intolerance" msgstr "้จทๆ“พใ€ๆƒกไฝœๅЇๆˆ–ๅ…ถไป–็„กๆณ•ๅฎนๅฟ็š„่กŒ็‚บ" -#: src/Navigation.tsx:297 +#: src/Navigation.tsx:303 msgid "Hashtag" msgstr "ๆจ™็ฑค" @@ -2184,15 +2209,15 @@ msgid "Having trouble?" msgstr "้‡ๅˆฐๅ•้กŒ๏ผŸ" #: src/view/shell/desktop/RightNav.tsx:95 -#: src/view/shell/Drawer.tsx:354 +#: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "ๅนซๅŠฉ" -#: src/screens/Onboarding/StepProfile/index.tsx:227 +#: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "้€้ŽไธŠๅ‚ณๅœ–็‰‡ๆˆ–ๅปบ็ซ‹้ ญๅƒไพ†ๅนซๅŠฉไบบๅ€‘็Ÿฅ้“ๆ‚จไธๆ˜ฏๆฉŸๅ™จไบบใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:204 +#: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." msgstr "้€™ๆ˜ฏๆ‚จ็š„ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผใ€‚" @@ -2203,7 +2228,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:445 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Hide" msgstr "้šฑ่—" @@ -2212,8 +2237,8 @@ msgctxt "action" msgid "Hide" msgstr "้šฑ่—" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:377 +#: src/view/com/util/forms/PostDropdownBtn.tsx:379 msgid "Hide post" msgstr "้šฑ่—่ฒผๆ–‡" @@ -2222,7 +2247,7 @@ msgstr "้šฑ่—่ฒผๆ–‡" msgid "Hide the content" msgstr "้šฑ่—ๅ…งๅฎน" -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:429 msgid "Hide this post?" msgstr "้šฑ่—้€™ๅ‰‡่ฒผๆ–‡๏ผŸ" @@ -2230,23 +2255,23 @@ msgstr "้šฑ่—้€™ๅ‰‡่ฒผๆ–‡๏ผŸ" msgid "Hide user list" msgstr "้šฑ่—็”จๆˆถๅˆ—่กจ" -#: src/view/com/posts/FeedErrorMessage.tsx:118 +#: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒ่ˆ‡ๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จ้€ฃ็ทšๆ™‚็™ผ็”Ÿไบ†ๆŸ็จฎๅ•้กŒใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:106 +#: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จไผผไนŽ่จญๅฎš้Œฏ่ชคใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:112 +#: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จไผผไนŽๅทฒ้›ข็ทšใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:109 +#: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จ็ตฆๅ‡บไบ†้Œฏ่ชค็š„ๅ›žๆ‡‰ใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:103 +#: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็„กๆณ•ๆ‰พๅˆฐ้€™ๅ€‹ๅ‹•ๆ…‹ๆบ๏ผŒๅฎƒๅฏ่ƒฝๅทฒ่ขซๅˆช้™คใ€‚" @@ -2258,11 +2283,11 @@ msgstr "ๆŠฑๆญ‰๏ผŒ็œ‹่ตทไพ†ๆˆ‘ๅ€‘ๅœจ่ผ‰ๅ…ฅ้€™ไบ›่ณ‡ๆ–™ๆ™‚้‡ๅˆฐไบ†ๅ•้กŒ๏ผŒ่ซ‹ๅƒ msgid "Hmmmm, we couldn't load that moderation service." msgstr "ๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็„กๆณ•่ผ‰ๅ…ฅ่ฉฒๅ…งๅฎน็ฎก็†ๆœๅ‹™ใ€‚" -#: src/Navigation.tsx:501 +#: src/Navigation.tsx:489 #: src/view/shell/bottom-bar/BottomBar.tsx:159 #: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/Drawer.tsx:424 #: src/view/shell/Drawer.tsx:425 +#: src/view/shell/Drawer.tsx:426 msgid "Home" msgstr "้ฆ–้ " @@ -2316,7 +2341,7 @@ msgstr "ๅฆ‚ๆžœๆ นๆ“šๆ‚จๆ‰€ๅœจๅœ‹ๅฎถ็š„ๆณ•ๅพ‹๏ผŒๆ‚จๅฐšๆœชๆˆๅนด๏ผŒๅ‰‡ๆ‚จ็š„็ˆถๆฏ msgid "If you delete this list, you won't be able to recover it." msgstr "ๅฆ‚ๆžœๅˆช้™ค้€™ๅ€‹ๅˆ—่กจ๏ผŒๆ‚จๅฐ‡็„กๆณ•ๆขๅพฉๅฎƒใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:420 msgid "If you remove this post, you won't be able to recover it." msgstr "ๅฆ‚ๆžœๅˆช้™ค้€™ๅ‰‡่ฒผๆ–‡๏ผŒๆ‚จๅฐ‡็„กๆณ•ๆขๅพฉๅฎƒใ€‚" @@ -2356,7 +2381,7 @@ msgstr "่ผธๅ…ฅ็™ผ้€ๅˆฐๆ‚จ้›ปๅญ้ƒตไปถๅœฐๅ€็š„้‡่จญ็ขผไปฅ้‡่จญๅฏ†็ขผ" msgid "Input confirmation code for account deletion" msgstr "่ผธๅ…ฅๅˆช้™คๅธณ่™Ÿ็š„้ฉ—่ญ‰็ขผ" -#: src/view/com/modals/AddAppPasswords.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:174 msgid "Input name for app password" msgstr "่ผธๅ…ฅๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผๅ็จฑ" @@ -2401,7 +2426,7 @@ msgstr "็‚บๆ‚จ้š†้‡ไป‹็ดนใ€Œ็งไบบ่จŠๆฏใ€" msgid "Invalid 2FA confirmation code." msgstr "็„กๆ•ˆ็š„้›™้‡้ฉ—่ญ‰็ขผใ€‚" -#: src/view/com/post-thread/PostThreadItem.tsx:240 +#: src/view/com/post-thread/PostThreadItem.tsx:235 msgid "Invalid or unsupported post record" msgstr "็„กๆ•ˆๆˆ–ไธๆ”ฏๆด็š„่ฒผๆ–‡็ด€้Œ„" @@ -2453,11 +2478,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:80 +#: src/components/moderation/LabelsOnMeDialog.tsx:79 msgid "Labels on your account" msgstr "ๆ‚จๅธณ่™ŸไธŠ็š„ๆจ™่จ˜" -#: src/components/moderation/LabelsOnMeDialog.tsx:82 +#: src/components/moderation/LabelsOnMeDialog.tsx:81 msgid "Labels on your content" msgstr "ๆ‚จๅ…งๅฎนไธŠ็š„ๆจ™่จ˜" @@ -2469,7 +2494,7 @@ msgstr "่ชž่จ€้ธๆ“‡" msgid "Language settings" msgstr "่ชž่จ€่จญๅฎš" -#: src/Navigation.tsx:151 +#: src/Navigation.tsx:150 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "่ชž่จ€่จญๅฎš" @@ -2479,7 +2504,7 @@ msgid "Languages" msgstr "่ชž่จ€" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:376 +#: src/view/screens/Search/Search.tsx:377 msgid "Latest" msgstr "ๆœ€ๆ–ฐ" @@ -2557,8 +2582,8 @@ msgid "Like this feed" msgstr "ๅฐ้€™ๅ€‹ๅ‹•ๆ…‹ๆบๆŒ‰ๅ–œๆญก" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:208 -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:214 +#: src/Navigation.tsx:219 msgid "Liked by" msgstr "ๆŒ‰ๅ–œๆญก็š„็”จๆˆถ" @@ -2580,11 +2605,11 @@ msgstr "ๅทฒๅ–œๆญกๆ‚จ็š„่ฒผๆ–‡" msgid "Likes" msgstr "ๅ–œๆญก" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Likes on this post" msgstr "้€™ๆข่ฒผๆ–‡็š„ๅ–œๆญกๆ•ธ" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:183 msgid "List" msgstr "ๅˆ—่กจ" @@ -2596,7 +2621,7 @@ msgstr "ๅˆ—่กจ้ ญๅƒ" msgid "List blocked" msgstr "ๅˆ—่กจๅทฒๅฐ้Ž–" -#: src/view/com/feeds/FeedSourceCard.tsx:232 +#: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "ๅˆ—่กจ็”ฑ {0} ๅปบ็ซ‹" @@ -2620,12 +2645,12 @@ msgstr "ๅทฒ่งฃ้™คๅฐ้Ž–็š„ๅˆ—่กจ" msgid "List unmuted" msgstr "ๅทฒ่งฃ้™ค้œ้Ÿณ็š„ๅˆ—่กจ" -#: src/Navigation.tsx:121 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:192 #: src/view/screens/Profile.tsx:198 #: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:508 #: src/view/shell/Drawer.tsx:509 +#: src/view/shell/Drawer.tsx:510 msgid "Lists" msgstr "ๅˆ—่กจ" @@ -2633,7 +2658,7 @@ msgstr "ๅˆ—่กจ" msgid "Lists blocking this user:" msgstr "ๅฐ้Ž–ๆญค็”จๆˆถ็š„ๅˆ—่กจ๏ผš" -#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "่ผ‰ๅ…ฅๆ–ฐ็š„้€š็Ÿฅ" @@ -2648,7 +2673,7 @@ msgstr "่ผ‰ๅ…ฅๆ–ฐ็š„่ฒผๆ–‡" msgid "Loading..." msgstr "่ผ‰ๅ…ฅไธญโ€ฆ" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:234 msgid "Log" msgstr "ๆ—ฅ่ชŒ" @@ -2684,7 +2709,7 @@ msgstr "็œ‹่ตทไพ†ๅƒๆ˜ฏ XXXXX-XXXXX" msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." msgstr "ๆ‚จไผผไนŽๅฐšๆœชๅ„ฒๅญ˜ไปปไฝ•ๅ‹•ๆ…‹ๆบ๏ผๅƒ่€ƒๆˆ‘ๅ€‘็š„ๅปบ่ญฐๆˆ–็€่ฆฝไธ‹้ข็š„ๆ›ดๅคšๅ…งๅฎนใ€‚" -#: src/screens/Home/NoFeedsPinned.tsx:96 +#: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" msgstr "็œ‹่ตทไพ†ๆ‚จๅทฒๅ–ๆถˆ้‡˜้ธๆ‰€ๆœ‰ๅ‹•ๆ…‹ๆบใ€‚ไฝ†ไธ็”จๆ“”ๅฟƒ๏ผŒๆ‚จๅฏไปฅๅœจไธ‹้ขๆ–ฐๅขžไธ€ไบ›๐Ÿ˜„" @@ -2696,7 +2721,7 @@ msgstr "ๆ‚จ็œ‹่ตทไพ†้œ€่ฆใ€ŒFollowingใ€ๅ‹•ๆ…‹ๆบ๏ผŒ<0>้ปž้ธ้€™่ฃกไพ†ๆ–ฐๅขžใ€‚ msgid "Make sure this is where you intend to go!" msgstr "่ซ‹็ขบ่ช้€™ๆ˜ฏๆ‚จๆƒณ่ฆๅŽป็š„็š„ๅœฐๆ–น๏ผ" -#: src/components/dialogs/MutedWords.tsx:83 +#: src/components/dialogs/MutedWords.tsx:82 msgid "Manage your muted words and tags" msgstr "็ฎก็†ๆ‚จ้œ้Ÿณ็š„ๆ–‡ๅญ—ๅ’Œๆจ™็ฑค" @@ -2718,8 +2743,8 @@ msgstr "่ขซๆๅŠ็š„็”จๆˆถ" msgid "Mentioned users" msgstr "่ขซๆๅŠ็š„็”จๆˆถ" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:713 +#: src/view/com/util/ViewHeader.tsx:91 +#: src/view/screens/Search/Search.tsx:714 msgid "Menu" msgstr "้ธๅ–ฎ" @@ -2728,11 +2753,11 @@ msgid "Message {0}" msgstr "็ตฆ {0} ๅ‚ณ้€่จŠๆฏ" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/List/ChatListItem.tsx:155 msgid "Message deleted" msgstr "่จŠๆฏๅทฒๅˆช้™ค" -#: src/view/com/posts/FeedErrorMessage.tsx:201 +#: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "ไพ†่‡ชไผบๆœๅ™จ็š„่จŠๆฏ๏ผš{0}" @@ -2749,7 +2774,7 @@ msgstr "่จŠๆฏๅคช้•ทไบ†" msgid "Message settings" msgstr "่จŠๆฏ่จญๅฎš" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -2760,7 +2785,7 @@ msgstr "่จŠๆฏ" msgid "Misleading Account" msgstr "่ชคๅฐŽๆ€งๅธณ่™Ÿ" -#: src/Navigation.tsx:126 +#: src/Navigation.tsx:125 #: src/screens/Moderation/index.tsx:104 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" @@ -2797,7 +2822,7 @@ msgstr "ๅ…งๅฎน็ฎก็†ๅˆ—่กจๅทฒๆ›ดๆ–ฐ" msgid "Moderation lists" msgstr "ๅ…งๅฎน็ฎก็†ๅˆ—่กจ" -#: src/Navigation.tsx:131 +#: src/Navigation.tsx:130 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "ๅ…งๅฎน็ฎก็†ๅˆ—่กจ" @@ -2806,7 +2831,7 @@ msgstr "ๅ…งๅฎน็ฎก็†ๅˆ—่กจ" msgid "Moderation settings" msgstr "ๅ…งๅฎน็ฎก็†่จญๅฎš" -#: src/Navigation.tsx:223 +#: src/Navigation.tsx:229 msgid "Moderation states" msgstr "ๅ…งๅฎน็ฎก็†็‹€ๆ…‹" @@ -2819,7 +2844,7 @@ msgstr "ๅ…งๅฎน็ฎก็†ๅทฅๅ…ท" msgid "Moderator has chosen to set a general warning on the content." msgstr "ๅ…งๅฎน็ฎก็†่€…ๅทฒๅฐ‡ๆญคๅ…งๅฎนๆจ™่จ˜็‚บๆ™ฎ้€š่ญฆๅ‘Šใ€‚" -#: src/view/com/post-thread/PostThreadItem.tsx:572 +#: src/view/com/post-thread/PostThreadItem.tsx:566 msgid "More" msgstr "ๆ›ดๅคš" @@ -2861,11 +2886,11 @@ msgstr "ๅฐ‡ๆ‰€ๆœ‰ {displayTag} ่ฒผๆ–‡้œ้Ÿณ" msgid "Mute conversation" msgstr "้œ้Ÿณๅฐ่ฉฑ" -#: src/components/dialogs/MutedWords.tsx:149 +#: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" msgstr "ๅƒ…้œ้Ÿณๆจ™็ฑค" -#: src/components/dialogs/MutedWords.tsx:134 +#: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" msgstr "้œ้Ÿณๆ–‡ๅญ—ๅ’Œๆจ™็ฑค" @@ -2877,21 +2902,21 @@ msgstr "้œ้Ÿณๅˆ—่กจ" msgid "Mute these accounts?" msgstr "้œ้Ÿณ้€™ไบ›ๅธณ่™Ÿ๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:126 msgid "Mute this word in post text and tags" msgstr "ๅœจ่ฒผๆ–‡ๅ…งๅฎนๅ’Œ่ฉฑ้กŒๆจ™็ฑคไธญ้šฑ่—่ฉฒๆ–‡ๅญ—" -#: src/components/dialogs/MutedWords.tsx:142 +#: src/components/dialogs/MutedWords.tsx:141 msgid "Mute this word in tags only" msgstr "ๅƒ…ๅœจ่ฉฑ้กŒๆจ™็ฑคไธญ้šฑ่—่ฉฒๆ–‡ๅญ—" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:371 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:358 msgid "Mute thread" msgstr "้œ้Ÿณ่จŽ่ซ–ไธฒ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:381 -#: src/view/com/util/forms/PostDropdownBtn.tsx:383 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Mute words & tags" msgstr "้œ้Ÿณๆ–‡ๅญ—ๅ’Œๆจ™็ฑค" @@ -2903,7 +2928,7 @@ msgstr "ๅทฒ้œ้Ÿณ" msgid "Muted accounts" msgstr "ๅทฒ้œ้Ÿณๅธณ่™Ÿ" -#: src/Navigation.tsx:136 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "ๅทฒ้œ้Ÿณๅธณ่™Ÿ" @@ -2929,7 +2954,7 @@ msgstr "ๅฐ้Ž–ๆ˜ฏ็งไบบ็š„ใ€‚่ขซๅฐ้Ž–็š„ๅธณ่™Ÿๅฏไปฅ่ˆ‡ๆ‚จไบ’ๅ‹•๏ผŒไฝ†ๆ‚จๅฐ‡็„ก msgid "My Birthday" msgstr "ๆˆ‘็š„็”Ÿๆ—ฅ" -#: src/view/screens/Feeds.tsx:795 +#: src/view/screens/Feeds.tsx:768 msgid "My Feeds" msgstr "ๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -2945,7 +2970,7 @@ msgstr "ๆˆ‘ๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบ" msgid "My Saved Feeds" msgstr "ๆˆ‘ๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบ" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "ๅ็จฑ" @@ -3022,8 +3047,8 @@ msgctxt "action" msgid "New post" msgstr "ๆ–ฐ่ฒผๆ–‡" -#: src/view/screens/Feeds.tsx:627 -#: src/view/screens/Notifications.tsx:177 +#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 #: src/view/screens/ProfileList.tsx:201 @@ -3088,7 +3113,7 @@ msgstr "็„ก DNS ๆŽงๅˆถๅฐ" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "ๆœชๆ‰พๅˆฐ็ฒพ้ธ GIF๏ผŒTenor ๅฏ่ƒฝ็™ผ็”Ÿๅ•้กŒใ€‚" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:112 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 msgid "No longer following {0}" msgstr "ไธๅ†่ทŸ้šจ {0}" @@ -3096,7 +3121,7 @@ msgstr "ไธๅ†่ทŸ้šจ {0}" msgid "No longer than 253 characters" msgstr "ไธ่ถ…้Ž 253 ๅ€‹ๅญ—็ฌฆ" -#: src/screens/Messages/List/ChatListItem.tsx:105 +#: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" msgstr "้‚„ๆฒ’ๆœ‰่จŠๆฏ" @@ -3104,7 +3129,7 @@ msgstr "้‚„ๆฒ’ๆœ‰่จŠๆฏ" msgid "No more conversations to show" msgstr "ๅทฒ็ถ“ๆฒ’ๆœ‰ๅฐ่ฉฑๅ•ฆ๏ผ" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "้‚„ๆฒ’ๆœ‰้€š็Ÿฅ๏ผ" @@ -3115,6 +3140,10 @@ msgstr "้‚„ๆฒ’ๆœ‰้€š็Ÿฅ๏ผ" msgid "No one" msgstr "ๆฒ’ๆœ‰ไบบ" +#: src/screens/Profile/Sections/Feed.tsx:59 +msgid "No posts yet." +msgstr "" + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 msgid "No result" @@ -3128,13 +3157,13 @@ msgstr "ๆฒ’ๆœ‰็ตๆžœ" msgid "No results found" msgstr "ๆœชๆ‰พๅˆฐ็ตๆžœ" -#: src/view/screens/Feeds.tsx:556 +#: src/view/screens/Feeds.tsx:530 msgid "No results found for \"{query}\"" msgstr "ๆœชๆ‰พๅˆฐใ€Œ{query}ใ€็š„็ตๆžœ" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:296 -#: src/view/screens/Search/Search.tsx:335 +#: src/view/screens/Search/Search.tsx:297 +#: src/view/screens/Search/Search.tsx:336 msgid "No results found for {query}" msgstr "ๆœชๆ‰พๅˆฐ {query} ็š„็ตๆžœ" @@ -3165,7 +3194,7 @@ msgstr "้‚„ๆฒ’ๆœ‰ไบบๆŒ‰ๅ–œๆญก๏ผŒไนŸ่จฑๆ‚จๆ‡‰่ฉฒๆˆ็‚บ็ฌฌไธ€ๅ€‹๏ผ" msgid "Non-sexual Nudity" msgstr "้ž่‰ฒๆƒ…ๅ…งๅฎน่ฃธ้ซ”" -#: src/Navigation.tsx:116 +#: src/Navigation.tsx:115 #: src/view/screens/Profile.tsx:100 msgid "Not Found" msgstr "ๆœชๆ‰พๅˆฐ" @@ -3176,7 +3205,7 @@ msgid "Not right now" msgstr "ๆšซๆ™‚ไธ้œ€่ฆ" #: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:459 +#: src/view/com/util/forms/PostDropdownBtn.tsx:446 #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 msgid "Note about sharing" msgstr "้—œๆ–ผๅˆ†ไบซ็š„ๆณจๆ„ไบ‹้ …" @@ -3197,13 +3226,13 @@ msgstr "้€š็Ÿฅ้Ÿณๆ•ˆ" msgid "Notification Sounds" msgstr "้€š็Ÿฅ้Ÿณๆ•ˆ" -#: src/Navigation.tsx:516 -#: src/view/screens/Notifications.tsx:126 -#: src/view/screens/Notifications.tsx:154 +#: src/Navigation.tsx:499 +#: 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:350 -#: src/view/shell/Drawer.tsx:456 #: src/view/shell/Drawer.tsx:457 +#: src/view/shell/Drawer.tsx:458 msgid "Notifications" msgstr "้€š็Ÿฅ" @@ -3249,11 +3278,11 @@ msgstr "ๆœ€่ˆŠ็š„ๅ›ž่ฆ†ๅ„ชๅ…ˆ" msgid "Onboarding reset" msgstr "้‡ๆ–ฐ้–‹ๅง‹ๅผ•ๅฐŽๆต็จ‹" -#: src/view/com/composer/Composer.tsx:488 +#: src/view/com/composer/Composer.tsx:503 msgid "One or more images is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผตๅœ–็‰‡็ผบๅคฑไบ†ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" -#: src/screens/Onboarding/StepProfile/index.tsx:116 +#: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "ๅƒ…ๆ”ฏๆด .jpg ๆˆ– .png ๆ ผๅผ็š„ๅœ–็‰‡" @@ -3283,17 +3312,17 @@ msgstr "้–‹ๅ•Ÿ" msgid "Open {name} profile shortcut menu" msgstr "้–‹ๅ•Ÿ {name} ๅ€‹ไบบๆช”ๆกˆๅฟซๆท้ธๅ–ฎ" -#: src/screens/Onboarding/StepProfile/index.tsx:276 +#: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "้–‹ๅ•Ÿ้ ญๅƒๅปบ็ซ‹ๅทฅๅ…ท" -#: src/screens/Messages/List/ChatListItem.tsx:214 -#: src/screens/Messages/List/ChatListItem.tsx:215 +#: src/screens/Messages/List/ChatListItem.tsx:219 +#: src/screens/Messages/List/ChatListItem.tsx:220 msgid "Open conversation options" msgstr "้–‹ๅ•Ÿๅฐ่ฉฑ้ธ้ …" -#: src/view/com/composer/Composer.tsx:600 -#: src/view/com/composer/Composer.tsx:601 +#: src/view/com/composer/Composer.tsx:613 +#: src/view/com/composer/Composer.tsx:614 msgid "Open emoji picker" msgstr "้–‹ๅ•Ÿ่กจๆƒ…็ฌฆ่™Ÿ้ธๆ“‡ๅ™จ" @@ -3313,11 +3342,11 @@ msgstr "้–‹ๅ•Ÿ่จŠๆฏ้ธ้ …" msgid "Open muted words and tags settings" msgstr "้–‹ๅ•Ÿ้œ้Ÿณๆ–‡ๅญ—ๅ’Œๆจ™็ฑค่จญๅฎš" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:52 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "้–‹ๅ•ŸๅฐŽ่ฆฝ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:237 msgid "Open post options menu" msgstr "้–‹ๅ•Ÿ่ฒผๆ–‡้ธ้ …้ธๅ–ฎ" @@ -3422,8 +3451,8 @@ msgstr "้–‹ๅ•Ÿๅฏ†็ขผ้‡่จญ่กจๅ–ฎ" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 -msgid "Opens screen to edit Saved Feeds" -msgstr "้–‹ๅ•Ÿ็ทจ่ผฏๅทฒๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบไน‹็•ซ้ข" +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "้–‹ๅ•Ÿ็ทจ่ผฏๅทฒๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบไน‹็•ซ้ข" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" @@ -3463,8 +3492,8 @@ msgstr "้–‹ๅ•Ÿ้€™ๅ€‹ๅ€‹ไบบๆช”ๆกˆ" msgid "Option {0} of {numItems}" msgstr "{0} ้ธ้ …๏ผŒๅ…ฑ {numItems} ๅ€‹" -#: src/components/dms/ReportDialog.tsx:181 -#: src/components/ReportDialog/SubmitView.tsx:163 +#: src/components/dms/ReportDialog.tsx:183 +#: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" msgstr "ๅœจไปฅไธ‹ๆไพ›้กๅค–่จŠๆฏ๏ผˆๅฏ้ธ๏ผ‰๏ผš" @@ -3528,15 +3557,15 @@ msgstr "ๅฏ†็ขผๅทฒๆ›ดๆ–ฐ๏ผ" msgid "Pause" msgstr "ๆšซๅœ" -#: src/view/screens/Search/Search.tsx:386 +#: src/view/screens/Search/Search.tsx:387 msgid "People" msgstr "็”จๆˆถ" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:170 msgid "People followed by @{0}" msgstr "่ขซ @{0} ่ทŸ้šจ็š„ไบบ" -#: src/Navigation.tsx:164 +#: src/Navigation.tsx:163 msgid "People following @{0}" msgstr "่ทŸ้šจ @{0} ็š„ไบบ" @@ -3610,15 +3639,15 @@ msgstr "่ซ‹ๅฎŒๆˆ Captcha ้ฉ—่ญ‰ใ€‚" msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "ๆ›ดๆ”นๅ‰่ซ‹ๅ…ˆ็ขบ่ชๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€ใ€‚้€™ๆ˜ฏ้›ปๅญ้ƒตไปถๆ›ดๆ–ฐๅทฅๅ…ท็š„่‡จๆ™‚่ฆๆฑ‚๏ผŒๆญค้™ๅˆถๅพˆๅฟซๅฐฑๆœƒ่ขซ็งป้™คใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:95 +#: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "่ซ‹่ผธๅ…ฅๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ็š„ๅ็จฑใ€‚ไธๅ…่จฑๅŒ…ๅซไปปไฝ•็ฉบๆ ผใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:151 +#: src/view/com/modals/AddAppPasswords.tsx:150 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "่ซ‹่ผธๅ…ฅๆญคๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ็š„ๅ”ฏไธ€ๅ็จฑ๏ผŒๆˆ–ไฝฟ็”จๆˆ‘ๅ€‘ๆไพ›็š„้šจๆฉŸ็”Ÿๆˆๅ็จฑใ€‚" -#: src/components/dialogs/MutedWords.tsx:68 +#: src/components/dialogs/MutedWords.tsx:67 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "่ซ‹่ผธๅ…ฅๆœ‰ๆ•ˆ็š„ๆ–‡ๅญ—ๆˆ–ๆจ™็ฑค้€ฒ่กŒ้œ้Ÿณ" @@ -3630,7 +3659,7 @@ msgstr "่ซ‹่ผธๅ…ฅๆ‚จ็š„้›ปๅญ้ƒตไปถใ€‚" msgid "Please enter your password as well:" msgstr "่ซ‹่ผธๅ…ฅๆ‚จ็š„ๅฏ†็ขผ๏ผš" -#: src/components/moderation/LabelsOnMeDialog.tsx:258 +#: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "่ซ‹่งฃ้‡‹ๆ‚จ่ช็‚บ {0} ไธ่ฉฒๅฅ—็”จๆญคๆจ™่จ˜็š„ๅŽŸๅ› " @@ -3647,7 +3676,7 @@ msgstr "่ซ‹ไปฅ @{0} ็š„่บซๅˆ†็™ปๅ…ฅ" msgid "Please Verify Your Email" msgstr "่ซ‹้ฉ—่ญ‰ๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€" -#: src/view/com/composer/Composer.tsx:268 +#: src/view/com/composer/Composer.tsx:281 msgid "Please wait for your link card to finish loading" msgstr "่ซ‹็ญ‰ๅพ…ๆ‚จ็š„้€ฃ็ต้ ่ฆฝ่ผ‰ๅ…ฅๅฎŒ็•ข" @@ -3659,28 +3688,28 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "่‰ฒๆƒ…ๅ…งๅฎน" -#: src/view/com/composer/Composer.tsx:462 -#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:477 +#: src/view/com/composer/Composer.tsx:485 msgctxt "action" msgid "Post" msgstr "็™ผไฝˆ" -#: src/view/com/post-thread/PostThread.tsx:427 +#: src/view/com/post-thread/PostThread.tsx:430 msgctxt "description" msgid "Post" msgstr "็™ผไฝˆ" -#: src/view/com/post-thread/PostThreadItem.tsx:194 +#: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" msgstr "{0} ็š„่ฒผๆ–‡" -#: src/Navigation.tsx:183 -#: src/Navigation.tsx:190 -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:189 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 msgid "Post by @{0}" msgstr "@{0} ็š„่ฒผๆ–‡" -#: src/view/com/util/forms/PostDropdownBtn.tsx:134 +#: src/view/com/util/forms/PostDropdownBtn.tsx:129 msgid "Post deleted" msgstr "่ฒผๆ–‡ๅทฒๅˆช้™ค" @@ -3719,11 +3748,11 @@ msgstr "่ฒผๆ–‡" msgid "Posts" msgstr "่ฒผๆ–‡" -#: src/components/dialogs/MutedWords.tsx:90 +#: src/components/dialogs/MutedWords.tsx:89 msgid "Posts can be muted based on their text, their tags, or both." msgstr "ๅฏไปฅ้œ้Ÿณ่ฒผๆ–‡ๆ‰€ๅŒ…ๅซ็š„ๆ–‡ๅญ—ๅ’Œๆจ™็ฑคใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:69 +#: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "่ฒผๆ–‡ๅทฒ้šฑ่—" @@ -3746,6 +3775,10 @@ msgstr "ๆŒ‰ไธ‹ไปฅๆ›ดๆ”น่จ—็ฎกๆœๅ‹™ไพ›ๆ‡‰ๅ•†" msgid "Press to retry" msgstr "ๆŒ‰ไธ‹ไปฅ้‡่ฉฆ" +#: src/components/KnownFollowers.tsx:111 +msgid "Press to view followers of this account that you also follow" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "ไธŠไธ€ๅผตๅœ–็‰‡" @@ -3763,11 +3796,11 @@ msgstr "ๅ„ชๅ…ˆ้กฏ็คบ่ทŸ้šจ่€…" msgid "Privacy" msgstr "้šฑ็ง" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:244 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:957 -#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "้šฑ็งๆ”ฟ็ญ–" @@ -3787,8 +3820,8 @@ msgstr "ๅ€‹ไบบๆช”ๆกˆ" #: src/view/shell/bottom-bar/BottomBar.tsx:272 #: src/view/shell/desktop/LeftNav.tsx:381 #: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:541 #: src/view/shell/Drawer.tsx:542 +#: src/view/shell/Drawer.tsx:543 msgid "Profile" msgstr "ๅ€‹ไบบๆช”ๆกˆ" @@ -3812,16 +3845,16 @@ msgstr "ๅ…ฌ้–‹ไธ”ๅฏๅ…ฑไบซ็š„ๆ‰น้‡้œ้Ÿณๆˆ–ๅฐ้Ž–ๅˆ—่กจใ€‚" msgid "Public, shareable lists which can drive feeds." msgstr "ๅ…ฌ้–‹ไธ”ๅฏๅ…ฑไบซ็š„ๅˆ—่กจ๏ผŒๅฏไฝœ็‚บๅ‹•ๆ…‹ๆบไฝฟ็”จใ€‚" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish post" msgstr "็™ผไฝˆ่ฒผๆ–‡" -#: src/view/com/composer/Composer.tsx:447 +#: src/view/com/composer/Composer.tsx:462 msgid "Publish reply" msgstr "็™ผไฝˆๅ›ž่ฆ†" -#: src/view/com/util/post-ctrls/RepostButton.tsx:113 -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 msgid "Quote post" @@ -3839,11 +3872,11 @@ msgstr "ๆฏ”็އ" msgid "Reactivate your account" msgstr "" -#: src/components/dms/ReportDialog.tsx:172 +#: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" msgstr "ๅŽŸๅ› ๏ผš" -#: src/view/screens/Search/Search.tsx:973 +#: src/view/screens/Search/Search.tsx:970 msgid "Recent Searches" msgstr "ๆœ€่ฟ‘็š„ๆœๅฐ‹็ตๆžœ" @@ -3855,12 +3888,12 @@ msgstr "้‡ๆ–ฐ้€ฃ็ทš" msgid "Reload conversations" msgstr "้‡ๆ–ฐ่ผ‰ๅ…ฅๅฐ่ฉฑ" -#: src/components/dialogs/MutedWords.tsx:288 -#: src/view/com/feeds/FeedSourceCard.tsx:296 +#: src/components/dialogs/MutedWords.tsx:286 +#: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/posts/FeedErrorMessage.tsx:212 msgid "Remove" msgstr "ๅˆช้™ค" @@ -3880,25 +3913,25 @@ msgstr "ๅˆช้™คๆฉซๅน…" msgid "Remove embed" msgstr "ๅˆช้™คๅตŒๅ…ฅ" -#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบ" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบ๏ผŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:180 -#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 #: src/view/screens/ProfileFeed.tsx:336 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "ๅพžๆˆ‘็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค" -#: src/view/com/feeds/FeedSourceCard.tsx:291 +#: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "ๅพžๆˆ‘็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค๏ผŸ" @@ -3910,15 +3943,15 @@ msgstr "ๅˆช้™คๅœ–็‰‡" msgid "Remove image preview" msgstr "ๅˆช้™คๅœ–็‰‡้ ่ฆฝ" -#: src/components/dialogs/MutedWords.tsx:331 +#: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" msgstr "ๅพžๆ‚จ็š„ๅˆ—่กจไธญ็งป้™ค้œ้Ÿณๆ–‡ๅญ—" -#: src/view/screens/Search/Search.tsx:1014 +#: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:1016 +#: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" msgstr "" @@ -3926,12 +3959,12 @@ msgstr "" msgid "Remove quote" msgstr "ๅˆช้™คๅผ•็”จ่ฒผๆ–‡" -#: src/view/com/util/post-ctrls/RepostButton.tsx:90 -#: src/view/com/util/post-ctrls/RepostButton.tsx:106 +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "ๅˆช้™ค่ฝ‰่ฒผ่ฒผๆ–‡" -#: src/view/com/posts/FeedErrorMessage.tsx:211 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "ๅฐ‡้€™ๅ€‹ๅ‹•ๆ…‹ๆบๅพžๆ‚จๅทฒๅ„ฒๅญ˜ไน‹ๅ‹•ๆ…‹ๆบๅˆ—่กจไธญๅˆช้™ค" @@ -3940,7 +3973,7 @@ msgstr "ๅฐ‡้€™ๅ€‹ๅ‹•ๆ…‹ๆบๅพžๆ‚จๅทฒๅ„ฒๅญ˜ไน‹ๅ‹•ๆ…‹ๆบๅˆ—่กจไธญๅˆช้™ค" msgid "Removed from list" msgstr "ๅพžๅˆ—่กจไธญๅˆช้™ค" -#: src/view/com/feeds/FeedSourceCard.tsx:131 +#: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "ๅทฒๅพžๆˆ‘็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค" @@ -3971,7 +4004,7 @@ msgstr "ๅ›ž่ฆ†" msgid "Replies to this thread are disabled" msgstr "ๅฐๆญค่จŽ่ซ–ไธฒ็š„ๅ›ž่ฆ†ๅทฒๅœ็”จ" -#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 msgctxt "action" msgid "Reply" msgstr "ๅ›ž่ฆ†" @@ -4020,8 +4053,8 @@ msgstr "ๆชข่ˆ‰ๅˆ—่กจ" msgid "Report message" msgstr "ๆชข่ˆ‰่จŠๆฏ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:407 -#: src/view/com/util/forms/PostDropdownBtn.tsx:409 +#: src/view/com/util/forms/PostDropdownBtn.tsx:394 +#: src/view/com/util/forms/PostDropdownBtn.tsx:396 msgid "Report post" msgstr "ๆชข่ˆ‰่ฒผๆ–‡" @@ -4037,8 +4070,8 @@ msgstr "ๆชข่ˆ‰้€™ๅ€‹ๅ‹•ๆ…‹ๆบ" msgid "Report this list" msgstr "ๆชข่ˆ‰้€™ๅ€‹ๅˆ—่กจ" -#: src/components/dms/ReportDialog.tsx:47 -#: src/components/dms/ReportDialog.tsx:140 +#: src/components/dms/ReportDialog.tsx:48 +#: src/components/dms/ReportDialog.tsx:142 #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this message" msgstr "ๆชข่ˆ‰้€™ๅ€‹่จŠๆฏ" @@ -4051,9 +4084,9 @@ msgstr "ๆชข่ˆ‰้€™ๅ‰‡่ฒผๆ–‡" msgid "Report this user" msgstr "ๆชข่ˆ‰้€™ๅ€‹็”จๆˆถ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 -#: src/view/com/util/post-ctrls/RepostButton.tsx:107 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgctxt "action" msgid "Repost" msgstr "่ฝ‰่ฒผ" @@ -4063,7 +4096,7 @@ msgstr "่ฝ‰่ฒผ" msgid "Repost" msgstr "่ฝ‰่ฒผ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:83 +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Repost or quote post" @@ -4085,7 +4118,7 @@ msgstr "็”ฑ <0><1/> ่ฝ‰่ฒผ" msgid "reposted your post" msgstr "่ฝ‰่ฒผๆ‚จ็š„่ฒผๆ–‡" -#: src/view/com/post-thread/PostThreadItem.tsx:206 +#: src/view/com/post-thread/PostThreadItem.tsx:201 msgid "Reposts of this post" msgstr "่ฝ‰่ฒผ้€™ๅ‰‡่ฒผๆ–‡" @@ -4184,8 +4217,8 @@ msgid "Returns to previous page" msgstr "่ฟ”ๅ›žไธŠไธ€้ " #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/view/com/composer/GifAltText.tsx:163 -#: src/view/com/composer/GifAltText.tsx:169 +#: src/view/com/composer/GifAltText.tsx:162 +#: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 #: src/view/com/modals/CreateOrEditList.tsx:326 #: src/view/com/modals/EditProfile.tsx:225 @@ -4261,20 +4294,20 @@ msgid "Scroll to top" msgstr "ๆปพๅ‹•ๅˆฐ้ ‚้ƒจ" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:506 +#: src/Navigation.tsx:494 #: src/view/com/auth/LoggedOut.tsx:123 #: 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:451 -#: src/view/screens/Search/Search.tsx:825 -#: src/view/screens/Search/Search.tsx:853 +#: src/view/screens/Search/Search.tsx:452 +#: src/view/screens/Search/Search.tsx:822 +#: src/view/screens/Search/Search.tsx:850 #: src/view/shell/bottom-bar/BottomBar.tsx:179 #: src/view/shell/desktop/LeftNav.tsx:343 #: src/view/shell/desktop/Search.tsx:194 #: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:393 #: src/view/shell/Drawer.tsx:394 +#: src/view/shell/Drawer.tsx:395 msgid "Search" msgstr "ๆœๅฐ‹" @@ -4282,7 +4315,7 @@ msgstr "ๆœๅฐ‹" msgid "Search for \"{query}\"" msgstr "ๆœๅฐ‹ใ€Œ{query}ใ€" -#: src/view/screens/Search/Search.tsx:909 +#: src/view/screens/Search/Search.tsx:906 msgid "Search for \"{searchText}\"" msgstr "ๆœๅฐ‹ใ€Œ{searchText}ใ€" @@ -4387,7 +4420,7 @@ msgstr "้ธๆ“‡ {numItems} ๅ€‹้ …็›ฎไธญ็š„็ฌฌ {i} ้ …" msgid "Select the {emojiName} emoji as your avatar" msgstr "้ธๆ“‡ {emojiName} ่กจๆƒ…็ฌฆ่™Ÿไฝœ็‚บๆ‚จ็š„้ ญๅƒ" -#: src/components/ReportDialog/SubmitView.tsx:136 +#: src/components/ReportDialog/SubmitView.tsx:135 msgid "Select the moderation service(s) to report to" msgstr "้ธๆ“‡่ฆๆชข่ˆ‰็š„ๅ…งๅฎน็ฎก็†ๆœๅ‹™ๆไพ›่€…" @@ -4433,8 +4466,8 @@ msgctxt "action" msgid "Send Email" msgstr "็™ผ้€้›ปๅญ้ƒตไปถ" -#: src/view/shell/Drawer.tsx:328 -#: src/view/shell/Drawer.tsx:349 +#: src/view/shell/Drawer.tsx:329 +#: src/view/shell/Drawer.tsx:350 msgid "Send feedback" msgstr "ๆไบคๆ„่ฆ‹" @@ -4443,14 +4476,14 @@ msgstr "ๆไบคๆ„่ฆ‹" msgid "Send message" msgstr "้‡้€่จŠๆฏ" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "ๅ‚ณ้€่ฒผๆ–‡็ตฆโ€ฆ" -#: src/components/dms/ReportDialog.tsx:232 -#: src/components/dms/ReportDialog.tsx:235 -#: src/components/ReportDialog/SubmitView.tsx:216 -#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/dms/ReportDialog.tsx:234 +#: src/components/dms/ReportDialog.tsx:237 +#: src/components/ReportDialog/SubmitView.tsx:215 +#: src/components/ReportDialog/SubmitView.tsx:219 msgid "Send report" msgstr "ๆไบคๆชข่ˆ‰" @@ -4463,8 +4496,8 @@ msgstr "ๅฐ‡ๆชข่ˆ‰ๆไบค่‡ณ {0}" msgid "Send verification email" msgstr "็™ผ้€้ฉ—่ญ‰้›ปๅญ้ƒตไปถ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:299 -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:286 +#: src/view/com/util/forms/PostDropdownBtn.tsx:289 msgid "Send via direct message" msgstr "้€้Ž็งไบบ่จŠๆฏ็™ผ้€" @@ -4548,11 +4581,11 @@ msgstr "ๅฐ‡ๅœ–็‰‡ๆฏ”ไพ‹่จญๅฎš็‚บ้ซ˜" msgid "Sets image aspect ratio to wide" msgstr "ๅฐ‡ๅœ–็‰‡ๆฏ”ไพ‹่จญๅฎš็‚บๅฏฌ" -#: src/Navigation.tsx:146 +#: src/Navigation.tsx:145 #: src/view/screens/Settings/index.tsx:332 #: src/view/shell/desktop/LeftNav.tsx:389 -#: src/view/shell/Drawer.tsx:558 #: src/view/shell/Drawer.tsx:559 +#: src/view/shell/Drawer.tsx:560 msgid "Settings" msgstr "่จญๅฎš" @@ -4571,8 +4604,8 @@ msgstr "ๅˆ†ไบซ" #: src/view/com/profile/ProfileMenu.tsx:217 #: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:310 -#: src/view/com/util/forms/PostDropdownBtn.tsx:319 +#: src/view/com/util/forms/PostDropdownBtn.tsx:297 +#: src/view/com/util/forms/PostDropdownBtn.tsx:306 #: src/view/com/util/post-ctrls/PostCtrls.tsx:297 #: src/view/screens/ProfileList.tsx:428 msgid "Share" @@ -4587,7 +4620,7 @@ msgid "Share a fun fact!" msgstr "ๅˆ†ไบซไธ€ๅ€‹่ถฃ่ž๏ผ๐Ÿ“ฐ" #: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:464 +#: src/view/com/util/forms/PostDropdownBtn.tsx:451 #: src/view/com/util/post-ctrls/PostCtrls.tsx:313 msgid "Share anyway" msgstr "ไป็„ถๅˆ†ไบซ" @@ -4635,7 +4668,7 @@ msgstr "้กฏ็คบๆจ™่จ˜" msgid "Show badge and filter from feeds" msgstr "้กฏ็คบๆจ™่จ˜ไธฆๅพžๅ‹•ๆ…‹ๆบไธญ็ฏฉ้ธ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 msgid "Show follows similar to {0}" msgstr "้กฏ็คบ้กžไผผๆ–ผ {0} ็š„่ทŸ้šจ่€…" @@ -4643,19 +4676,19 @@ msgstr "้กฏ็คบ้กžไผผๆ–ผ {0} ็š„่ทŸ้šจ่€…" msgid "Show hidden replies" msgstr "้กฏ็คบ้šฑ่—ๅ›ž่ฆ†" -#: src/view/com/util/forms/PostDropdownBtn.tsx:349 -#: src/view/com/util/forms/PostDropdownBtn.tsx:351 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Show less like this" msgstr "ๆธ›ๅฐ‘้กฏ็คบๆญค้กžๅ…งๅฎน" -#: src/view/com/post-thread/PostThreadItem.tsx:538 +#: src/view/com/post-thread/PostThreadItem.tsx:532 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:392 msgid "Show More" msgstr "้กฏ็คบๆ›ดๅคš" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 -#: src/view/com/util/forms/PostDropdownBtn.tsx:343 +#: src/view/com/util/forms/PostDropdownBtn.tsx:328 +#: src/view/com/util/forms/PostDropdownBtn.tsx:330 msgid "Show more like this" msgstr "้กฏ็คบๆ›ดๅคšๆญค้กžๅ…งๅฎน" @@ -4712,9 +4745,9 @@ msgstr "ๅœจๆ‚จ็š„ๅ‹•ๆ…‹ไธญ้กฏ็คบไพ†่‡ช {0} ็š„่ฒผๆ–‡" #: 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:181 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:182 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:184 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -4745,9 +4778,9 @@ 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:171 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:172 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:174 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -4788,7 +4821,7 @@ msgstr "่ปŸ้ซ”้–‹็™ผ" msgid "Some people can reply" msgstr "ๅƒ…้ƒจๅˆ†ไบบๅฏไปฅๅ›ž่ฆ†" -#: src/screens/Messages/Conversation/index.tsx:94 +#: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "็™ผ็”Ÿไบ†ไธ€ไบ›ๅ•้กŒ" @@ -4816,7 +4849,7 @@ msgstr "ๆŽ’ๅบๅ›ž่ฆ†" msgid "Sort replies to the same post by:" msgstr "ๅฐๅŒไธ€่ฒผๆ–‡็š„ๅ›ž่ฆ†้€ฒ่กŒๆŽ’ๅบ๏ผš" -#: src/components/moderation/LabelsOnMeDialog.tsx:170 +#: src/components/moderation/LabelsOnMeDialog.tsx:168 msgid "Source: <0>{0}" msgstr "ไพ†ๆบ๏ผš<0>{0}" @@ -4861,13 +4894,13 @@ msgstr "็ฌฌ {0} ๆญฅ๏ผˆๅ…ฑ {1} ๆญฅ๏ผ‰" msgid "Storage cleared, you need to restart the app now." msgstr "ๅทฒๆธ…้™คๅ„ฒๅญ˜่ณ‡ๆ–™๏ผŒๆ‚จ้œ€่ฆ็ซ‹ๅณ้‡ๅ•Ÿๆ‡‰็”จ็จ‹ๅผใ€‚" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:224 #: src/view/screens/Settings/index.tsx:863 msgid "Storybook" msgstr "ๆ•…ไบ‹ๆ›ธ" -#: src/components/moderation/LabelsOnMeDialog.tsx:292 -#: src/components/moderation/LabelsOnMeDialog.tsx:293 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -4893,7 +4926,7 @@ msgstr "่จ‚้–ฑ้€™ๅ€‹ๆจ™่จ˜่€…" msgid "Subscribe to this list" msgstr "่จ‚้–ฑ้€™ๅ€‹ๅˆ—่กจ" -#: src/view/screens/Search/Search.tsx:424 +#: src/view/screens/Search/Search.tsx:425 msgid "Suggested Follows" msgstr "ๆŽจ่–ฆ็š„่ทŸ้šจ่€…" @@ -4905,7 +4938,7 @@ msgstr "็‚บๆ‚จๆŽจ่–ฆ" msgid "Suggestive" msgstr "ๆš—็คบ" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:239 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -4932,7 +4965,7 @@ msgstr "็ณป็ตฑ" msgid "System log" msgstr "็ณป็ตฑๆ—ฅ่ชŒ" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "tag" msgstr "ๆจ™็ฑค" @@ -4960,11 +4993,11 @@ msgstr "่ชชๅ€‹็ฌ‘่ฉฑ๏ผ๐Ÿคก" msgid "Terms" msgstr "ๆขๆฌพ" -#: src/Navigation.tsx:243 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:951 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:278 +#: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" msgstr "ๆœๅ‹™ๆขๆฌพ" @@ -4974,17 +5007,17 @@ msgstr "ๆœๅ‹™ๆขๆฌพ" msgid "Terms used violate community standards" msgstr "ๆ‰€ไฝฟ็”จ็š„ๆ–‡ๅญ—้•ๅไบ†็คพ็พคๆจ™ๆบ–" -#: src/components/dialogs/MutedWords.tsx:325 +#: src/components/dialogs/MutedWords.tsx:323 msgid "text" msgstr "ๆ–‡ๅญ—" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:254 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "ๆ–‡ๅญ—่ผธๅ…ฅๆก†" -#: src/components/dms/ReportDialog.tsx:132 -#: src/components/ReportDialog/SubmitView.tsx:78 +#: src/components/dms/ReportDialog.tsx:134 +#: src/components/ReportDialog/SubmitView.tsx:77 msgid "Thank you. Your report has been sent." msgstr "่ฌ่ฌ๏ผŒๆ‚จ็š„ๆชข่ˆ‰ๅทฒๆไบคใ€‚" @@ -4996,7 +5029,7 @@ msgstr "ๅ…ถไธญๅŒ…ๅซไปฅไธ‹ๅ…งๅฎน๏ผš" msgid "That handle is already taken." msgstr "้€™ๅ€‹ๅธณ่™Ÿไปฃ็ขผๅทฒ่ขซไฝฟ็”จใ€‚" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:291 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 #: src/view/com/profile/ProfileMenu.tsx:351 msgid "The account will be able to interact with you after unblocking." msgstr "่งฃ้™คๅฐ้Ž–ๅพŒ๏ผŒ่ฉฒๅธณ่™Ÿๅฐ‡่ƒฝๅค ่ˆ‡ๆ‚จไบ’ๅ‹•ใ€‚" @@ -5013,11 +5046,11 @@ msgstr "็‰ˆๆฌŠๆ”ฟ็ญ–ๅทฒ็งปๅ‹•ๅˆฐ <0/>" msgid "The feed has been replaced with Discover." msgstr "ๆญคๅ‹•ๆ…‹ๆบๅทฒ็”ฑใ€ŒDiscoverใ€ๅ–ไปฃใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." msgstr "ไปฅไธ‹ๆจ™่จ˜ๅทฒๅฅ—็”จๅˆฐๆ‚จ็š„ๅธณ่™Ÿใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:67 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your content." msgstr "ไปฅไธ‹ๆจ™่จ˜ๅทฒๅฅ—็”จๅˆฐๆ‚จ็š„ๅ…งๅฎนใ€‚" @@ -5051,7 +5084,7 @@ msgstr "" msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "้€ฃ็ทš่‡ณไผบๆœๅ™จๆ™‚ๅ‡บ็พๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšไธฆ้‡่ฉฆใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:146 +#: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบๆ™‚ๅ‡บ็พๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšไธฆ้‡่ฉฆใ€‚" @@ -5075,12 +5108,12 @@ msgstr "้€ฃ็ทšๅˆฐ Tenor ๆ™‚ๅ‡บ็พๅ•้กŒใ€‚" msgid "There was an issue contacting the server" msgstr "้€ฃ็ทšไผบๆœๅ™จๆ™‚ๅ‡บ็พๅ•้กŒ" -#: src/view/com/feeds/FeedSourceCard.tsx:120 -#: src/view/com/feeds/FeedSourceCard.tsx:133 +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "้€ฃ็ทšไผบๆœๅ™จๆ™‚ๅ‡บ็พๅ•้กŒ" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ๅ–ๅพ—้€š็Ÿฅๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ้ปžๆ“Š้€™่ฃก้‡่ฉฆใ€‚" @@ -5097,8 +5130,8 @@ msgstr "ๅ–ๅพ—ๅˆ—่กจๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ้ปžๆ“Š้€™่ฃก้‡่ฉฆใ€‚" msgid "There was an issue fetching your lists. Tap here to try again." msgstr "ๅ–ๅพ—ๅˆ—่กจๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ้ปžๆ“Š้€™่ฃก้‡่ฉฆใ€‚" -#: src/components/dms/ReportDialog.tsx:220 -#: src/components/ReportDialog/SubmitView.tsx:83 +#: src/components/dms/ReportDialog.tsx:222 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "There was an issue sending your report. Please check your internet connection." msgstr "ๆไบคๆ‚จ็š„ๆชข่ˆ‰ๆ™‚ๅ‡บ็พๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšใ€‚" @@ -5106,9 +5139,9 @@ msgstr "ๆไบคๆ‚จ็š„ๆชข่ˆ‰ๆ™‚ๅ‡บ็พๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšใ€‚" msgid "There was an issue with fetching your app passwords" msgstr "ๅ–ๅพ—ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:121 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 #: src/view/com/profile/ProfileMenu.tsx:109 @@ -5149,7 +5182,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:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:239 msgid "This appeal will be sent to <0>{0}." msgstr "ๆญค็”ณ่จดๅฐ‡่ขซๆไบค่‡ณ <0>{0}ใ€‚" @@ -5178,28 +5211,37 @@ msgstr "ๆญคๅ…งๅฎน็”ฑ {0} ่จ—็ฎกใ€‚ๆ˜ฏๅฆ่ฆๅ•Ÿ็”จๅค–้ƒจๅช’้ซ”๏ผŸ" msgid "This content is not available because one of the users involved has blocked the other." msgstr "็”ฑๆ–ผๅ…ถไธญไธ€ๅ€‹็”จๆˆถๅฐ้Ž–ไบ†ๅฆไธ€ๅ€‹็”จๆˆถ๏ผŒ็„กๆณ•ๆŸฅ็œ‹ๆญคๅ…งๅฎนใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:115 +#: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "ๆฒ’ๆœ‰ Bluesky ๅธณ่™Ÿ๏ผŒ็„กๆณ•ๆŸฅ็œ‹ๆญคๅ…งๅฎนใ€‚" +#: src/screens/Messages/List/ChatListItem.tsx:213 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +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." msgstr "ๆญคๅŠŸ่ƒฝ็›ฎๅ‰็‚บๆธฌ่ฉฆ็‰ˆๆœฌใ€‚ๆ‚จๅฏไปฅๅœจ<0>้€™็ฏ‡้ƒจ่ฝๆ ผๆ–‡็ซ ไธญ็žญ่งฃๆ›ดๅคšๆœ‰้—œ่ณ‡่จŠใ€‚" -#: src/view/com/posts/FeedErrorMessage.tsx:121 +#: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "ๆญคๅ‹•ๆ…‹ๆบ็”ฑๆ–ผ็›ฎๅ‰ไฝฟ็”จไบบๆ•ธ็œพๅคš่€Œๆšซๆ™‚็„กๆณ•ไฝฟ็”จใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 -msgid "This feed is empty!" -msgstr "้€™่ฃกๆ˜ฏ็ฉบ็š„๏ผ" +#~ msgid "This feed is empty!" +#~ 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 "้€™ๅ€‹ๅ‹•ๆ…‹ๆบๆ˜ฏ็ฉบ็š„๏ผๆ‚จๆˆ–่จฑ้œ€่ฆๅ…ˆ่ทŸ้šจๆ›ดๅคš็š„ไบบๆˆ–ๆชขๆŸฅๆ‚จ็š„่ชž่จ€่จญๅฎšใ€‚" +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +msgid "This feed is empty." +msgstr "" + #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "ๆญคๅ‹•ๆ…‹ๆบๅทฒ็ถ“ไธ‹็ทšใ€‚ๆˆ‘ๅ€‘ๅฐ‡ๅฑ•็คบใ€Œ<0>Discoverใ€ๅ‹•ๆ…‹ๆบใ€‚" @@ -5220,7 +5262,7 @@ msgstr "ๆญคๆจ™่จ˜็”ฑ <0>{0} ๆ–ฐๅขžใ€‚" msgid "This label was applied by the author." msgstr "ๆญคๆจ™่จ˜็”ฑ็™ผๅธƒ่€…ๆ–ฐๅขžใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:166 msgid "This label was applied by you." msgstr "ๆญคๆจ™่จ˜็”ฑๆ‚จๆ–ฐๅขžใ€‚" @@ -5240,20 +5282,20 @@ msgstr "ๆญคๅˆ—่กจ็‚บ็ฉบ๏ผ" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "ๆญคๅ…งๅฎน็ฎก็†ๆœๅ‹™ๆšซๆ™‚็„กๆณ•ไฝฟ็”จ๏ผŒ่ฉณๆƒ…่ซ‹่ฆ‹ไธ‹ๆ–‡ใ€‚ๅฆ‚ๆžœๅ•้กŒๆŒ็บŒๅญ˜ๅœจ๏ผŒ่ซ‹่ˆ‡ๆˆ‘ๅ€‘่ฏ็ตกใ€‚" -#: src/view/com/modals/AddAppPasswords.tsx:111 +#: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" msgstr "ๆญคๅ็จฑๅทฒ่ขซไฝฟ็”จ" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:135 msgid "This post has been deleted." msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅทฒ่ขซๅˆช้™คใ€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:448 #: src/view/com/util/post-ctrls/PostCtrls.tsx:310 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:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "This post will be hidden from feeds." msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅฐ‡ๅพžๅ‹•ๆ…‹้šฑ่—ใ€‚" @@ -5298,7 +5340,7 @@ msgstr "ๆญค็”จๆˆถๅŒ…ๅซๅœจๆ‚จๅทฒ้œ้Ÿณ็š„ <0>{0} ๅˆ—่กจไธญใ€‚" msgid "This user isn't following anyone." msgstr "ๆญค็”จๆˆถๆœช่ทŸ้šจไปปไฝ•ไบบใ€‚" -#: src/components/dialogs/MutedWords.tsx:285 +#: src/components/dialogs/MutedWords.tsx:283 msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "้€™ๅฐ‡ๅพžๆ‚จ็š„้œ้Ÿณๆ–‡ๅญ—ไธญๅˆช้™ค {0}๏ผŒๆ‚จ้šจๆ™‚ๅฏไปฅๆ–ฐๅขžๅ›žไพ†ใ€‚" @@ -5315,7 +5357,7 @@ msgstr "่จŽ่ซ–ไธฒๅๅฅฝ" msgid "Threaded Mode" msgstr "ๆจน็‹€้กฏ็คบๆจกๅผ" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:282 msgid "Threads Preferences" msgstr "่จŽ่ซ–ไธฒๅๅฅฝ" @@ -5331,7 +5373,7 @@ msgstr "่‹ฅ่ฆๆชข่ˆ‰ๅฐ่ฉฑ๏ผŒ่ซ‹้€้Žๅฐ่ฉฑ็•ซ้ขๆชข่ˆ‰ๅ…ถไธญไธ€ๅ‰‡่จŠๆฏใ€‚้€™ msgid "To whom would you like to send this report?" msgstr "ๆ‚จๅธŒๆœ›ๅ‘่ชฐๆไบคๆญคๆชข่ˆ‰๏ผŸ" -#: src/components/dialogs/MutedWords.tsx:113 +#: src/components/dialogs/MutedWords.tsx:112 msgid "Toggle between muted word options." msgstr "ๅœจ้œ้Ÿณๆ–‡ๅญ—้ธ้ …ไน‹้–“ๅˆ‡ๆ›ใ€‚" @@ -5344,7 +5386,7 @@ msgid "Toggle to enable or disable adult content" msgstr "ๅˆ‡ๆ›ไปฅๅ•Ÿ็”จๆˆ–ๅœ็”จๆˆไบบๅ…งๅฎน" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:366 +#: src/view/screens/Search/Search.tsx:367 msgid "Top" msgstr "็†ฑ้–€" @@ -5354,10 +5396,10 @@ msgstr "่ฝ‰ๆ›" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:691 -#: src/view/com/post-thread/PostThreadItem.tsx:693 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 -#: src/view/com/util/forms/PostDropdownBtn.tsx:282 +#: src/view/com/post-thread/PostThreadItem.tsx:674 +#: src/view/com/post-thread/PostThreadItem.tsx:676 +#: src/view/com/util/forms/PostDropdownBtn.tsx:267 +#: src/view/com/util/forms/PostDropdownBtn.tsx:269 msgid "Translate" msgstr "็ฟป่ญฏ" @@ -5399,14 +5441,14 @@ msgstr "็„กๆณ•้€ฃ็ทšๅˆฐๆœๅ‹™๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšใ€‚" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 #: src/view/com/profile/ProfileMenu.tsx:363 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "่งฃ้™คๅฐ้Ž–" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 msgctxt "action" msgid "Unblock" msgstr "่งฃ้™คๅฐ้Ž–" @@ -5421,12 +5463,12 @@ msgstr "่งฃ้™คๅฐ้Ž–ๅธณ่™Ÿ" msgid "Unblock Account" msgstr "่งฃ้™คๅฐ้Ž–ๅธณ่™Ÿ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:289 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 #: src/view/com/profile/ProfileMenu.tsx:345 msgid "Unblock Account?" msgstr "่งฃ้™คๅฐ้Ž–๏ผŸ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:62 +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 msgid "Undo repost" @@ -5441,7 +5483,7 @@ msgstr "ๅ–ๆถˆ่ทŸ้šจ" msgid "Unfollow" msgstr "ๅ–ๆถˆ่ทŸ้šจ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 msgid "Unfollow {0}" msgstr "ๅ–ๆถˆ่ทŸ้šจ {0}" @@ -5476,8 +5518,8 @@ msgstr "ๅ–ๆถˆๅฐๆ‰€ๆœ‰ {displayTag} ่ฒผๆ–‡็š„้œ้Ÿณ" msgid "Unmute conversation" msgstr "ๅ–ๆถˆ้œ้Ÿณๅฐ่ฉฑ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:352 +#: src/view/com/util/forms/PostDropdownBtn.tsx:357 msgid "Unmute thread" msgstr "ๅ–ๆถˆ้œ้Ÿณ่จŽ่ซ–ไธฒ" @@ -5523,7 +5565,7 @@ msgstr "ๆ›ดๆ–ฐ่‡ณ {handle}" msgid "Updating..." msgstr "ๆ›ดๆ–ฐไธญโ€ฆ" -#: src/screens/Onboarding/StepProfile/index.tsx:280 +#: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "ๆˆ–ๆ˜ฏไธŠๅ‚ณๅœ–็‰‡" @@ -5584,7 +5626,7 @@ msgstr "ไฝฟ็”จๆŽจ่–ฆ" msgid "Use the DNS panel" msgstr "ไฝฟ็”จ DNS ๆŽงๅˆถๅฐ" -#: src/view/com/modals/AddAppPasswords.tsx:206 +#: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." msgstr "ไฝฟ็”จ้€™ๅ€‹ๅ’Œๆ‚จ็š„ๅธณ่™Ÿไปฃ็ขผไธ€่ตท็™ปๅ…ฅๅ…ถไป–ๆ‡‰็”จ็จ‹ๅผใ€‚" @@ -5743,11 +5785,11 @@ msgstr "ๆŸฅ็œ‹ๆœ‰้—œ้€™ไบ›ๆจ™่จ˜็š„่ณ‡่จŠ" #: src/components/ProfileHoverCard/index.web.tsx:396 #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "ๆŸฅ็œ‹่ณ‡ๆ–™" -#: src/view/com/profile/ProfileSubpageHeader.tsx:130 +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "ๆŸฅ็œ‹้ ญๅƒ" @@ -5759,6 +5801,11 @@ msgstr "ๆŸฅ็œ‹็”ฑ @{0} ๆไพ›็š„ๆจ™่จ˜ๆœๅ‹™" msgid "View users who like this feed" msgstr "ๆŸฅ็œ‹ๅ–œๆญกๆญคๅ‹•ๆ…‹ๆบ็š„็”จๆˆถ" +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +msgid "View your feeds and explore more" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" @@ -5782,7 +5829,7 @@ msgstr "่ญฆๅ‘Šๅ…งๅฎนไธฆๅพžๅ‹•ๆ…‹ๆบไธญ้Žๆฟพ" msgid "We couldn't find any results for that hashtag." msgstr "ๆˆ‘ๅ€‘ๆ‰พไธๅˆฐไปปไฝ•่ˆ‡่ฉฒๆจ™็ฑค็›ธ้—œ็š„็ตๆžœใ€‚" -#: src/screens/Messages/Conversation/index.tsx:95 +#: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" msgstr "ๆˆ‘ๅ€‘็„กๆณ•่ผ‰ๅ…ฅ้€™ๅ€‹ๅฐ่ฉฑ" @@ -5798,7 +5845,7 @@ msgstr "ๆˆ‘ๅ€‘ๅธŒๆœ›ๆ‚จๅœจๆญคๅบฆ้Žๆ„‰ๅฟซ็š„ๆ™‚ๅ…‰ใ€‚่ซ‹่จ˜ไฝ๏ผŒBluesky ๆ˜ฏ๏ผš" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "ๆ‚จๅทฒ็œ‹ๅฎŒไบ†ๆ‚จ่ทŸ้šจ็š„่ฒผๆ–‡ใ€‚้€™ๆ˜ฏไพ†่‡ช <0/> ็š„ๆœ€ๆ–ฐ่ฒผๆ–‡ใ€‚" -#: src/components/dialogs/MutedWords.tsx:204 +#: 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 "ๆˆ‘ๅ€‘ๅปบ่ญฐ้ฟๅ…ๆ–ฐๅขžๅœจ่จฑๅคš่ฒผๆ–‡ไธญๅธธ็”จ็š„ๆ–‡ๅญ—๏ผŒๅ› ็‚บ้€™ๅฏ่ƒฝไปคๆ‚จ็œ‹ไธๅˆฐไปปไฝ•่ฒผๆ–‡ใ€‚" @@ -5834,14 +5881,18 @@ msgstr "ๆˆ‘ๅ€‘้žๅธธ้ซ˜่ˆˆๆ‚จๅŠ ๅ…ฅๆˆ‘ๅ€‘๏ผ" msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็„กๆณ•่งฃๆžๆญคๅˆ—่กจใ€‚ๅฆ‚ๆžœๅ•้กŒๆŒ็บŒ็™ผ็”Ÿ๏ผŒ่ซ‹่ฏ็นซๅˆ—่กจๅปบ็ซ‹่€… @{handleOrDid}ใ€‚" -#: src/components/dialogs/MutedWords.tsx:230 +#: src/components/dialogs/MutedWords.tsx:229 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็›ฎๅ‰็„กๆณ•่ผ‰ๅ…ฅๆ‚จ็š„้œ้Ÿณๆ–‡ๅญ—ใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" -#: src/view/screens/Search/Search.tsx:269 +#: src/view/screens/Search/Search.tsx:270 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:318 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 msgid "We're sorry! We can't find the page you were looking for." @@ -5861,7 +5912,7 @@ msgstr "ๆ‚จๆ„Ÿ่ˆˆ่ถฃ็š„ๆ˜ฏไป€้บผ๏ผŸ" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:340 +#: src/view/com/composer/Composer.tsx:359 msgid "What's up?" msgstr "็™ผ็”Ÿไบ†ไป€้บผๆ–ฐ้ฎฎไบ‹๏ผŸ" @@ -5882,7 +5933,7 @@ msgstr "่ชฐๅฏไปฅๅ‚ณ้€่จŠๆฏ็ตฆๆ‚จ๏ผŸ" msgid "Who can reply" msgstr "่ชฐๅฏไปฅๅ›ž่ฆ†" -#: src/screens/Home/NoFeedsPinned.tsx:92 +#: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" msgstr "ๅ“Žๅ‘€๏ผ" @@ -5920,11 +5971,11 @@ msgstr "ๅฏฌ" msgid "Write a message" msgstr "ๆ’ฐๅฏซ่จŠๆฏ" -#: src/view/com/composer/Composer.tsx:534 +#: src/view/com/composer/Composer.tsx:549 msgid "Write post" msgstr "ๆ’ฐๅฏซ่ฒผๆ–‡" -#: src/view/com/composer/Composer.tsx:339 +#: src/view/com/composer/Composer.tsx:358 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "ๆ’ฐๅฏซๆ‚จ็š„ๅ›ž่ฆ†" @@ -5964,8 +6015,8 @@ msgstr "ไฝ ๆญฃ่™•ๆ–ผ้šŠๅˆ—ไน‹ไธญใ€‚" msgid "You are not following anyone." msgstr "ๆ‚จๆฒ’ๆœ‰่ทŸ้šจไปปไฝ•ไบบใ€‚" -#: src/view/com/posts/FollowingEmptyState.tsx:67 -#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "ๆ‚จไนŸๅฏไปฅๆŽข็ดขไธฆ่ทŸ้šจๆ–ฐ็š„่‡ช่จ‚ๅ‹•ๆ…‹ๆบใ€‚" @@ -5994,6 +6045,10 @@ msgstr "" msgid "You do not have any followers." msgstr "ๆ‚จๆฒ’ๆœ‰ไปปไฝ•่ทŸ้šจ่€…ใ€‚" +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "" + #: 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." msgstr "ๆ‚จ็›ฎๅ‰้‚„ๆฒ’ๆœ‰้‚€่ซ‹็ขผ๏ผ็•ถๆ‚จๆŒ็บŒไฝฟ็”จ Bluesky ไธ€ๆฎตๆ™‚้–“ๅพŒ๏ผŒๆˆ‘ๅ€‘ๅฐ‡ๆไพ›ไธ€ไบ›ๆ–ฐ็š„้‚€่ซ‹็ขผ็ตฆๆ‚จใ€‚" @@ -6073,15 +6128,15 @@ msgstr "ๆ‚จ้‚„ๆฒ’ๆœ‰้œ้Ÿณไปปไฝ•ๅธณ่™Ÿใ€‚่ฆ้œ้Ÿณๅธณ่™Ÿ๏ผŒ่ซ‹ๅ‰ๅพ€ๅ…ถๅ€‹ไบบๆช” msgid "You have reached the end" msgstr "ๅทฒ็ถ“ๅˆฐๅบ•้ƒจๅ•ฆ๏ผ" -#: src/components/dialogs/MutedWords.tsx:250 +#: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "ๆ‚จ้‚„ๆฒ’ๆœ‰้šฑ่—ไปปไฝ•ๆ–‡ๅญ—ๆˆ–ๆจ™็ฑค" -#: src/components/moderation/LabelsOnMeDialog.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:86 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "ๅฆ‚ๆžœๆ‚จ่ช็‚บ้€™ไบ›ๆจ™่จ˜ๆœ‰่ชค๏ผŒไธ”ๆจ™่จ˜ไธฆ้ž็”ฑๆ‚จๆ–ฐๅขž๏ผŒๆ‚จๅฏไปฅๆๅ‡บ็”ณ่จดใ€‚" -#: src/components/moderation/LabelsOnMeDialog.tsx:92 +#: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." msgstr "ๅฆ‚ๆžœๆ‚จ่ฆบๅพ—้€™ไบ›ๆจ™่จ˜ๆœ‰่ชค๏ผŒๆ‚จๅฏไปฅๆๅ‡บ็”ณ่จดใ€‚" @@ -6089,7 +6144,7 @@ msgstr "ๅฆ‚ๆžœๆ‚จ่ฆบๅพ—้€™ไบ›ๆจ™่จ˜ๆœ‰่ชค๏ผŒๆ‚จๅฏไปฅๆๅ‡บ็”ณ่จดใ€‚" msgid "You must be 13 years of age or older to sign up." msgstr "ๆ‚จๅฟ…้ ˆๅนดๆปฟ 13 ๆญฒๆ‰่ƒฝ่จปๅ†Šใ€‚" -#: src/components/ReportDialog/SubmitView.tsx:206 +#: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" msgstr "ๆ‚จๅฟ…้ ˆ้ธๆ“‡่‡ณๅฐ‘ไธ€ๅ€‹ๆจ™่จ˜่€…ไพ†ๆไบคๆชข่ˆ‰" @@ -6097,11 +6152,11 @@ msgstr "ๆ‚จๅฟ…้ ˆ้ธๆ“‡่‡ณๅฐ‘ไธ€ๅ€‹ๆจ™่จ˜่€…ไพ†ๆไบคๆชข่ˆ‰" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:173 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" msgstr "ๆ‚จๅฐ‡ไธๅ†ๆ”ถๅˆฐ้€™ๆข่จŽ่ซ–ไธฒ็š„้€š็Ÿฅ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:176 +#: src/view/com/util/forms/PostDropdownBtn.tsx:171 msgid "You will now receive notifications for this thread" msgstr "ๆ‚จๅฐ‡ๆ”ถๅˆฐ้€™ๆข่จŽ่ซ–ไธฒ็š„้€š็Ÿฅ" @@ -6109,15 +6164,15 @@ msgstr "ๆ‚จๅฐ‡ๆ”ถๅˆฐ้€™ๆข่จŽ่ซ–ไธฒ็š„้€š็Ÿฅ" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "ๆ‚จๅฐ‡ๆ”ถๅˆฐไธ€ๅฐๅŒ…ๅซ้‡่จญ็ขผ็š„้›ปๅญ้ƒตไปถใ€‚่ซ‹ๅœจๆญค่ผธๅ…ฅ่ฉฒใ€Œ้‡่จญ็ขผใ€๏ผŒ็„ถๅพŒ่ผธๅ…ฅๆ‚จ็š„ๆ–ฐๅฏ†็ขผใ€‚" -#: src/screens/Messages/List/ChatListItem.tsx:113 +#: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" msgstr "ๆ‚จ๏ผš{0}" -#: src/screens/Messages/List/ChatListItem.tsx:142 +#: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:135 +#: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" msgstr "" @@ -6141,7 +6196,7 @@ msgstr "ๆ‚จๅทฒๅฎŒๆˆ่จญๅฎš๏ผ" msgid "You've chosen to hide a word or tag within this post." msgstr "ๆ‚จ้ธๆ“‡ๅœจ้€™ๅ‰‡่ฒผๆ–‡ไธญ้šฑ่—ๆ–‡ๅญ—ๆˆ–ๆจ™็ฑคใ€‚" -#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ๆ‚จๅทฒ็ถ“็€่ฆฝๅฎŒ่ฒผๆ–‡ๅ•ฆ๏ผ่ทŸ้šจๅ…ถไป–ๅธณ่™Ÿๅงใ€‚" @@ -6183,7 +6238,7 @@ msgstr "ๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€ๅทฒๆ›ดๆ–ฐไฝ†ๅฐšๆœช้ฉ—่ญ‰ใ€‚ไฝœ็‚บไธ‹ไธ€ๆญฅ๏ผŒ่ซ‹ msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "ๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€ๅฐšๆœช้ฉ—่ญ‰ใ€‚้€™ๆ˜ฏไธ€ๅ€‹ๆˆ‘ๅ€‘ๅปบ่ญฐ็š„้‡่ฆๅฎ‰ๅ…จๆญฅ้ฉŸใ€‚" -#: src/view/com/posts/FollowingEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ๆ‚จ็š„ใ€ŒFollowingใ€ๅ‹•ๆ…‹ๆบๆ˜ฏ็ฉบ็š„๏ผ่ทŸ้šจๆ›ดๅคš็”จๆˆถไพ†็œ‹็œ‹็™ผ็”Ÿไบ†ไป€้บผไบ‹ๆƒ…ใ€‚" @@ -6195,7 +6250,7 @@ msgstr "ๆ‚จ็š„ๅฎŒๆ•ดๅธณ่™Ÿไปฃ็ขผๅฐ‡ไฟฎๆ”น็‚บ" msgid "Your full handle will be <0>@{0}" msgstr "ๆ‚จ็š„ๅฎŒๆ•ดๅธณ่™Ÿไปฃ็ขผๅฐ‡ไฟฎๆ”น็‚บ <0>@{0}" -#: src/components/dialogs/MutedWords.tsx:221 +#: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" msgstr "ๆ‚จ็š„้œ้Ÿณๆ–‡ๅญ—" @@ -6203,7 +6258,7 @@ msgstr "ๆ‚จ็š„้œ้Ÿณๆ–‡ๅญ—" msgid "Your password has been changed successfully!" msgstr "ๆ‚จ็š„ๅฏ†็ขผๅทฒๆˆๅŠŸๆ›ดๆ”น๏ผ" -#: src/view/com/composer/Composer.tsx:330 +#: src/view/com/composer/Composer.tsx:349 msgid "Your post has been published" msgstr "ๆ‚จ็š„่ฒผๆ–‡ๅทฒ็™ผไฝˆ" @@ -6219,11 +6274,11 @@ 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:329 +#: src/view/com/composer/Composer.tsx:348 msgid "Your reply has been published" msgstr "ๆ‚จ็š„ๅ›ž่ฆ†ๅทฒ็™ผไฝˆ" -#: src/components/dms/ReportDialog.tsx:160 +#: src/components/dms/ReportDialog.tsx:162 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "ๆ‚จ็š„ๆชข่ˆ‰ๅฐ‡็™ผ้€่‡ณ Bluesky ๅ…งๅฎน็ฎก็†ๆœๅ‹™" diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 88d4086ed7..76ff4268fd 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -392,6 +392,7 @@ export function FeedsScreen(_props: Props) { return ( Date: Wed, 12 Jun 2024 08:17:47 +0800 Subject: [PATCH 15/86] Update Chinese localization (#4410) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * TW: Update and clean * CN:run intl:extract * 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: unify "็™ปๅ…ฅ" * Update messages.po * Update messages.po * BOTH: fix "Post" msgctxt "description" msgid "Post" * CN: Update translates * CN: Remove superseded strings * TW: Update and clean * CN: fix msgid "This feed is empty." --------- Co-authored-by: Frudrax Cheng Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> --- src/locale/locales/zh-CN/messages.po | 156 ++++++++++++------- src/locale/locales/zh-TW/messages.po | 216 +++++++++++++++++---------- 2 files changed, 238 insertions(+), 134 deletions(-) diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index c077c47044..3646c566ed 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-05 09:54+0800\n" +"PO-Revision-Date: 2024-06-11 16:23+0800\n" "Last-Translator: Frudrax Cheng \n" "Language-Team: Frudrax Cheng (auroursa), Simon Chan (RitsukiP), U2FsdGVkX1, Mikan Harada (mitian233), IceCodeNew\n" "Plural-Forms: \n" @@ -33,6 +33,7 @@ msgstr "{0, plural, one {# ไธชๆ ‡็ญพๅทฒๆ ‡่ฎฐๅˆฐ่ฟ™ไธช่ดฆๆˆท} other {# ไธชๆ ‡็ญพ msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {# ไธชๆ ‡็ญพๅทฒๆ ‡่ฎฐๅˆฐๆญคๅ†…ๅฎน} other {# ไธชๆ ‡็ญพๅทฒๆ ‡่ฎฐๅˆฐๆญคๅ†…ๅฎน}}" +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 #: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# ๆก่ฝฌๅ‘} other {# ๆก่ฝฌๅ‘}}" @@ -59,6 +60,7 @@ msgstr "{0, plural, one {ๅ–œๆฌข (# ไธชๅ–œๆฌข)} other {ๅ–œๆฌข (# ไธชๅ–œๆฌข)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {ๅ–œๆฌข} other {ๅ–œๆฌข}}" +#: src/view/com/feeds/FeedSourceCard.tsx:301 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {# ไฝ็”จๆˆทๅ–œๆฌข} other {# ไฝ็”จๆˆทๅ–œๆฌข}}" @@ -275,6 +277,7 @@ msgstr "ๅฐ†ไปฅไธ‹ DNS ่ฎฐๅฝ•ๆ–ฐๅขžๅˆฐไฝ ็š„ๅŸŸๅ:" msgid "Add to Lists" msgstr "ๆทปๅŠ ่‡ณๅˆ—่กจ" +#: src/view/com/feeds/FeedSourceCard.tsx:267 #: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "ๆทปๅŠ ่‡ณ่‡ชๅฎšไน‰่ต„่ฎฏๆบ" @@ -284,6 +287,7 @@ msgstr "ๆทปๅŠ ่‡ณ่‡ชๅฎšไน‰่ต„่ฎฏๆบ" msgid "Added to list" msgstr "ๅทฒๆทปๅŠ ่‡ณๅˆ—่กจ" +#: src/view/com/feeds/FeedSourceCard.tsx:126 #: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "ๅทฒๆทปๅŠ ่‡ณ่‡ชๅฎšไน‰่ต„่ฎฏๆบ" @@ -465,11 +469,12 @@ msgstr "ไฝ ็กฎๅฎš่ฆๅˆ ้™ค่ฟ™ๆก็งไฟกๅ—๏ผŸๆญคๆ“ไฝœไป…ไผšๅœจไฝ ็š„ๅฏน่ฏไธญๅˆ  msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "ไฝ ็กฎๅฎš่ฆ็ฆปๅผ€่ฟ™ไธชๅฏน่ฏๅ—๏ผŸๆญคๆ“ไฝœไป…ไผšๅœจไฝ ็š„็งไฟกๅˆ—่กจไธญๅˆ ้™คๅฏน่ฏ๏ผŒ่€Œไธไผšๅœจๅ…ถไป–ไบบ็š„็งไฟกๅˆ—่กจไธญๅˆ ้™คใ€‚" +#: src/view/com/feeds/FeedSourceCard.tsx:314 #: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ไฝ ็กฎๅฎš่ฆไปŽไฝ ็š„่ต„่ฎฏๆบไธญๅˆ ้™ค {0} ๅ—๏ผŸ" -#: src/view/com/composer/Composer.tsx:630 +#: src/view/com/composer/Composer.tsx:664 msgid "Are you sure you'd like to discard this draft?" msgstr "ไฝ ็กฎๅฎš่ฆไธขๅผƒ่ฟ™ๆฎต่‰็จฟๅ—๏ผŸ" @@ -577,7 +582,7 @@ msgstr "่ขซๅฑ่”ฝ็š„่ดฆๆˆทๆ— ๆณ•ๅœจไฝ ็š„ๅธ–ๅญไธญๅ›žๅคใ€ๆๅŠไฝ ๆˆ–ไปฅๅ…ถไป– msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "่ขซๅฑ่”ฝ็š„่ดฆๆˆทๆ— ๆณ•ๅœจไฝ ็š„ๅธ–ๅญไธญๅ›žๅคใ€ๆๅŠไฝ ๆˆ–ไปฅๅ…ถไป–ๆ–นๅผไธŽไฝ ไบ’ๅŠจใ€‚ไฝ ๅฐ†ไธไผš็œ‹ๅˆฐไป–ไปฌๆ‰€ๅ‘็š„ๅ†…ๅฎน๏ผŒๅŒๆ ทไป–ไปฌไนŸๆ— ๆณ•ๆŸฅ็œ‹ไฝ ็š„ๅ†…ๅฎนใ€‚" -#: src/view/com/post-thread/PostThread.tsx:363 +#: src/view/com/post-thread/PostThread.tsx:362 msgid "Blocked post." msgstr "ๅทฒๅฑ่”ฝๅธ–ๅญใ€‚" @@ -664,8 +669,8 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ฐๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜ๅทๅŠไธ‹ๅˆ’็บฟใ€‚ ้•ฟๅบฆ #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:432 -#: src/view/com/composer/Composer.tsx:438 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:466 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -682,7 +687,7 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ฐๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜ๅทๅŠไธ‹ๅˆ’็บฟใ€‚ ้•ฟๅบฆ #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:138 -#: src/view/screens/Search/Search.tsx:735 +#: src/view/screens/Search/Search.tsx:738 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "ๅ–ๆถˆ" @@ -711,6 +716,7 @@ msgstr "ๅ–ๆถˆ่ฃๅ‰ชๅ›พ็‰‡" msgid "Cancel profile editing" msgstr "ๅ–ๆถˆ็ผ–่พ‘ไธชไบบ่ต„ๆ–™" +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 #: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "ๅ–ๆถˆๅผ•็”จๅธ–ๅญ" @@ -944,7 +950,7 @@ msgstr "ๅ…ณ้—ญๅบ•้ƒจๅฏผ่ˆชๆ " msgid "Closes password update alert" msgstr "ๅ…ณ้—ญๅฏ†็ ๆ›ดๆ–ฐ่ญฆๅ‘Š" -#: src/view/com/composer/Composer.tsx:434 +#: src/view/com/composer/Composer.tsx:462 msgid "Closes post composer and discards post draft" msgstr "ๅ…ณ้—ญๅธ–ๅญ็ผ–่พ‘้กตๅนถไธขๅผƒ่‰็จฟ" @@ -981,7 +987,7 @@ msgstr "ๅฎŒๆˆๅผ•ๅฏผๅนถๅผ€ๅง‹ไฝฟ็”จไฝ ็š„่ดฆๆˆท" msgid "Complete the challenge" msgstr "ๅฎŒๆˆ้ชŒ่ฏ" -#: src/view/com/composer/Composer.tsx:551 +#: src/view/com/composer/Composer.tsx:583 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "ๆ’ฐๅ†™ๅธ–ๅญ็š„้•ฟๅบฆๆœ€ๅคšไธบ {MAX_GRAPHEME_LENGTH} ไธชๅญ—็ฌฆ" @@ -1083,6 +1089,7 @@ msgstr "ไธŠไธ‹ๆ–‡่œๅ•่ƒŒๆ™ฏ๏ผŒ็‚นๅ‡ปๅ…ณ้—ญ่œๅ•ใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:253 #: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "็ปง็ปญ" @@ -1096,6 +1103,7 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:250 #: src/screens/Onboarding/StepProfile/index.tsx:266 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "็ปง็ปญไธ‹ไธ€ๆญฅ" @@ -1204,6 +1212,7 @@ msgstr "ๅˆ›ๅปบ่ดฆๆˆท" msgid "Create an account" msgstr "ๅˆ›ๅปบไธ€ไธช่ดฆๆˆท" +#: src/screens/Onboarding/StepProfile/index.tsx:283 #: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "ๅˆ›ๅปบไธ€ไธชๅคดๅƒ" @@ -1349,7 +1358,7 @@ msgstr "ๅˆ ้™ค่ฟ™ๆกๅธ–ๅญ๏ผŸ" msgid "Deleted" msgstr "ๅทฒๅˆ ้™ค" -#: src/view/com/post-thread/PostThread.tsx:349 +#: src/view/com/post-thread/PostThread.tsx:348 msgid "Deleted post." msgstr "ๅทฒๅˆ ้™คๅธ–ๅญใ€‚" @@ -1368,7 +1377,7 @@ msgstr "ๆ่ฟฐ" msgid "Descriptive alt text" msgstr "ๆ่ฟฐๆ›ฟไปฃๆ–‡ๅญ—" -#: src/view/com/composer/Composer.tsx:277 +#: src/view/com/composer/Composer.tsx:270 msgid "Did you want to say anything?" msgstr "ๆœ‰ไป€ไนˆๆƒณ่ฏด็š„ๅ—๏ผŸ" @@ -1401,11 +1410,11 @@ msgstr "ๅ…ณ้—ญ่งฆๆ„Ÿๅ้ฆˆ" msgid "Disabled" msgstr "ๅ…ณ้—ญ" -#: src/view/com/composer/Composer.tsx:632 +#: src/view/com/composer/Composer.tsx:666 msgid "Discard" msgstr "ไธขๅผƒ" -#: src/view/com/composer/Composer.tsx:629 +#: src/view/com/composer/Composer.tsx:663 msgid "Discard draft?" msgstr "ไธขๅผƒ่‰็จฟ๏ผŸ" @@ -1457,6 +1466,8 @@ msgstr "ๅŸŸๅๅทฒ่ฎค่ฏ๏ผ" #: src/components/forms/DateField/index.tsx:80 #: src/screens/Onboarding/StepProfile/index.tsx:322 #: src/screens/Onboarding/StepProfile/index.tsx:325 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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 @@ -1888,6 +1899,7 @@ msgstr "ๆ— ๆณ•ๆ›ดๆ–ฐ่ฎพ็ฝฎ" msgid "Feed" msgstr "่ต„่ฎฏๆบ" +#: src/view/com/feeds/FeedSourceCard.tsx:251 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "็”ฑ {0} ๅˆ›ๅปบ็š„่ต„่ฎฏๆบ" @@ -2118,6 +2130,7 @@ msgstr "ๅผ€ๅง‹ๅง" msgid "Get Started" msgstr "ๅผ€ๅง‹" +#: src/screens/Onboarding/StepProfile/index.tsx:225 #: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "ไธบไฝ ็š„ไธชไบบ่ต„ๆ–™ๆทปๅŠ ๅคดๅƒ" @@ -2163,7 +2176,7 @@ msgstr "่ฟ”ๅ›žไธป้กต" msgid "Go Home" msgstr "่ฟ”ๅ›žไธป้กต" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/List/ChatListItem.tsx:209 msgid "Go to conversation with {0}" msgstr "่ฝฌๅˆฐไธŽ {0} ็š„ๅฏน่ฏ" @@ -2213,6 +2226,7 @@ msgstr "ไปปไฝ•็–‘้—ฎ๏ผŸ" msgid "Help" msgstr "ๅธฎๅŠฉ" +#: src/screens/Onboarding/StepProfile/index.tsx:228 #: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "้€š่ฟ‡ไธŠไผ ๅ›พ็‰‡ๆˆ–ๅˆ›ๅปบๅคดๅƒๆฅๅธฎๅŠฉไบบไปฌไบ†่งฃไฝ ไธๆ˜ฏๆœบๅ™จไบบใ€‚" @@ -2255,22 +2269,27 @@ msgstr "้š่—่ฟ™ๆกๅธ–ๅญ๏ผŸ" msgid "Hide user list" msgstr "้š่—็”จๆˆทๅˆ—่กจ" +#: src/view/com/posts/FeedErrorMessage.tsx:117 #: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "่ฟžๆŽฅ่ต„่ฎฏๆบๆœๅŠกๅ™จๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:105 #: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "่ต„่ฎฏๆบๆœๅŠกๅ™จไผผไนŽ้…็ฝฎ้”™่ฏฏ๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:111 #: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "่ต„่ฎฏๆบๆœๅŠกๅ™จไผผไนŽๅทฒไธ‹็บฟ๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:108 #: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "่ต„่ฎฏๆบๆœๅŠกๅ™จ่ฟ”ๅ›ž้”™่ฏฏ็š„ๅ“ๅบ”๏ผŒ่ฏท่”็ณป่ต„่ฎฏๆบ็š„็ปดๆŠค่€…ๅ้ฆˆ่ฟ™ไธช้—ฎ้ข˜ใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:102 #: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ๆ— ๆณ•ๆ‰พๅˆฐ่ฏฅ่ต„่ฎฏๆบ๏ผŒไผผไนŽๅทฒ่ขซๅˆ ้™คใ€‚" @@ -2621,6 +2640,7 @@ msgstr "ๅˆ—่กจๅคดๅƒ" msgid "List blocked" msgstr "ๅˆ—่กจๅทฒๅฑ่”ฝ" +#: src/view/com/feeds/FeedSourceCard.tsx:253 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "ๅˆ—่กจ็”ฑ {0} ๅˆ›ๅปบ" @@ -2658,6 +2678,7 @@ msgstr "ๅˆ—่กจ" msgid "Lists blocking this user:" msgstr "ๅฑ่”ฝ่ฏฅ็”จๆˆท็š„ๅˆ—่กจ๏ผš" +#: src/view/screens/Notifications.tsx:184 #: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "ๅŠ ่ฝฝๆ–ฐ็š„้€š็Ÿฅ" @@ -2757,6 +2778,7 @@ msgstr "็งไฟก {0}" msgid "Message deleted" msgstr "็งไฟกๅทฒๅˆ ้™ค" +#: src/view/com/posts/FeedErrorMessage.tsx:200 #: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "ๆฅ่‡ชๆœๅŠกๅ™จ็š„ไฟกๆฏ๏ผš{0}" @@ -3047,7 +3069,7 @@ msgctxt "action" msgid "New post" msgstr "ๆ–ฐๅธ–ๅญ" -#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Feeds.tsx:627 #: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 @@ -3129,6 +3151,7 @@ msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไปปไฝ•็งไฟก" msgid "No more conversations to show" msgstr "ๆฒกๆœ‰ๆ›ดๅคšๅฏน่ฏๅฏๆ˜พ็คบ" +#: src/view/com/notifications/Feed.tsx:118 #: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "่ฟ˜ๆฒกๆœ‰้€š็Ÿฅ๏ผ" @@ -3142,7 +3165,7 @@ msgstr "ๆฒกๆœ‰ไบบ" #: src/screens/Profile/Sections/Feed.tsx:59 msgid "No posts yet." -msgstr "" +msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไปปไฝ•ๅธ–ๅญใ€‚" #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 @@ -3226,7 +3249,7 @@ msgstr "้€š็Ÿฅๆ็คบ้Ÿณ" msgid "Notification Sounds" msgstr "้€š็Ÿฅๆ็คบ้Ÿณ" -#: src/Navigation.tsx:499 +#: src/Navigation.tsx:516 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 #: src/view/shell/bottom-bar/BottomBar.tsx:227 @@ -3278,10 +3301,11 @@ msgstr "ไผ˜ๅ…ˆๆ˜พ็คบๆœ€ๆ—ง็š„ๅ›žๅค" msgid "Onboarding reset" msgstr "้‡ๆ–ฐๅผ€ๅง‹ๅผ•ๅฏผๆต็จ‹" -#: src/view/com/composer/Composer.tsx:503 +#: src/view/com/composer/Composer.tsx:531 msgid "One or more images is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผ ๅ›พ็‰‡็ผบๅคฑไบ†ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" +#: src/screens/Onboarding/StepProfile/index.tsx:117 #: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "็›ฎๅ‰ๅชๆ”ฏๆŒไธŠไผ  .jpg ๆˆ– .png ๆ ผๅผ็š„ๅ›พ็‰‡ๆ–‡ไปถ" @@ -3312,17 +3336,18 @@ msgstr "ๅผ€ๅฏ" msgid "Open {name} profile shortcut menu" msgstr "ๅผ€ๅฏ {name} ไธชไบบ่ต„ๆ–™ๅฟซๆท่œๅ•" +#: src/screens/Onboarding/StepProfile/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "ๅผ€ๅฏๅคดๅƒๅˆ›ๅปบๅทฅๅ…ท" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/List/ChatListItem.tsx:217 +#: src/screens/Messages/List/ChatListItem.tsx:218 msgid "Open conversation options" msgstr "ๅผ€ๅฏๅฏน่ฏ้€‰้กน" -#: src/view/com/composer/Composer.tsx:613 -#: src/view/com/composer/Composer.tsx:614 +#: src/view/com/composer/Composer.tsx:647 +#: src/view/com/composer/Composer.tsx:648 msgid "Open emoji picker" msgstr "ๅผ€ๅฏ่กจๆƒ…็ฌฆๅท้€‰ๆ‹ฉๅ™จ" @@ -3676,7 +3701,7 @@ msgstr "่ฏทไปฅ @{0} ่บซไปฝ็™ปๅฝ•" msgid "Please Verify Your Email" msgstr "่ฏท้ชŒ่ฏไฝ ็š„็”ตๅญ้‚ฎ็ฎฑ" -#: src/view/com/composer/Composer.tsx:281 +#: src/view/com/composer/Composer.tsx:274 msgid "Please wait for your link card to finish loading" msgstr "่ฏท็ญ‰ๅพ…ไฝ ็š„้“พๆŽฅๅก็‰‡ๅŠ ่ฝฝๅฎŒๆฏ•" @@ -3688,16 +3713,16 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "่‰ฒๆƒ…ๅ†…ๅฎน" -#: src/view/com/composer/Composer.tsx:477 -#: src/view/com/composer/Composer.tsx:485 +#: src/view/com/composer/Composer.tsx:505 +#: src/view/com/composer/Composer.tsx:513 msgctxt "action" msgid "Post" msgstr "ๅ‘ๅธƒ" -#: src/view/com/post-thread/PostThread.tsx:430 +#: src/view/com/post-thread/PostThread.tsx:426 msgctxt "description" msgid "Post" -msgstr "ๅ‘ๅธƒ" +msgstr "ๅธ–ๅญ" #: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" @@ -3713,7 +3738,7 @@ msgstr "@{0} ็š„ๅธ–ๅญ" msgid "Post deleted" msgstr "ๅทฒๅˆ ้™คๅธ–ๅญ" -#: src/view/com/post-thread/PostThread.tsx:193 +#: src/view/com/post-thread/PostThread.tsx:192 msgid "Post hidden" msgstr "ๅทฒ้š่—ๅธ–ๅญ" @@ -3735,8 +3760,8 @@ msgstr "ๅธ–ๅญ่ฏญ่จ€" msgid "Post Languages" msgstr "ๅธ–ๅญ่ฏญ่จ€" -#: src/view/com/post-thread/PostThread.tsx:188 -#: src/view/com/post-thread/PostThread.tsx:200 +#: src/view/com/post-thread/PostThread.tsx:187 +#: src/view/com/post-thread/PostThread.tsx:199 msgid "Post not found" msgstr "ๆ— ๆณ•ๆ‰พๅˆฐๅธ–ๅญ" @@ -3752,6 +3777,7 @@ msgstr "ๅธ–ๅญ" msgid "Posts can be muted based on their text, their tags, or both." msgstr "ๅธ–ๅญๅฏไปฅๆ นๆฎๅ…ถๆ–‡ๆœฌใ€ๆ ‡็ญพๆˆ–ไธค่€…ๆฅ้š่—ใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:68 #: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "ๅธ–ๅญๅทฒ้š่—" @@ -3845,14 +3871,16 @@ msgstr "ๅ…ฌๅผ€ไธ”ๅฏๅ…ฑไบซ็š„ๆ‰น้‡้š่—ๆˆ–ๅฑ่”ฝๅˆ—่กจใ€‚" msgid "Public, shareable lists which can drive feeds." msgstr "ๅ…ฌๅผ€ไธ”ๅฏๅ…ฑไบซ็š„ๅˆ—่กจ๏ผŒๅฏไฝœไธบ่ต„่ฎฏๆบไฝฟ็”จใ€‚" -#: src/view/com/composer/Composer.tsx:462 +#: src/view/com/composer/Composer.tsx:490 msgid "Publish post" msgstr "ๅ‘ๅธƒๅธ–ๅญ" -#: src/view/com/composer/Composer.tsx:462 +#: src/view/com/composer/Composer.tsx:490 msgid "Publish reply" msgstr "ๅ‘ๅธƒๅ›žๅค" +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.tsx:115 #: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 @@ -3888,12 +3916,13 @@ msgstr "้‡ๆ–ฐ่ฟžๆŽฅ" msgid "Reload conversations" msgstr "้‡ๆ–ฐๅŠ ่ฝฝๅฏน่ฏ" -#: src/components/dialogs/MutedWords.tsx:286 +#: src/components/dialogs/MutedWords.tsx:288 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: 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:212 msgid "Remove" msgstr "็งป้™ค" @@ -3913,16 +3942,20 @@ msgstr "ๅˆ ้™คๆจชๅน…ๅ›พ็‰‡" msgid "Remove embed" msgstr "ๅˆ ้™คๅตŒๅ…ฅ" +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "ๅˆ ้™ค่ต„่ฎฏๆบ" +#: src/view/com/posts/FeedErrorMessage.tsx:209 #: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "ๅˆ ้™ค่ต„่ฎฏๆบ๏ผŸ" +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 @@ -3931,6 +3964,7 @@ msgstr "ๅˆ ้™ค่ต„่ฎฏๆบ๏ผŸ" msgid "Remove from my feeds" msgstr "ไปŽ่‡ชๅฎšไน‰่ต„่ฎฏๆบไธญๅˆ ้™ค" +#: src/view/com/feeds/FeedSourceCard.tsx:312 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "ไปŽ่‡ชๅฎšไน‰่ต„่ฎฏๆบไธญๅˆ ้™ค๏ผŸ" @@ -3959,11 +3993,14 @@ msgstr "ไปŽๆœ็ดขๅކๅฒไธญๅˆ ้™คไธชไบบ่ต„ๆ–™" msgid "Remove quote" msgstr "ๅˆ ้™คๅผ•็”จ" +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 #: src/view/com/util/post-ctrls/RepostButton.tsx:92 #: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "ๅˆ ้™ค่ฝฌๅ‘" +#: src/view/com/posts/FeedErrorMessage.tsx:210 #: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "ไปŽไฟๅญ˜็š„่ต„่ฎฏๆบๅˆ—่กจไธญๅˆ ้™ค่ฟ™ไธช่ต„่ฎฏๆบ" @@ -3973,6 +4010,7 @@ msgstr "ไปŽไฟๅญ˜็š„่ต„่ฎฏๆบๅˆ—่กจไธญๅˆ ้™ค่ฟ™ไธช่ต„่ฎฏๆบ" msgid "Removed from list" msgstr "ไปŽๅˆ—่กจไธญๅˆ ้™ค" +#: src/view/com/feeds/FeedSourceCard.tsx:139 #: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "ๅทฒไปŽ่‡ชๅฎšไน‰่ต„่ฎฏๆบไธญๅˆ ้™ค" @@ -4004,7 +4042,7 @@ msgstr "ๅ›žๅค" msgid "Replies to this thread are disabled" msgstr "ๅฏน่ฟ™ๆก่ฎจ่ฎบไธฒ็š„ๅ›žๅคๅทฒ่ขซ็ฆ็”จ" -#: src/view/com/composer/Composer.tsx:475 +#: src/view/com/composer/Composer.tsx:503 msgctxt "action" msgid "Reply" msgstr "ๅ›žๅค" @@ -4084,6 +4122,9 @@ msgstr "ไธพๆŠฅ่ฟ™ๆกๅธ–ๅญ" msgid "Report this user" msgstr "ไธพๆŠฅ่ฟ™ไธช็”จๆˆท" +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 #: src/view/com/util/post-ctrls/RepostButton.tsx:64 #: src/view/com/util/post-ctrls/RepostButton.tsx:93 #: src/view/com/util/post-ctrls/RepostButton.tsx:109 @@ -4096,6 +4137,7 @@ msgstr "่ฝฌๅ‘" msgid "Repost" msgstr "่ฝฌๅ‘" +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 @@ -4476,6 +4518,7 @@ msgstr "ๆไบคๅ้ฆˆ" msgid "Send message" msgstr "ๅ‘้€็งไฟก" +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 #: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "ๅ‘้€็งไฟก็ป™..." @@ -4748,6 +4791,9 @@ msgstr "ๅœจไฝ ็š„่ต„่ฎฏๆบไธญๆ˜พ็คบๆฅ่‡ช {0} ็š„ๅธ–ๅญ" #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -4781,6 +4827,9 @@ msgstr "็™ปๅ‡บ" #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5058,8 +5107,8 @@ msgstr "ไปฅไธ‹ๆ ‡่ฎฐๅทฒๅบ”็”จๅˆฐไฝ ็š„ๅ†…ๅฎนใ€‚" msgid "The following steps will help customize your Bluesky experience." msgstr "ไปฅไธ‹ๆญฅ้ชคๅฐ†ๅธฎๅŠฉๅฎšๅˆถไฝ ็š„ Bluesky ไฝ“้ชŒใ€‚" -#: src/view/com/post-thread/PostThread.tsx:189 -#: src/view/com/post-thread/PostThread.tsx:201 +#: src/view/com/post-thread/PostThread.tsx:188 +#: src/view/com/post-thread/PostThread.tsx:200 msgid "The post may have been deleted." msgstr "่ฟ™ๆกๅธ–ๅญๅฏ่ƒฝๅทฒ่ขซๅˆ ้™คใ€‚" @@ -5084,6 +5133,7 @@ msgstr "ๅœ็”จ่ดฆๆˆทๆฒกๆœ‰ๆ—ถ้—ด้™ๅˆถ๏ผŒไฝ ๅฏไปฅ้šๆ—ถๅ†ณๅฎšๅ›žๆฅใ€‚" msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "่ฟžๆŽฅ่‡ณๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„ไบ’่”็ฝ‘่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:145 #: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ๅˆ ้™ค่ต„่ฎฏๆบๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„ไบ’่”็ฝ‘่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" @@ -5108,11 +5158,14 @@ msgstr "่ฟžๆŽฅ Tenor ๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜ใ€‚" msgid "There was an issue contacting the server" msgstr "่ฟžๆŽฅๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 #: src/view/com/feeds/FeedSourceCard.tsx:128 #: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "่ฟžๆŽฅๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" +#: src/view/com/notifications/Feed.tsx:126 #: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ๅˆทๆ–ฐ้€š็Ÿฅๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ็‚นๅ‡ป้‡่ฏ•ใ€‚" @@ -5211,28 +5264,24 @@ msgstr "ๆญคๅ†…ๅฎน็”ฑ {0} ๆ‰˜็ฎกใ€‚ๆ˜ฏๅฆ่ฆๅฏ็”จๅค–้ƒจๅช’ไฝ“๏ผŸ" msgid "This content is not available because one of the users involved has blocked the other." msgstr "็”ฑไบŽๅ…ถไธญไธ€ไธช็”จๆˆทๅฑ่”ฝไบ†ๅฆไธ€ไธช็”จๆˆท๏ผŒๆญคๅ†…ๅฎนไธๅฏ็”จใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:114 #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "ๆฒกๆœ‰ Bluesky ่ดฆๆˆท๏ผŒๆ— ๆณ•ๆŸฅ็œ‹ๆญคๅ†…ๅฎนใ€‚" -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/List/ChatListItem.tsx:211 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." msgstr "่ฏฅๅŠŸ่ƒฝๆญฃๅœจๆต‹่ฏ•๏ผŒไฝ ๅฏไปฅๅœจ<0>่ฟ™็ฏ‡ๅšๅฎขๆ–‡็ซ ไธญ่Žทๅพ—ๅ…ณไบŽๅฏผๅ‡บๆ•ฐๆฎ็š„ๆ›ดๅคšไฟกๆฏใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:120 #: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "่ฏฅ่ต„่ฎฏๆบๅฝ“ๅ‰ไฝฟ็”จไบบๆ•ฐ่พƒๅคš๏ผŒๆœๅŠกๆš‚ๆ—ถไธๅฏ็”จใ€‚่ฏท็จๅŽๅ†่ฏ•ใ€‚" -#: src/screens/Profile/Sections/Feed.tsx:59 -#: src/view/screens/ProfileFeed.tsx:471 -#: src/view/screens/ProfileList.tsx:729 -#~ msgid "This feed is empty!" -#~ 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 "่ฟ™ไธช่ต„่ฎฏๆบๆ˜ฏ็ฉบ็š„๏ผไฝ ๆˆ–่ฎธ้œ€่ฆๅ…ˆๅ…ณๆณจๆ›ดๅคš็š„็”จๆˆท๏ผŒๆˆ–ๆฃ€ๆŸฅไฝ ็š„่ฏญ่จ€่ฎพ็ฝฎใ€‚" @@ -5240,7 +5289,7 @@ msgstr "่ฟ™ไธช่ต„่ฎฏๆบๆ˜ฏ็ฉบ็š„๏ผไฝ ๆˆ–่ฎธ้œ€่ฆๅ…ˆๅ…ณๆณจๆ›ดๅคš็š„็”จๆˆท๏ผŒๆˆ– #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." -msgstr "" +msgstr "่ฟ™้‡Œๆ˜ฏ็ฉบ็š„ใ€‚" #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." @@ -5468,6 +5517,7 @@ msgstr "ๅ–ๆถˆๅฑ่”ฝ่ดฆๆˆท" msgid "Unblock Account?" msgstr "ๅ–ๆถˆๅฑ่”ฝ่ดฆๆˆท๏ผŸ" +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 @@ -5565,6 +5615,7 @@ msgstr "ๆ›ดๆ–ฐ่‡ณ {handle}" msgid "Updating..." msgstr "ๆ›ดๆ–ฐไธญ..." +#: src/screens/Onboarding/StepProfile/index.tsx:281 #: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "ไธŠไผ ๅ›พ็‰‡" @@ -5786,6 +5837,7 @@ msgstr "ๆŸฅ็œ‹่ฟ™ไธชๆ ‡่ฎฐ็š„่ฏฆๆƒ…" #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 #: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "ๆŸฅ็œ‹ไธชไบบ่ต„ๆ–™" @@ -5889,9 +5941,9 @@ 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:318 +#: src/view/com/composer/Composer.tsx:311 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "" +msgstr "ๅพˆๆŠฑๆญ‰๏ผไฝ ๆ‰€ๅ›žๅค็š„ๅธ–ๅญๅทฒ่ขซๅˆ ้™คใ€‚" #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 @@ -5912,7 +5964,7 @@ msgstr "ไฝ ๆ„Ÿๅ…ด่ถฃ็š„ๆ˜ฏไป€ไนˆ๏ผŸ" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:359 +#: src/view/com/composer/Composer.tsx:352 msgid "What's up?" msgstr "ๅ‘็”Ÿไบ†ไป€ไนˆๆ–ฐ้ฒœไบ‹๏ผŸ" @@ -5971,11 +6023,11 @@ msgstr "ๅฎฝ" msgid "Write a message" msgstr "็ผ–ๅ†™็งไฟก" -#: src/view/com/composer/Composer.tsx:549 +#: src/view/com/composer/Composer.tsx:581 msgid "Write post" msgstr "ๆ’ฐๅ†™ๅธ–ๅญ" -#: src/view/com/composer/Composer.tsx:358 +#: src/view/com/composer/Composer.tsx:351 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "ๆ’ฐๅ†™ไฝ ็š„ๅ›žๅค" @@ -6061,7 +6113,7 @@ msgstr "ไฝ ็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไปปไฝ•ๅ›บๅฎš็š„่ต„่ฎฏๆบใ€‚" msgid "You don't have any saved feeds." msgstr "ไฝ ็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไปปไฝ•ไฟๅญ˜็š„่ต„่ฎฏๆบใ€‚" -#: src/view/com/post-thread/PostThread.tsx:195 +#: src/view/com/post-thread/PostThread.tsx:194 msgid "You have blocked the author or you have been blocked by the author." msgstr "ไฝ ๅทฒๅฑ่”ฝ่ฏฅๅธ–ๅญไฝœ่€…๏ผŒๆˆ–ไฝ ๅทฒ่ขซ่ฏฅไฝœ่€…ๅฑ่”ฝใ€‚" @@ -6258,7 +6310,7 @@ msgstr "ไฝ ็š„้š่—่ฏๆฑ‡" msgid "Your password has been changed successfully!" msgstr "ไฝ ็š„ๅฏ†็ ๅทฒๆˆๅŠŸๆ›ดๆ”น๏ผ" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:342 msgid "Your post has been published" msgstr "ไฝ ็š„ๅธ–ๅญๅทฒๅ‘ๅธƒ" @@ -6274,7 +6326,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:348 +#: src/view/com/composer/Composer.tsx:341 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 b931d211e0..09f48c1d0d 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-01 19:07+0800\n" +"PO-Revision-Date: 2024-06-11 16:18+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" @@ -15,7 +15,7 @@ msgstr "" #: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" -msgstr "" +msgstr "๏ผˆๅซๆœ‰ๅตŒๅ…ฅๅ…งๅฎน๏ผ‰" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" @@ -33,6 +33,7 @@ msgstr "{0, plural, one {่ฉฒๅธณ่™Ÿๆœ‰ # ๅ€‹ๆจ™่จ˜} other {่ฉฒๅธณ่™Ÿๆœ‰ # ๅ€‹ๆจ™ msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {่ฉฒๅ…งๅฎนๆœ‰ # ๅ€‹ๆจ™่จ˜} other {่ฉฒๅ…งๅฎนๆœ‰ # ๅ€‹ๆจ™่จ˜}}" +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 #: src/view/com/util/post-ctrls/RepostButton.tsx:65 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# ๅ€‹่ฝ‰่ฒผ} other {# ๅ€‹่ฝ‰่ฒผ}}" @@ -59,6 +60,7 @@ msgstr "{0, plural, one {ๅ–œๆญก๏ผˆ# ๅ€‹ๅ–œๆญก๏ผ‰} other {ๅ–œๆญก๏ผˆ# ๅ€‹ๅ–œๆญก๏ผ‰ msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {ๅ–œๆญก} other {ๅ–œๆญก}}" +#: src/view/com/feeds/FeedSourceCard.tsx:301 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural,one {# ๅ€‹็”จๆˆถๅทฒๅ–œๆญก} other {# ๅ€‹็”จๆˆถๅทฒๅ–œๆญก}}" @@ -275,6 +277,7 @@ msgstr "ๅฐ‡ไปฅไธ‹ DNS ่จ˜้Œ„ๆ–ฐๅขžๅˆฐๆ‚จ็š„็ถฒๅŸŸ๏ผš" msgid "Add to Lists" msgstr "ๆ–ฐๅขž่‡ณๅˆ—่กจ" +#: src/view/com/feeds/FeedSourceCard.tsx:267 #: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" msgstr "ๅŠ ๅ…ฅๅˆฐๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -284,6 +287,7 @@ msgstr "ๅŠ ๅ…ฅๅˆฐๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" msgid "Added to list" msgstr "ๆ–ฐๅขž่‡ณๅˆ—่กจ" +#: src/view/com/feeds/FeedSourceCard.tsx:126 #: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" msgstr "ๅŠ ๅ…ฅๅˆฐๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -465,11 +469,12 @@ msgstr "ๆ‚จ็ขบๅฎš่ฆๅˆช้™ค้€™ๅ‰‡่จŠๆฏๅ—Ž๏ผŸ่ฉฒ่จŠๆฏๅฐ‡็‚บๆ‚จๅˆช้™ค๏ผŒไฝ†ไธๆœƒ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "ๆ‚จ็ขบๅฎš่ฆ้›ข้–‹ๆญคๅฐ่ฉฑๅ—Ž๏ผŸๆ‚จ็š„่จŠๆฏๅฐ‡็‚บๆ‚จๅˆช้™ค๏ผŒไฝ†ไธๆœƒ็‚บๅ…ถไป–ๅƒ่ˆ‡่€…ๅˆช้™คใ€‚" +#: src/view/com/feeds/FeedSourceCard.tsx:314 #: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ๆ‚จ็ขบๅฎš่ฆๅพžๆ‚จ็š„ๅ‹•ๆ…‹ไธญ็งป้™ค {0} ๅ—Ž๏ผŸ" -#: src/view/com/composer/Composer.tsx:630 +#: src/view/com/composer/Composer.tsx:664 msgid "Are you sure you'd like to discard this draft?" msgstr "ๆ‚จ็ขบๅฎš่ฆๆจๆฃ„ๆญค่‰็จฟๅ—Ž๏ผŸ" @@ -577,7 +582,7 @@ msgstr "่ขซๅฐ้Ž–็š„ๅธณ่™Ÿ็„กๆณ•ๅœจๆ‚จ็š„่จŽ่ซ–ไธฒไธญๅ›ž่ฆ†ใ€ๆๅŠๆ‚จ๏ผŒๆˆ–ไปฅ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "่ขซๅฐ้Ž–็š„ๅธณ่™Ÿ็„กๆณ•ๅœจๆ‚จ็š„่จŽ่ซ–ไธฒไธญๅ›ž่ฆ†ใ€ๆๅŠๆ‚จ๏ผŒๆˆ–ไปฅๅ…ถไป–ๆ–นๅผ่ˆ‡ๆ‚จไบ’ๅ‹•ใ€‚ๆ‚จๅฐ‡็œ‹ไธๅˆฐไป–ๅ€‘็š„ๅ…งๅฎน๏ผŒไป–ๅ€‘ไนŸๆœƒ่ขซ้˜ปๆญข็œ‹ๅˆฐๆ‚จ็š„ๅ…งๅฎนใ€‚" -#: src/view/com/post-thread/PostThread.tsx:363 +#: src/view/com/post-thread/PostThread.tsx:362 msgid "Blocked post." msgstr "ๅทฒๅฐ้Ž–่ฒผๆ–‡ใ€‚" @@ -664,8 +669,8 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ธๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜่™ŸๅŠๅบ•็ทšใ€‚้•ทๅบฆๅฟ…้ ˆ #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:432 -#: src/view/com/composer/Composer.tsx:438 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:466 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -682,7 +687,7 @@ msgstr "ๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ธๅญ—ใ€็ฉบๆ ผใ€็ ดๆŠ˜่™ŸๅŠๅบ•็ทšใ€‚้•ทๅบฆๅฟ…้ ˆ #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:138 -#: src/view/screens/Search/Search.tsx:735 +#: src/view/screens/Search/Search.tsx:738 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "ๅ–ๆถˆ" @@ -711,13 +716,14 @@ msgstr "ๅ–ๆถˆๅœ–็‰‡่ฃๅ‰ช" msgid "Cancel profile editing" msgstr "ๅ–ๆถˆ็ทจ่ผฏๅ€‹ไบบๆช”ๆกˆ" +#: src/view/com/util/post-ctrls/RepostButton.tsx:132 #: src/view/com/util/post-ctrls/RepostButton.tsx:132 msgid "Cancel quote post" msgstr "ๅ–ๆถˆๅผ•็”จ่ฒผๆ–‡" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +msgstr "ๅ–ๆถˆ้‡ๆ–ฐๅ•Ÿ็”จไธฆ็™ปๅ‡บ" #: src/view/com/modals/ListAddRemoveUsers.tsx:87 #: src/view/shell/desktop/Search.tsx:214 @@ -862,11 +868,11 @@ msgstr "้ปžๆ“Š้€™่ฃก" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "้ปžๆ“Š้€™่ฃกไปฅ็žญ่งฃๆœ‰้—œๅœ็”จๅธณ่™Ÿ็š„่ฉณ็ดฐ่ณ‡่จŠ" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" +msgstr "้ปžๆ“Š้€™่ฃกไปฅ็žญ่งฃๆ›ดๅคš่ณ‡่จŠใ€‚" #: src/components/TagMenu/index.web.tsx:138 msgid "Click here to open tag menu for {tag}" @@ -944,7 +950,7 @@ msgstr "้—œ้–‰ๅบ•้ƒจๅฐŽ่ฆฝๅˆ—" msgid "Closes password update alert" msgstr "้—œ้–‰ๅฏ†็ขผๆ›ดๆ–ฐ่ญฆๅ‘Š" -#: src/view/com/composer/Composer.tsx:434 +#: src/view/com/composer/Composer.tsx:462 msgid "Closes post composer and discards post draft" msgstr "้—œ้–‰่ฒผๆ–‡็ทจ่ผฏ้ ไธฆๆจๆฃ„่‰็จฟ" @@ -981,7 +987,7 @@ msgstr "ๅฎŒๆˆๅˆๅง‹่จญๅฎšไธฆ้–‹ๅง‹ไฝฟ็”จๆ‚จ็š„ๅธณ่™Ÿ" msgid "Complete the challenge" msgstr "ๅฎŒๆˆ้ฉ—่ญ‰" -#: src/view/com/composer/Composer.tsx:551 +#: src/view/com/composer/Composer.tsx:583 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "ๆ’ฐๅฏซ่ฒผๆ–‡็š„้•ทๅบฆๆœ€ๅคš็‚บ {MAX_GRAPHEME_LENGTH} ๅ€‹ๅญ—ๅ…ƒ" @@ -1083,6 +1089,7 @@ msgstr "ๅฝˆๅ‡บๅผ้ธๅ–ฎ่ƒŒๆ™ฏ๏ผŒ้ปžๆ“Šไปฅ้—œ้–‰้ธๅ–ฎใ€‚" #: src/screens/Onboarding/StepInterests/index.tsx:253 #: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "็นผ็บŒ" @@ -1096,6 +1103,7 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:250 #: src/screens/Onboarding/StepProfile/index.tsx:266 +#: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:213 msgid "Continue to next step" msgstr "็นผ็บŒไธ‹ไธ€ๆญฅ" @@ -1204,6 +1212,7 @@ msgstr "ๅปบ็ซ‹ๅธณ่™Ÿ" msgid "Create an account" msgstr "ๅปบ็ซ‹ไธ€ๅ€‹ๅธณ่™Ÿ" +#: src/screens/Onboarding/StepProfile/index.tsx:283 #: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" msgstr "ๆˆ–ๆ˜ฏๅปบ็ซ‹ไธ€ๅ€‹้ ญๅƒ" @@ -1266,11 +1275,11 @@ msgstr "ๅ‡บ็”Ÿๆ—ฅๆœŸ" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 #: src/view/screens/Settings/index.tsx:806 msgid "Deactivate account" -msgstr "" +msgstr "ๅœ็”จๅธณ่™Ÿ" #: src/view/screens/Settings/index.tsx:818 msgid "Deactivate my account" -msgstr "" +msgstr "ๅœ็”จๆˆ‘็š„ๅธณ่™Ÿ" #: src/view/screens/Settings/index.tsx:873 msgid "Debug Moderation" @@ -1349,7 +1358,7 @@ msgstr "ๅˆช้™ค้€™ๆข่ฒผๆ–‡๏ผŸ" msgid "Deleted" msgstr "ๅทฒๅˆช้™ค" -#: src/view/com/post-thread/PostThread.tsx:349 +#: src/view/com/post-thread/PostThread.tsx:348 msgid "Deleted post." msgstr "ๅทฒๅˆช้™ค่ฒผๆ–‡ใ€‚" @@ -1368,7 +1377,7 @@ msgstr "ๆ่ฟฐ" msgid "Descriptive alt text" msgstr "็”Ÿๅ‹•็š„ๆ›ฟไปฃๆ–‡ๅญ—" -#: src/view/com/composer/Composer.tsx:277 +#: src/view/com/composer/Composer.tsx:270 msgid "Did you want to say anything?" msgstr "ๆœ‰ไป€้บผๆƒณ่ชช็š„ๅ—Ž๏ผŸ" @@ -1401,11 +1410,11 @@ msgstr "้—œ้–‰่งธ่ฆบๅ›ž้ฅ‹" msgid "Disabled" msgstr "ๅœ็”จ" -#: src/view/com/composer/Composer.tsx:632 +#: src/view/com/composer/Composer.tsx:666 msgid "Discard" msgstr "ๆจๆฃ„" -#: src/view/com/composer/Composer.tsx:629 +#: src/view/com/composer/Composer.tsx:663 msgid "Discard draft?" msgstr "ๆจๆฃ„่‰็จฟ๏ผŸ" @@ -1457,6 +1466,8 @@ msgstr "็ถฒๅŸŸๅทฒ้ฉ—่ญ‰๏ผ" #: src/components/forms/DateField/index.tsx:80 #: src/screens/Onboarding/StepProfile/index.tsx:322 #: src/screens/Onboarding/StepProfile/index.tsx:325 +#: src/screens/Onboarding/StepProfile/index.tsx:322 +#: 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 @@ -1483,7 +1494,7 @@ msgstr "ๅฎŒๆˆ" #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 msgid "Done{extraText}" -msgstr "ๅฎŒๆˆ {extraText}" +msgstr "ๅฎŒๆˆ{extraText}" #: src/view/screens/Settings/ExportCarDialog.tsx:77 #: src/view/screens/Settings/ExportCarDialog.tsx:81 @@ -1888,6 +1899,7 @@ msgstr "็„กๆณ•ๆ›ดๆ–ฐ่จญๅฎš" msgid "Feed" msgstr "ๅ‹•ๆ…‹" +#: src/view/com/feeds/FeedSourceCard.tsx:251 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} ๅปบ็ซ‹็š„ๅ‹•ๆ…‹ๆบ" @@ -2118,6 +2130,7 @@ msgstr "้–‹ๅง‹" msgid "Get Started" msgstr "้–‹ๅง‹" +#: src/screens/Onboarding/StepProfile/index.tsx:225 #: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "็‚บๆ‚จ็š„ๅ€‹ไบบๆช”ๆกˆๅขžๆทปๆ–ฐ้ก" @@ -2163,7 +2176,7 @@ msgstr "ๅ‰ๅพ€้ฆ–้ " msgid "Go Home" msgstr "ๅ‰ๅพ€้ฆ–้ " -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/List/ChatListItem.tsx:209 msgid "Go to conversation with {0}" msgstr "่ˆ‡ {0} ๅฐ่ฉฑ" @@ -2213,6 +2226,7 @@ msgstr "้‡ๅˆฐๅ•้กŒ๏ผŸ" msgid "Help" msgstr "ๅนซๅŠฉ" +#: src/screens/Onboarding/StepProfile/index.tsx:228 #: src/screens/Onboarding/StepProfile/index.tsx:228 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "้€้ŽไธŠๅ‚ณๅœ–็‰‡ๆˆ–ๅปบ็ซ‹้ ญๅƒไพ†ๅนซๅŠฉไบบๅ€‘็Ÿฅ้“ๆ‚จไธๆ˜ฏๆฉŸๅ™จไบบใ€‚" @@ -2255,22 +2269,27 @@ msgstr "้šฑ่—้€™ๅ‰‡่ฒผๆ–‡๏ผŸ" msgid "Hide user list" msgstr "้šฑ่—็”จๆˆถๅˆ—่กจ" +#: src/view/com/posts/FeedErrorMessage.tsx:117 #: src/view/com/posts/FeedErrorMessage.tsx:117 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒ่ˆ‡ๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จ้€ฃ็ทšๆ™‚็™ผ็”Ÿไบ†ๆŸ็จฎๅ•้กŒใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:105 #: src/view/com/posts/FeedErrorMessage.tsx:105 msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จไผผไนŽ่จญๅฎš้Œฏ่ชคใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:111 #: src/view/com/posts/FeedErrorMessage.tsx:111 msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จไผผไนŽๅทฒ้›ข็ทšใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:108 #: src/view/com/posts/FeedErrorMessage.tsx:108 msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." msgstr "ๆŠฑๆญ‰๏ผŒๅ‹•ๆ…‹ๆบ็š„ไผบๆœๅ™จ็ตฆๅ‡บไบ†้Œฏ่ชค็š„ๅ›žๆ‡‰ใ€‚่ซ‹ๅ‘่ฉฒๅ‹•ๆ…‹ๆบ็š„ๆ“ๆœ‰่€…ๅ ฑๅ‘Š้€™ๅ€‹ๅ•้กŒใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:102 #: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็„กๆณ•ๆ‰พๅˆฐ้€™ๅ€‹ๅ‹•ๆ…‹ๆบ๏ผŒๅฎƒๅฏ่ƒฝๅทฒ่ขซๅˆช้™คใ€‚" @@ -2351,7 +2370,7 @@ msgstr "ๅฆ‚ๆžœๆ‚จๆƒณๆ›ดๆ”นๅฏ†็ขผ๏ผŒๆˆ‘ๅ€‘ๅฐ‡ๅ‘ๆ‚จ็™ผ้€ไธ€ๅ€‹้ฉ—่ญ‰็ขผไปฅ็ขบ่ช #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "" +msgstr "ๅฆ‚ๆžœๆ‚จๆƒณๆ›ดๆ”นๅธณ่™Ÿไปฃ็ขผๆˆ–้›ปๅญ้ƒตไปถ๏ผŒ่ซ‹ๅœจๅœ็”จๅธณ่™Ÿๅ‰ๆ›ดๆ”นใ€‚" #: src/lib/moderation/useReportOptions.ts:37 msgid "Illegal and Urgent" @@ -2621,6 +2640,7 @@ msgstr "ๅˆ—่กจ้ ญๅƒ" msgid "List blocked" msgstr "ๅˆ—่กจๅทฒๅฐ้Ž–" +#: src/view/com/feeds/FeedSourceCard.tsx:253 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "ๅˆ—่กจ็”ฑ {0} ๅปบ็ซ‹" @@ -2658,6 +2678,7 @@ msgstr "ๅˆ—่กจ" msgid "Lists blocking this user:" msgstr "ๅฐ้Ž–ๆญค็”จๆˆถ็š„ๅˆ—่กจ๏ผš" +#: src/view/screens/Notifications.tsx:184 #: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "่ผ‰ๅ…ฅๆ–ฐ็š„้€š็Ÿฅ" @@ -2680,7 +2701,7 @@ msgstr "ๆ—ฅ่ชŒ" #: src/screens/Deactivated.tsx:214 #: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" -msgstr "" +msgstr "็™ปๅ…ฅๆˆ–่จปๅ†Š" #: src/screens/SignupQueued.tsx:155 #: src/screens/SignupQueued.tsx:158 @@ -2757,6 +2778,7 @@ msgstr "็ตฆ {0} ๅ‚ณ้€่จŠๆฏ" msgid "Message deleted" msgstr "่จŠๆฏๅทฒๅˆช้™ค" +#: src/view/com/posts/FeedErrorMessage.tsx:200 #: src/view/com/posts/FeedErrorMessage.tsx:200 msgid "Message from server: {0}" msgstr "ไพ†่‡ชไผบๆœๅ™จ็š„่จŠๆฏ๏ผš{0}" @@ -3047,7 +3069,7 @@ msgctxt "action" msgid "New post" msgstr "ๆ–ฐ่ฒผๆ–‡" -#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Feeds.tsx:627 #: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 @@ -3129,6 +3151,7 @@ msgstr "้‚„ๆฒ’ๆœ‰่จŠๆฏ" msgid "No more conversations to show" msgstr "ๅทฒ็ถ“ๆฒ’ๆœ‰ๅฐ่ฉฑๅ•ฆ๏ผ" +#: src/view/com/notifications/Feed.tsx:118 #: src/view/com/notifications/Feed.tsx:118 msgid "No notifications yet!" msgstr "้‚„ๆฒ’ๆœ‰้€š็Ÿฅ๏ผ" @@ -3142,7 +3165,7 @@ msgstr "ๆฒ’ๆœ‰ไบบ" #: src/screens/Profile/Sections/Feed.tsx:59 msgid "No posts yet." -msgstr "" +msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰่ฒผๆ–‡ใ€‚" #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 @@ -3226,7 +3249,7 @@ msgstr "้€š็Ÿฅ้Ÿณๆ•ˆ" msgid "Notification Sounds" msgstr "้€š็Ÿฅ้Ÿณๆ•ˆ" -#: src/Navigation.tsx:499 +#: src/Navigation.tsx:516 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 #: src/view/shell/bottom-bar/BottomBar.tsx:227 @@ -3278,17 +3301,18 @@ msgstr "ๆœ€่ˆŠ็š„ๅ›ž่ฆ†ๅ„ชๅ…ˆ" msgid "Onboarding reset" msgstr "้‡ๆ–ฐ้–‹ๅง‹ๅผ•ๅฐŽๆต็จ‹" -#: src/view/com/composer/Composer.tsx:503 +#: src/view/com/composer/Composer.tsx:531 msgid "One or more images is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผตๅœ–็‰‡็ผบๅคฑไบ†ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" +#: src/screens/Onboarding/StepProfile/index.tsx:117 #: src/screens/Onboarding/StepProfile/index.tsx:117 msgid "Only .jpg and .png files are supported" msgstr "ๅƒ…ๆ”ฏๆด .jpg ๆˆ– .png ๆ ผๅผ็š„ๅœ–็‰‡" #: 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" @@ -3312,17 +3336,18 @@ msgstr "้–‹ๅ•Ÿ" msgid "Open {name} profile shortcut menu" msgstr "้–‹ๅ•Ÿ {name} ๅ€‹ไบบๆช”ๆกˆๅฟซๆท้ธๅ–ฎ" +#: src/screens/Onboarding/StepProfile/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" msgstr "้–‹ๅ•Ÿ้ ญๅƒๅปบ็ซ‹ๅทฅๅ…ท" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/List/ChatListItem.tsx:217 +#: src/screens/Messages/List/ChatListItem.tsx:218 msgid "Open conversation options" msgstr "้–‹ๅ•Ÿๅฐ่ฉฑ้ธ้ …" -#: src/view/com/composer/Composer.tsx:613 -#: src/view/com/composer/Composer.tsx:614 +#: src/view/com/composer/Composer.tsx:647 +#: src/view/com/composer/Composer.tsx:648 msgid "Open emoji picker" msgstr "้–‹ๅ•Ÿ่กจๆƒ…็ฌฆ่™Ÿ้ธๆ“‡ๅ™จ" @@ -3415,7 +3440,7 @@ msgstr "้–‹ๅ•Ÿ้‚€่ซ‹็ขผๅˆ—่กจ" #: src/view/screens/Settings/index.tsx:808 msgid "Opens modal for account deactivation confirmation" -msgstr "" +msgstr "้–‹ๅ•Ÿๅธณ่™Ÿๅˆช้™ค็š„็ขบ่ชๅฝˆ็ช—" #: src/view/screens/Settings/index.tsx:830 msgid "Opens modal for account deletion confirmation. Requires email code" @@ -3503,11 +3528,11 @@ msgstr "ๆˆ–่€…็ต„ๅˆ้€™ไบ›้ธ้ …๏ผš" #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." -msgstr "" +msgstr "ๆˆ–ไปฅๅ…ถไป–ๅธณ่™Ÿ็นผ็บŒใ€‚" #: src/screens/Deactivated.tsx:194 msgid "Or, log into one of your other accounts." -msgstr "" +msgstr "ๆˆ–็™ปๅ…ฅๆ‚จ็š„ๅ…ถไป–ๅธณ่™Ÿใ€‚" #: src/lib/moderation/useReportOptions.ts:26 msgid "Other" @@ -3676,7 +3701,7 @@ msgstr "่ซ‹ไปฅ @{0} ็š„่บซๅˆ†็™ปๅ…ฅ" msgid "Please Verify Your Email" msgstr "่ซ‹้ฉ—่ญ‰ๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€" -#: src/view/com/composer/Composer.tsx:281 +#: src/view/com/composer/Composer.tsx:274 msgid "Please wait for your link card to finish loading" msgstr "่ซ‹็ญ‰ๅพ…ๆ‚จ็š„้€ฃ็ต้ ่ฆฝ่ผ‰ๅ…ฅๅฎŒ็•ข" @@ -3688,16 +3713,16 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "่‰ฒๆƒ…ๅ…งๅฎน" -#: src/view/com/composer/Composer.tsx:477 -#: src/view/com/composer/Composer.tsx:485 +#: src/view/com/composer/Composer.tsx:505 +#: src/view/com/composer/Composer.tsx:513 msgctxt "action" msgid "Post" msgstr "็™ผไฝˆ" -#: src/view/com/post-thread/PostThread.tsx:430 +#: src/view/com/post-thread/PostThread.tsx:426 msgctxt "description" msgid "Post" -msgstr "็™ผไฝˆ" +msgstr "่ฒผๆ–‡" #: src/view/com/post-thread/PostThreadItem.tsx:189 msgid "Post by {0}" @@ -3713,7 +3738,7 @@ msgstr "@{0} ็š„่ฒผๆ–‡" msgid "Post deleted" msgstr "่ฒผๆ–‡ๅทฒๅˆช้™ค" -#: src/view/com/post-thread/PostThread.tsx:193 +#: src/view/com/post-thread/PostThread.tsx:192 msgid "Post hidden" msgstr "่ฒผๆ–‡ๅทฒ้šฑ่—" @@ -3735,8 +3760,8 @@ msgstr "่ฒผๆ–‡่ชž่จ€" msgid "Post Languages" msgstr "่ฒผๆ–‡่ชž่จ€" -#: src/view/com/post-thread/PostThread.tsx:188 -#: src/view/com/post-thread/PostThread.tsx:200 +#: src/view/com/post-thread/PostThread.tsx:187 +#: src/view/com/post-thread/PostThread.tsx:199 msgid "Post not found" msgstr "ๆ‰พไธๅˆฐ่ฒผๆ–‡" @@ -3752,6 +3777,7 @@ msgstr "่ฒผๆ–‡" msgid "Posts can be muted based on their text, their tags, or both." msgstr "ๅฏไปฅ้œ้Ÿณ่ฒผๆ–‡ๆ‰€ๅŒ…ๅซ็š„ๆ–‡ๅญ—ๅ’Œๆจ™็ฑคใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:68 #: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" msgstr "่ฒผๆ–‡ๅทฒ้šฑ่—" @@ -3845,14 +3871,16 @@ msgstr "ๅ…ฌ้–‹ไธ”ๅฏๅ…ฑไบซ็š„ๆ‰น้‡้œ้Ÿณๆˆ–ๅฐ้Ž–ๅˆ—่กจใ€‚" msgid "Public, shareable lists which can drive feeds." msgstr "ๅ…ฌ้–‹ไธ”ๅฏๅ…ฑไบซ็š„ๅˆ—่กจ๏ผŒๅฏไฝœ็‚บๅ‹•ๆ…‹ๆบไฝฟ็”จใ€‚" -#: src/view/com/composer/Composer.tsx:462 +#: src/view/com/composer/Composer.tsx:490 msgid "Publish post" msgstr "็™ผไฝˆ่ฒผๆ–‡" -#: src/view/com/composer/Composer.tsx:462 +#: src/view/com/composer/Composer.tsx:490 msgid "Publish reply" msgstr "็™ผไฝˆๅ›ž่ฆ†" +#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.tsx:115 #: src/view/com/util/post-ctrls/RepostButton.tsx:127 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 @@ -3870,7 +3898,7 @@ msgstr "ๆฏ”็އ" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "" +msgstr "้‡ๆ–ฐๅ•Ÿ็”จๆ‚จ็š„ๅธณ่™Ÿ" #: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" @@ -3888,12 +3916,13 @@ msgstr "้‡ๆ–ฐ้€ฃ็ทš" msgid "Reload conversations" msgstr "้‡ๆ–ฐ่ผ‰ๅ…ฅๅฐ่ฉฑ" -#: src/components/dialogs/MutedWords.tsx:286 +#: src/components/dialogs/MutedWords.tsx:288 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: 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:212 msgid "Remove" msgstr "ๅˆช้™ค" @@ -3913,16 +3942,20 @@ msgstr "ๅˆช้™คๆฉซๅน…" msgid "Remove embed" msgstr "ๅˆช้™คๅตŒๅ…ฅ" +#: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 #: src/view/com/posts/FeedShutdownMsg.tsx:117 msgid "Remove feed" msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบ" +#: src/view/com/posts/FeedErrorMessage.tsx:209 #: src/view/com/posts/FeedErrorMessage.tsx:209 msgid "Remove feed?" msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบ๏ผŸ" +#: src/view/com/feeds/FeedSourceCard.tsx:188 +#: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 #: src/view/screens/ProfileFeed.tsx:330 @@ -3931,6 +3964,7 @@ msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบ๏ผŸ" msgid "Remove from my feeds" msgstr "ๅพžๆˆ‘็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค" +#: src/view/com/feeds/FeedSourceCard.tsx:312 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "ๅพžๆˆ‘็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค๏ผŸ" @@ -3945,25 +3979,28 @@ msgstr "ๅˆช้™คๅœ–็‰‡้ ่ฆฝ" #: src/components/dialogs/MutedWords.tsx:329 msgid "Remove mute word from your list" -msgstr "ๅพžๆ‚จ็š„ๅˆ—่กจไธญ็งป้™ค้œ้Ÿณๆ–‡ๅญ—" +msgstr "ๅพžๆ‚จ็š„ๅˆ—่กจไธญๅˆช้™ค้œ้Ÿณๆ–‡ๅญ—" #: src/view/screens/Search/Search.tsx:1011 msgid "Remove profile" -msgstr "" +msgstr "ๅˆช้™คๅ€‹ไบบๆช”ๆกˆ" #: src/view/screens/Search/Search.tsx:1013 msgid "Remove profile from search history" -msgstr "" +msgstr "ๅˆช้™คๆœๅฐ‹็ด€้Œ„ไธญ็š„ๅ€‹ไบบๆช”ๆกˆ" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:238 msgid "Remove quote" msgstr "ๅˆช้™คๅผ•็”จ่ฒผๆ–‡" +#: src/view/com/util/post-ctrls/RepostButton.tsx:92 +#: src/view/com/util/post-ctrls/RepostButton.tsx:108 #: src/view/com/util/post-ctrls/RepostButton.tsx:92 #: src/view/com/util/post-ctrls/RepostButton.tsx:108 msgid "Remove repost" msgstr "ๅˆช้™ค่ฝ‰่ฒผ่ฒผๆ–‡" +#: src/view/com/posts/FeedErrorMessage.tsx:210 #: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove this feed from your saved feeds" msgstr "ๅฐ‡้€™ๅ€‹ๅ‹•ๆ…‹ๆบๅพžๆ‚จๅทฒๅ„ฒๅญ˜ไน‹ๅ‹•ๆ…‹ๆบๅˆ—่กจไธญๅˆช้™ค" @@ -3973,6 +4010,7 @@ msgstr "ๅฐ‡้€™ๅ€‹ๅ‹•ๆ…‹ๆบๅพžๆ‚จๅทฒๅ„ฒๅญ˜ไน‹ๅ‹•ๆ…‹ๆบๅˆ—่กจไธญๅˆช้™ค" msgid "Removed from list" msgstr "ๅพžๅˆ—่กจไธญๅˆช้™ค" +#: src/view/com/feeds/FeedSourceCard.tsx:139 #: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" msgstr "ๅทฒๅพžๆˆ‘็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค" @@ -4004,7 +4042,7 @@ msgstr "ๅ›ž่ฆ†" msgid "Replies to this thread are disabled" msgstr "ๅฐๆญค่จŽ่ซ–ไธฒ็š„ๅ›ž่ฆ†ๅทฒๅœ็”จ" -#: src/view/com/composer/Composer.tsx:475 +#: src/view/com/composer/Composer.tsx:503 msgctxt "action" msgid "Reply" msgstr "ๅ›ž่ฆ†" @@ -4084,6 +4122,9 @@ msgstr "ๆชข่ˆ‰้€™ๅ‰‡่ฒผๆ–‡" msgid "Report this user" msgstr "ๆชข่ˆ‰้€™ๅ€‹็”จๆˆถ" +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 #: src/view/com/util/post-ctrls/RepostButton.tsx:64 #: src/view/com/util/post-ctrls/RepostButton.tsx:93 #: src/view/com/util/post-ctrls/RepostButton.tsx:109 @@ -4096,6 +4137,7 @@ msgstr "่ฝ‰่ฒผ" msgid "Repost" msgstr "่ฝ‰่ฒผ" +#: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 @@ -4476,6 +4518,7 @@ msgstr "ๆไบคๆ„่ฆ‹" msgid "Send message" msgstr "้‡้€่จŠๆฏ" +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 #: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." msgstr "ๅ‚ณ้€่ฒผๆ–‡็ตฆโ€ฆ" @@ -4748,6 +4791,9 @@ msgstr "ๅœจๆ‚จ็š„ๅ‹•ๆ…‹ไธญ้กฏ็คบไพ†่‡ช {0} ็š„่ฒผๆ–‡" #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -4781,6 +4827,9 @@ msgstr "็™ปๅ‡บ" #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -4828,7 +4877,7 @@ 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:114 @@ -5058,8 +5107,8 @@ msgstr "ไปฅไธ‹ๆจ™่จ˜ๅทฒๅฅ—็”จๅˆฐๆ‚จ็š„ๅ…งๅฎนใ€‚" msgid "The following steps will help customize your Bluesky experience." msgstr "ไปฅไธ‹ๆญฅ้ฉŸๅฐ‡ๅนซๅŠฉ่‡ช่จ‚ๆ‚จ็š„ Bluesky ้ซ”้ฉ—ใ€‚" -#: src/view/com/post-thread/PostThread.tsx:189 -#: src/view/com/post-thread/PostThread.tsx:201 +#: src/view/com/post-thread/PostThread.tsx:188 +#: src/view/com/post-thread/PostThread.tsx:200 msgid "The post may have been deleted." msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅฏ่ƒฝๅทฒ่ขซๅˆช้™คใ€‚" @@ -5077,13 +5126,14 @@ msgstr "ๆœๅ‹™ๆขๆฌพๅทฒ้ท็งปๅˆฐ" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +msgstr "ๅธณ่™Ÿๅœ็”จๆฒ’ๆœ‰ๆ™‚้–“้™ๅˆถ๏ผŒ้šจๆ™‚้ƒฝๅฏไปฅ้‡ๆ–ฐๅ•Ÿ็”จใ€‚" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 #: src/view/screens/ProfileFeed.tsx:541 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "้€ฃ็ทš่‡ณไผบๆœๅ™จๆ™‚ๅ‡บ็พๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšไธฆ้‡่ฉฆใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:145 #: src/view/com/posts/FeedErrorMessage.tsx:145 msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบๆ™‚ๅ‡บ็พๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทšไธฆ้‡่ฉฆใ€‚" @@ -5108,11 +5158,14 @@ msgstr "้€ฃ็ทšๅˆฐ Tenor ๆ™‚ๅ‡บ็พๅ•้กŒใ€‚" msgid "There was an issue contacting the server" msgstr "้€ฃ็ทšไผบๆœๅ™จๆ™‚ๅ‡บ็พๅ•้กŒ" +#: src/view/com/feeds/FeedSourceCard.tsx:128 +#: src/view/com/feeds/FeedSourceCard.tsx:141 #: src/view/com/feeds/FeedSourceCard.tsx:128 #: src/view/com/feeds/FeedSourceCard.tsx:141 msgid "There was an issue contacting your server" msgstr "้€ฃ็ทšไผบๆœๅ™จๆ™‚ๅ‡บ็พๅ•้กŒ" +#: src/view/com/notifications/Feed.tsx:126 #: src/view/com/notifications/Feed.tsx:126 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ๅ–ๅพ—้€š็Ÿฅๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ้ปžๆ“Š้€™่ฃก้‡่ฉฆใ€‚" @@ -5211,28 +5264,24 @@ msgstr "ๆญคๅ…งๅฎน็”ฑ {0} ่จ—็ฎกใ€‚ๆ˜ฏๅฆ่ฆๅ•Ÿ็”จๅค–้ƒจๅช’้ซ”๏ผŸ" msgid "This content is not available because one of the users involved has blocked the other." msgstr "็”ฑๆ–ผๅ…ถไธญไธ€ๅ€‹็”จๆˆถๅฐ้Ž–ไบ†ๅฆไธ€ๅ€‹็”จๆˆถ๏ผŒ็„กๆณ•ๆŸฅ็œ‹ๆญคๅ…งๅฎนใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:114 #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "ๆฒ’ๆœ‰ Bluesky ๅธณ่™Ÿ๏ผŒ็„กๆณ•ๆŸฅ็œ‹ๆญคๅ…งๅฎนใ€‚" -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/List/ChatListItem.tsx:211 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." msgstr "ๆญคๅŠŸ่ƒฝ็›ฎๅ‰็‚บๆธฌ่ฉฆ็‰ˆๆœฌใ€‚ๆ‚จๅฏไปฅๅœจ<0>้€™็ฏ‡้ƒจ่ฝๆ ผๆ–‡็ซ ไธญ็žญ่งฃๆ›ดๅคšๆœ‰้—œ่ณ‡่จŠใ€‚" +#: src/view/com/posts/FeedErrorMessage.tsx:120 #: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "ๆญคๅ‹•ๆ…‹ๆบ็”ฑๆ–ผ็›ฎๅ‰ไฝฟ็”จไบบๆ•ธ็œพๅคš่€Œๆšซๆ™‚็„กๆณ•ไฝฟ็”จใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" -#: src/screens/Profile/Sections/Feed.tsx:59 -#: src/view/screens/ProfileFeed.tsx:471 -#: src/view/screens/ProfileList.tsx:729 -#~ msgid "This feed is empty!" -#~ 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 "้€™ๅ€‹ๅ‹•ๆ…‹ๆบๆ˜ฏ็ฉบ็š„๏ผๆ‚จๆˆ–่จฑ้œ€่ฆๅ…ˆ่ทŸ้šจๆ›ดๅคš็š„ไบบๆˆ–ๆชขๆŸฅๆ‚จ็š„่ชž่จ€่จญๅฎšใ€‚" @@ -5240,7 +5289,7 @@ msgstr "้€™ๅ€‹ๅ‹•ๆ…‹ๆบๆ˜ฏ็ฉบ็š„๏ผๆ‚จๆˆ–่จฑ้œ€่ฆๅ…ˆ่ทŸ้šจๆ›ดๅคš็š„ไบบๆˆ–ๆชขๆŸฅ #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." -msgstr "" +msgstr "้€™่ฃกๆ˜ฏ็ฉบ็š„ใ€‚" #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." @@ -5326,7 +5375,7 @@ msgstr "ๆญค็”จๆˆถๅทฒๅฐ้Ž–ๆ‚จ๏ผŒๆ‚จ็„กๆณ•ๆŸฅ็œ‹ไป–ๅ€‘็š„ๅ…งๅฎนใ€‚" #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." -msgstr "ๆญค็”จๆˆถ่ฆๆฑ‚ๅƒ…ๅฐ‡ๅ…ถๅ…งๅฎน้กฏ็คบ็ตฆๅทฒ็™ป้Œ„็š„็”จๆˆถใ€‚" +msgstr "ๆญค็”จๆˆถ่ฆๆฑ‚ๅƒ…ๅฐ‡ๅ…ถๅ…งๅฎน้กฏ็คบ็ตฆๅทฒ็™ปๅ…ฅ็š„็”จๆˆถใ€‚" #: src/components/moderation/ModerationDetailsDialog.tsx:55 msgid "This user is included in the <0>{0} list which you have blocked." @@ -5468,6 +5517,7 @@ msgstr "่งฃ้™คๅฐ้Ž–ๅธณ่™Ÿ" msgid "Unblock Account?" msgstr "่งฃ้™คๅฐ้Ž–๏ผŸ" +#: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.tsx:63 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 @@ -5565,6 +5615,7 @@ msgstr "ๆ›ดๆ–ฐ่‡ณ {handle}" msgid "Updating..." msgstr "ๆ›ดๆ–ฐไธญโ€ฆ" +#: src/screens/Onboarding/StepProfile/index.tsx:281 #: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" msgstr "ๆˆ–ๆ˜ฏไธŠๅ‚ณๅœ–็‰‡" @@ -5786,6 +5837,7 @@ msgstr "ๆŸฅ็œ‹ๆœ‰้—œ้€™ไบ›ๆจ™่จ˜็š„่ณ‡่จŠ" #: src/components/ProfileHoverCard/index.web.tsx:429 #: src/view/com/posts/AviFollowButton.tsx:58 #: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:174 msgid "View profile" msgstr "ๆŸฅ็œ‹่ณ‡ๆ–™" @@ -5889,9 +5941,9 @@ 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:318 +#: src/view/com/composer/Composer.tsx:311 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "" +msgstr "ๅพˆๆŠฑๆญ‰๏ผๆ‚จๅ›ž่ฆ†็š„่ฒผๆ–‡ๅทฒ่ขซๅˆช้™คใ€‚" #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 @@ -5904,7 +5956,7 @@ msgstr "ๆŠฑๆญ‰๏ผๆ‚จๅช่ƒฝ่จ‚้–ฑๅๅ€‹ๆจ™่จ˜่€…๏ผŒๆ‚จๅทฒ้”ๅˆฐๅๅ€‹็š„้™ๅˆถใ€‚ #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" -msgstr "" +msgstr "ๆญก่ฟŽๅ›žไพ†๏ผ" #: src/screens/Onboarding/StepInterests/index.tsx:135 msgid "What are your interests?" @@ -5912,7 +5964,7 @@ msgstr "ๆ‚จๆ„Ÿ่ˆˆ่ถฃ็š„ๆ˜ฏไป€้บผ๏ผŸ" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:359 +#: src/view/com/composer/Composer.tsx:352 msgid "What's up?" msgstr "็™ผ็”Ÿไบ†ไป€้บผๆ–ฐ้ฎฎไบ‹๏ผŸ" @@ -5971,11 +6023,11 @@ msgstr "ๅฏฌ" msgid "Write a message" msgstr "ๆ’ฐๅฏซ่จŠๆฏ" -#: src/view/com/composer/Composer.tsx:549 +#: src/view/com/composer/Composer.tsx:581 msgid "Write post" msgstr "ๆ’ฐๅฏซ่ฒผๆ–‡" -#: src/view/com/composer/Composer.tsx:358 +#: src/view/com/composer/Composer.tsx:351 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "ๆ’ฐๅฏซๆ‚จ็š„ๅ›ž่ฆ†" @@ -5997,11 +6049,11 @@ msgstr "้–‹" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "" +msgstr "็ขบๅฎšไธฆๅœ็”จ" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" -msgstr "" +msgstr "็ขบๅฎšไธฆๅœ็”จๆˆ‘็š„ๅธณ่™Ÿ" #: src/components/dms/MessageItem.tsx:188 msgid "Yesterday, {time}" @@ -6022,7 +6074,7 @@ msgstr "ๆ‚จไนŸๅฏไปฅๆŽข็ดขไธฆ่ทŸ้šจๆ–ฐ็š„่‡ช่จ‚ๅ‹•ๆ…‹ๆบใ€‚" #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" +msgstr "ๆ‚จไนŸๅฏไปฅๆšซๆ™‚ๅœ็”จๅธณ่™Ÿ๏ผŒ็„ถๅพŒ้šจๆ™‚้‡ๆ–ฐๅ•Ÿ็”จใ€‚" #: src/components/dms/MessagesNUX.tsx:119 msgid "You can change this at any time." @@ -6039,7 +6091,7 @@ msgstr "ๆ‚จ็พๅœจๅฏไปฅไฝฟ็”จๆ–ฐๅฏ†็ขผ็™ปๅ…ฅใ€‚" #: 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 "ๆ‚จๅฏไปฅ็™ปๅ…ฅไปฅ้‡ๆ–ฐๅ•Ÿ็”จๅธณ่™Ÿใ€‚ๅ…ถไป–็”จๆˆถๅฐ‡ๅฏไปฅ้‡ๆ–ฐ็œ‹ๅˆฐๆ‚จ็š„ๅ€‹ไบบๆช”ๆกˆๅ’Œ่ฒผๆ–‡ใ€‚" #: src/view/com/profile/ProfileFollowers.tsx:86 msgid "You do not have any followers." @@ -6061,7 +6113,7 @@ msgstr "ๆ‚จ็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•้‡˜้ธ็š„ๅ‹•ๆ…‹ๆบใ€‚" msgid "You don't have any saved feeds." msgstr "ๆ‚จ็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•ๅทฒๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบใ€‚" -#: src/view/com/post-thread/PostThread.tsx:195 +#: src/view/com/post-thread/PostThread.tsx:194 msgid "You have blocked the author or you have been blocked by the author." msgstr "ๆ‚จๅทฒๅฐ้Ž–่ฉฒไฝœ่€…๏ผŒๆˆ–ๆ‚จๅทฒ่ขซ่ฉฒไฝœ่€…ๅฐ้Ž–ใ€‚" @@ -6150,7 +6202,7 @@ msgstr "ๆ‚จๅฟ…้ ˆ้ธๆ“‡่‡ณๅฐ‘ไธ€ๅ€‹ๆจ™่จ˜่€…ไพ†ๆไบคๆชข่ˆ‰" #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "ๆ‚จไน‹ๅ‰ๅœ็”จไบ† @{0}ใ€‚" #: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "You will no longer receive notifications for this thread" @@ -6170,11 +6222,11 @@ msgstr "ๆ‚จ๏ผš{0}" #: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "" +msgstr "ๆ‚จ๏ผš{defaultEmbeddedContentMessage}" #: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" -msgstr "" +msgstr "ๆ‚จ๏ผš{short}" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -6185,7 +6237,7 @@ msgstr "่ผชๅˆฐๆ‚จไบ†" #: 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 "ๆ‚จๆญฃๅœจไฝฟ็”จๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ็™ปๅ…ฅใ€‚่ซ‹ไฝฟ็”จๆ‚จ็š„ไธปๅฏ†็ขผ็™ปๅ…ฅ๏ผŒไปฅ็นผ็บŒๅœ็”จๆ‚จ็š„ๅธณ่™Ÿใ€‚" #: src/screens/Onboarding/StepFinished.tsx:123 msgid "You're ready to go!" @@ -6258,7 +6310,7 @@ msgstr "ๆ‚จ็š„้œ้Ÿณๆ–‡ๅญ—" msgid "Your password has been changed successfully!" msgstr "ๆ‚จ็š„ๅฏ†็ขผๅทฒๆˆๅŠŸๆ›ดๆ”น๏ผ" -#: src/view/com/composer/Composer.tsx:349 +#: src/view/com/composer/Composer.tsx:342 msgid "Your post has been published" msgstr "ๆ‚จ็š„่ฒผๆ–‡ๅทฒ็™ผไฝˆ" @@ -6272,9 +6324,9 @@ msgstr "ๆ‚จ็š„ๅ€‹ไบบๆช”ๆกˆ" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "" +msgstr "ๅ…ถไป– Bluesky ็”จๆˆถๅฐ‡็„กๆณ•ๅ†็œ‹ๅˆฐๆ‚จ็š„ๅ€‹ไบบๆช”ๆกˆใ€่ฒผๆ–‡ใ€ๅ‹•ๆ…‹ๅ’Œๅˆ—่กจใ€‚ๆ‚จๅฏไปฅ้šจๆ™‚็™ปๅ…ฅไปฅ้‡ๆ–ฐๅ•Ÿ็”จๆ‚จ็š„ๅธณ่™Ÿใ€‚" -#: src/view/com/composer/Composer.tsx:348 +#: src/view/com/composer/Composer.tsx:341 msgid "Your reply has been published" msgstr "ๆ‚จ็š„ๅ›ž่ฆ†ๅทฒ็™ผไฝˆ" From 99078bbff2282ad18594a4d5a4ed5fe207c394e4 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 12 Jun 2024 08:51:08 -0700 Subject: [PATCH 16/86] Don't show warning when sharing your own post in PWI opt-out mode (#4495) --- src/view/com/profile/ProfileMenu.tsx | 7 +++++-- src/view/com/util/forms/PostDropdownBtn.tsx | 5 ++++- src/view/com/util/post-ctrls/PostCtrls.tsx | 10 ++++++---- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/view/com/profile/ProfileMenu.tsx b/src/view/com/profile/ProfileMenu.tsx index 5d39e5f0f3..efc2497600 100644 --- a/src/view/com/profile/ProfileMenu.tsx +++ b/src/view/com/profile/ProfileMenu.tsx @@ -71,8 +71,11 @@ let ProfileMenu = ({ const loggedOutWarningPromptControl = Prompt.usePromptControl() const showLoggedOutWarning = React.useMemo(() => { - return !!profile.labels?.find(label => label.val === '!no-unauthenticated') - }, [profile.labels]) + return ( + profile.did !== currentAccount?.did && + !!profile.labels?.find(label => label.val === '!no-unauthenticated') + ) + }, [currentAccount, profile]) const invalidateProfileQuery = React.useCallback(() => { queryClient.invalidateQueries({ diff --git a/src/view/com/util/forms/PostDropdownBtn.tsx b/src/view/com/util/forms/PostDropdownBtn.tsx index b6873ff8ad..2486b73d58 100644 --- a/src/view/com/util/forms/PostDropdownBtn.tsx +++ b/src/view/com/util/forms/PostDropdownBtn.tsx @@ -196,6 +196,9 @@ let PostDropdownBtn = ({ ) }, [postAuthor]) + const showLoggedOutWarning = + postAuthor.did !== currentAccount?.did && hideInPWI + const onSharePost = React.useCallback(() => { const url = toShareUrl(href) shareUrl(url) @@ -296,7 +299,7 @@ let PostDropdownBtn = ({ testID="postDropdownShareBtn" label={isWeb ? _(msg`Copy link to post`) : _(msg`Share`)} onPress={() => { - if (hideInPWI) { + if (showLoggedOutWarning) { loggedOutWarningPromptControl.open() } else { onSharePost() diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index d42590e905..c389855e3d 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -27,7 +27,7 @@ import { usePostLikeMutationQueue, usePostRepostMutationQueue, } from '#/state/queries/post' -import {useRequireAuth} from '#/state/session' +import {useRequireAuth, useSession} from '#/state/session' import {useComposerControls} from '#/state/shell/composer' import {atoms as a, useTheme} from '#/alf' import {useDialogControl} from '#/components/Dialog' @@ -64,6 +64,7 @@ let PostCtrls = ({ const t = useTheme() const {_} = useLingui() const {openComposer} = useComposerControls() + const {currentAccount} = useSession() const [queueLike, queueUnlike] = usePostLikeMutationQueue(post, logContext) const [queueRepost, queueUnrepost] = usePostRepostMutationQueue( post, @@ -75,10 +76,11 @@ let PostCtrls = ({ const playHaptic = useHaptics() const shouldShowLoggedOutWarning = React.useMemo(() => { - return !!post.author.labels?.find( - label => label.val === '!no-unauthenticated', + return ( + post.author.did !== currentAccount?.did && + !!post.author.labels?.find(label => label.val === '!no-unauthenticated') ) - }, [post]) + }, [currentAccount, post]) const defaultCtrlColor = React.useMemo( () => ({ From a55f924639605709d436474073e75f9f39a84276 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 12 Jun 2024 16:52:00 -0500 Subject: [PATCH 17/86] Just use server count (#4499) * Just use server count * Fix count --- src/components/KnownFollowers.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx index b99fe3398e..2b8dcc866d 100644 --- a/src/components/KnownFollowers.tsx +++ b/src/components/KnownFollowers.tsx @@ -82,15 +82,6 @@ function KnownFollowersInner({ t.atoms.text_contrast_medium, ] - // list of users, minus blocks - const returnedCount = cachedKnownFollowers.followers.length - // db count, includes blocks - const fullCount = cachedKnownFollowers.count - // knownFollowers can return up to 5 users, but will exclude blocks - // therefore, if we have less 5 users, use whichever count is lower - const count = - returnedCount < 5 ? Math.min(fullCount, returnedCount) : fullCount - const slice = cachedKnownFollowers.followers.slice(0, 3).map(f => { const moderation = moderateProfile(f, moderationOpts) return { @@ -104,6 +95,7 @@ function KnownFollowersInner({ moderation, } }) + const count = cachedKnownFollowers.count - Math.min(slice.length, 2) return ( Date: Thu, 13 Jun 2024 04:23:37 +0200 Subject: [PATCH 18/86] Show social proof in hovercards (#4502) * Add social proof to hovercards * Close it more reliably --- src/components/KnownFollowers.tsx | 8 +++++++- src/components/ProfileHoverCard/index.web.tsx | 15 +++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx index 2b8dcc866d..3d4d362ef2 100644 --- a/src/components/KnownFollowers.tsx +++ b/src/components/KnownFollowers.tsx @@ -8,7 +8,7 @@ import {makeProfileLink} from '#/lib/routes/links' import {sanitizeDisplayName} from 'lib/strings/display-names' import {UserAvatar} from '#/view/com/util/UserAvatar' import {atoms as a, useTheme} from '#/alf' -import {Link} from '#/components/Link' +import {Link, LinkProps} from '#/components/Link' import {Text} from '#/components/Typography' const AVI_SIZE = 30 @@ -29,9 +29,11 @@ export function shouldShowKnownFollowers( export function KnownFollowers({ profile, moderationOpts, + onLinkPress, }: { profile: AppBskyActorDefs.ProfileViewDetailed moderationOpts: ModerationOpts + onLinkPress?: LinkProps['onPress'] }) { const cache = React.useRef>( new Map(), @@ -56,6 +58,7 @@ export function KnownFollowers({ profile={profile} cachedKnownFollowers={cachedKnownFollowers} moderationOpts={moderationOpts} + onLinkPress={onLinkPress} /> ) } @@ -67,10 +70,12 @@ function KnownFollowersInner({ profile, moderationOpts, cachedKnownFollowers, + onLinkPress, }: { profile: AppBskyActorDefs.ProfileViewDetailed moderationOpts: ModerationOpts cachedKnownFollowers: AppBskyActorDefs.KnownFollowers + onLinkPress?: LinkProps['onPress'] }) { const t = useTheme() const {_} = useLingui() @@ -102,6 +107,7 @@ function KnownFollowersInner({ label={_( msg`Press to view followers of this account that you also follow`, )} + onPress={onLinkPress} to={makeProfileLink(profile, 'known-followers')} style={[ a.flex_1, diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx index 024867b1a3..1fd74fd195 100644 --- a/src/components/ProfileHoverCard/index.web.tsx +++ b/src/components/ProfileHoverCard/index.web.tsx @@ -22,6 +22,10 @@ import {useFollowMethods} from '#/components/hooks/useFollowMethods' import {useRichText} from '#/components/hooks/useRichText' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' +import { + KnownFollowers, + shouldShowKnownFollowers, +} from '#/components/KnownFollowers' import {InlineLinkText, Link} from '#/components/Link' import {Loader} from '#/components/Loader' import {Portal} from '#/components/Portal' @@ -473,6 +477,17 @@ function Inner({ /> ) : undefined} + + {!isMe && + shouldShowKnownFollowers(profile.viewer?.knownFollowers) && ( + + + + )} )} From 247af5aee99ba5020b8bee9ccfa0f02bb8c4084a Mon Sep 17 00:00:00 2001 From: Mary <148872143+mary-ext@users.noreply.github.com> Date: Thu, 13 Jun 2024 09:37:49 +0700 Subject: [PATCH 19/86] Prevent rich-formatting paste (#4327) * fix: prevent rich-formatting paste * fix: return true instead of preventDefault --- .../com/composer/text-input/TextInput.web.tsx | 27 +++++++++++++------ 1 file changed, 19 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 7f8dc2ed5e..a91524974e 100644 --- a/src/view/com/composer/text-input/TextInput.web.tsx +++ b/src/view/com/composer/text-input/TextInput.web.tsx @@ -150,16 +150,27 @@ export const TextInput = React.forwardRef(function TextInputImpl( attributes: { class: modeClass, }, - handlePaste: (_, event) => { - const items = event.clipboardData?.items + handlePaste: (view, event) => { + const clipboardData = event.clipboardData - if (items === undefined) { - return + 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) + + // 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) + }) + } } - - getImageFromUri(items, (uri: string) => { - textInputWebEmitter.emit('photo-pasted', uri) - }) }, handleKeyDown: (_, event) => { if ((event.metaKey || event.ctrlKey) && event.code === 'Enter') { From d989128e5b086fc60aea01ba991039c4e66165c6 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 12 Jun 2024 21:44:06 -0500 Subject: [PATCH 20/86] Set profile hover prefetch stale time to 30s (#4417) * Set prefetch stale time to 30s * Run prefetch on mouseOver * Only prefetch once on mousemove --- src/state/queries/profile.ts | 1 + src/view/com/util/PostMeta.tsx | 75 +++++++++++++++++++--------------- 2 files changed, 42 insertions(+), 34 deletions(-) diff --git a/src/state/queries/profile.ts b/src/state/queries/profile.ts index 7cc9f69116..6f7f2de792 100644 --- a/src/state/queries/profile.ts +++ b/src/state/queries/profile.ts @@ -94,6 +94,7 @@ export function usePrefetchProfileQuery() { const prefetchProfileQuery = useCallback( async (did: string) => { await queryClient.prefetchQuery({ + staleTime: STALE.SECONDS.THIRTY, queryKey: RQKEY(did), queryFn: async () => { const res = await agent.getProfile({actor: did || ''}) diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx index b6fe6d374d..df45174b9a 100644 --- a/src/view/com/util/PostMeta.tsx +++ b/src/view/com/util/PostMeta.tsx @@ -11,6 +11,7 @@ import {sanitizeHandle} from 'lib/strings/handles' import {niceDate} from 'lib/strings/time' import {TypographyVariant} from 'lib/ThemeContext' import {isAndroid, isWeb} from 'platform/detection' +import {atoms as a} from '#/alf' import {ProfileHoverCard} from '#/components/ProfileHoverCard' import {TextLinkOnWebOnly} from './Link' import {Text} from './text/Text' @@ -39,9 +40,13 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => { const prefetchProfileQuery = usePrefetchProfileQuery() const profileLink = makeProfileLink(opts.author) - const onPointerEnter = isWeb - ? () => prefetchProfileQuery(opts.author.did) - : undefined + const prefetchedProfile = React.useRef(false) + const onPointerMove = React.useCallback(() => { + if (!prefetchedProfile.current) { + prefetchedProfile.current = true + prefetchProfileQuery(opts.author.did) + } + }, [opts.author.did, prefetchProfileQuery]) const queryClient = useQueryClient() const onOpenAuthor = opts.onOpenAuthor @@ -66,37 +71,39 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => { )} - - - {sanitizeDisplayName( - displayName, - opts.moderation?.ui('displayName'), - )} - - } - href={profileLink} - onBeforePress={onBeforePressAuthor} - onPointerEnter={onPointerEnter} - /> - - + + + + {sanitizeDisplayName( + displayName, + opts.moderation?.ui('displayName'), + )} + + } + href={profileLink} + onBeforePress={onBeforePressAuthor} + /> + + + {!isAndroid && ( Date: Wed, 12 Jun 2024 21:53:32 -0500 Subject: [PATCH 21/86] Fix profile hover card blocked state (#4480) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix: mini profile on hover allows following a blocker/blocked user (#4423) (#4440) * Tweaks --------- Co-authored-by: Michaล‚ Goล‚da --- src/components/ProfileHoverCard/index.web.tsx | 79 +++++++++++++------ .../moderation/ProfileHeaderAlerts.tsx | 13 ++- 2 files changed, 65 insertions(+), 27 deletions(-) diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx index 1fd74fd195..e17977af43 100644 --- a/src/components/ProfileHoverCard/index.web.tsx +++ b/src/components/ProfileHoverCard/index.web.tsx @@ -5,6 +5,7 @@ import {flip, offset, shift, size, useFloating} from '@floating-ui/react-dom' import {msg, plural} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {getModerationCauseKey} from '#/lib/moderation' import {makeProfileLink} from '#/lib/routes/links' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' @@ -31,6 +32,7 @@ import {Loader} from '#/components/Loader' 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 = [ @@ -374,7 +376,10 @@ function Inner({ profile: profileShadow, logContext: 'ProfileHoverCard', }) - const blockHide = profile.viewer?.blocking || profile.viewer?.blockedBy + const isBlockedUser = + profile.viewer?.blocking || + profile.viewer?.blockedBy || + profile.viewer?.blockingByList const following = formatCount(profile.followsCount || 0) const followers = formatCount(profile.followersCount || 0) const pluralizedFollowers = plural(profile.followersCount || 0, { @@ -405,29 +410,41 @@ function Inner({ /> - {!isMe && ( - - )} + {!isMe && + (isBlockedUser ? ( + + {_(msg`View profile`)} + + ) : ( + + ))} @@ -443,7 +460,19 @@ function Inner({ - {!blockHide && ( + {isBlockedUser && ( + + {moderation.ui('profileView').alerts.map(cause => ( + + ))} + + )} + + {!isBlockedUser && ( <> - + {!disableDetailsDialog && ( + + )} ) } From 7faa1d9131fc28e1c0acd4b4c7b7c2bbeabc2281 Mon Sep 17 00:00:00 2001 From: Minseo Lee Date: Thu, 13 Jun 2024 11:58:25 +0900 Subject: [PATCH 22/86] KnownFollowers localization (#4494) * Update KnownFollowers.tsx * Update KnownFollowers.tsx * Update KnownFollowers.tsx --- src/components/KnownFollowers.tsx | 52 +++++++++++++++++-------------- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx index 3d4d362ef2..a8bdb763d7 100644 --- a/src/components/KnownFollowers.tsx +++ b/src/components/KnownFollowers.tsx @@ -1,7 +1,7 @@ import React from 'react' import {View} from 'react-native' import {AppBskyActorDefs, moderateProfile, ModerationOpts} from '@atproto/api' -import {msg, plural, Trans} from '@lingui/macro' +import {msg, Plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {makeProfileLink} from '#/lib/routes/links' @@ -164,31 +164,37 @@ function KnownFollowersInner({ }, ]} numberOfLines={2}> - Followed by{' '} {count > 2 ? ( - <> - {slice.slice(0, 2).map(({profile: prof}, i) => ( - - {prof.displayName} - {i === 0 && ', '} - - ))} - {', '} - {plural(count - 2, { - one: 'and # other', - other: 'and # others', - })} - - ) : count === 2 ? ( - slice.map(({profile: prof}, i) => ( - - {prof.displayName} {i === 0 ? _(msg`and`) + ' ' : ''} + + Followed by{' '} + + {slice[0].profile.displayName} - )) + ,{' '} + + {slice[1].profile.displayName} + + , and{' '} + + + ) : count === 2 ? ( + + Followed by{' '} + + {slice[0].profile.displayName} + {' '} + and{' '} + + {slice[1].profile.displayName} + + ) : ( - - {slice[0].profile.displayName} - + + Followed by{' '} + + {slice[0].profile.displayName} + + )} From 498e46ae4e698e5a75dec9972209fe2bb8a2a603 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 13 Jun 2024 11:03:31 +0200 Subject: [PATCH 23/86] Hide bio and social proof for blocked users (#4504) --- src/screens/Profile/Header/ProfileHeaderStandard.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index f8a87a68e4..4ad84ac633 100644 --- a/src/screens/Profile/Header/ProfileHeaderStandard.tsx +++ b/src/screens/Profile/Header/ProfileHeaderStandard.tsx @@ -75,6 +75,10 @@ let ProfileHeaderStandard = ({ const [_queueBlock, queueUnblock] = useProfileBlockMutationQueue(profile) const unblockPromptControl = Prompt.usePromptControl() const requireAuth = useRequireAuth() + const isBlockedUser = + profile.viewer?.blocking || + profile.viewer?.blockedBy || + profile.viewer?.blockingByList const onPressEditProfile = React.useCallback(() => { track('ProfileHeader:EditProfileButtonClicked') @@ -257,7 +261,7 @@ let ProfileHeaderStandard = ({ - {!isPlaceholderProfile && ( + {!isPlaceholderProfile && !isBlockedUser && ( <> {descriptionRT && !moderation.ui('profileView').blur ? ( @@ -274,6 +278,7 @@ let ProfileHeaderStandard = ({ ) : undefined} {!isMe && + !isBlockedUser && shouldShowKnownFollowers(profile.viewer?.knownFollowers) && ( Date: Thu, 13 Jun 2024 15:58:56 +0100 Subject: [PATCH 24/86] Calculate correct keyboard offset in composer (#4500) * calculate correct keyboard offset * give viewHeight a default value * much simpler approach --- src/view/com/composer/Composer.tsx | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 9bb704012e..80bce5351c 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -415,12 +415,14 @@ export const ComposePost = observer(function ComposePost({ bottomBarAnimatedStyle, } = useAnimatedBorders() + const keyboardVerticalOffset = useKeyboardVerticalOffset() + return ( + keyboardVerticalOffset={keyboardVerticalOffset} + style={a.flex_1}> @@ -741,6 +743,19 @@ function useAnimatedBorders() { } } +function useKeyboardVerticalOffset() { + const {top} = useSafeAreaInsets() + + // Android etc + if (!isIOS) return 0 + + // iPhone SE + if (top === 20) return 40 + + // all other iPhones + return top + 10 +} + const styles = StyleSheet.create({ topbarInner: { flexDirection: 'row', From d9066a6beb4a84ab42d638810d25c002601678a4 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 13 Jun 2024 14:31:19 -0700 Subject: [PATCH 25/86] add `document.referrer` to statsig custom (#4509) * add referrer to statsig custom dont include referrer if hostname is bsky.app save add `document.referrer` to statsig custom * add a hostname field * account for ssr * account for ssr --- src/lib/statsig/statsig.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/lib/statsig/statsig.tsx b/src/lib/statsig/statsig.tsx index 166d468a1b..d57f1c0aa6 100644 --- a/src/lib/statsig/statsig.tsx +++ b/src/lib/statsig/statsig.tsx @@ -26,6 +26,8 @@ type StatsigUser = { bundleDate: number refSrc: string refUrl: string + referrer: string + referrerHostname: string appLanguage: string contentLanguages: string[] } @@ -33,12 +35,22 @@ type StatsigUser = { let refSrc = '' let refUrl = '' +let referrer = '' +let referrerHostname = '' if (isWeb && typeof window !== 'undefined') { const params = new URLSearchParams(window.location.search) refSrc = params.get('ref_src') ?? '' refUrl = decodeURIComponent(params.get('ref_url') ?? '') } +if (isWeb && typeof document !== 'undefined' && document != null) { + const url = new URL(document.referrer) + if (url.hostname !== 'bsky.app') { + referrer = document.referrer + referrerHostname = url.hostname + } +} + export type {LogEvents} function createStatsigOptions(prefetchUsers: StatsigUser[]) { @@ -198,6 +210,8 @@ function toStatsigUser(did: string | undefined): StatsigUser { custom: { refSrc, refUrl, + referrer, + referrerHostname, platform: Platform.OS as 'ios' | 'android' | 'web', bundleIdentifier: BUNDLE_IDENTIFIER, bundleDate: BUNDLE_DATE, From bdeac28d74abd54b0373663cbd57b7858888280f Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 13 Jun 2024 23:06:22 +0100 Subject: [PATCH 26/86] Try/catch URL parsing of referrer (#4511) --- src/lib/statsig/statsig.tsx | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/lib/statsig/statsig.tsx b/src/lib/statsig/statsig.tsx index d57f1c0aa6..f6aed999f9 100644 --- a/src/lib/statsig/statsig.tsx +++ b/src/lib/statsig/statsig.tsx @@ -43,12 +43,19 @@ if (isWeb && typeof window !== 'undefined') { refUrl = decodeURIComponent(params.get('ref_url') ?? '') } -if (isWeb && typeof document !== 'undefined' && document != null) { - const url = new URL(document.referrer) - if (url.hostname !== 'bsky.app') { - referrer = document.referrer - referrerHostname = url.hostname - } +if ( + isWeb && + typeof document !== 'undefined' && + document != null && + document.referrer +) { + try { + const url = new URL(document.referrer) + if (url.hostname !== 'bsky.app') { + referrer = document.referrer + referrerHostname = url.hostname + } + } catch {} } export type {LogEvents} From 4c0f0378808410513558696a12a68bbd3c1d9a75 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 14 Jun 2024 11:56:29 -0500 Subject: [PATCH 27/86] Reuse overfetching for popular feeds, add in existing filtering (#4501) --- src/state/queries/feed.ts | 100 +++++++++++++++++++++++++++++++++++-- src/view/screens/Feeds.tsx | 46 +++-------------- 2 files changed, 101 insertions(+), 45 deletions(-) diff --git a/src/state/queries/feed.ts b/src/state/queries/feed.ts index b599ac1a0f..fed23f5b12 100644 --- a/src/state/queries/feed.ts +++ b/src/state/queries/feed.ts @@ -1,3 +1,4 @@ +import {useCallback, useEffect, useMemo, useRef} from 'react' import { AppBskyActorDefs, AppBskyFeedDefs, @@ -171,28 +172,117 @@ export function useFeedSourceInfoQuery({uri}: {uri: string}) { }) } -export const useGetPopularFeedsQueryKey = ['getPopularFeeds'] +// HACK +// the protocol doesn't yet tell us which feeds are personalized +// this list is used to filter out feed recommendations from logged out users +// for the ones we know need it +// -prf +export const KNOWN_AUTHED_ONLY_FEEDS = [ + 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/with-friends', // popular with friends, by bsky.app + 'at://did:plc:tenurhgjptubkk5zf5qhi3og/app.bsky.feed.generator/mutuals', // mutuals, by skyfeed + 'at://did:plc:tenurhgjptubkk5zf5qhi3og/app.bsky.feed.generator/only-posts', // only posts, by skyfeed + 'at://did:plc:wzsilnxf24ehtmmc3gssy5bu/app.bsky.feed.generator/mentions', // mentions, by flicknow + 'at://did:plc:q6gjnaw2blty4crticxkmujt/app.bsky.feed.generator/bangers', // my bangers, by jaz + 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/mutuals', // mutuals, by bluesky + 'at://did:plc:q6gjnaw2blty4crticxkmujt/app.bsky.feed.generator/my-followers', // followers, by jaz + 'at://did:plc:vpkhqolt662uhesyj6nxm7ys/app.bsky.feed.generator/followpics', // the gram, by why +] -export function useGetPopularFeedsQuery() { +type GetPopularFeedsOptions = {limit?: number} + +export function createGetPopularFeedsQueryKey(...args: any[]) { + return ['getPopularFeeds', ...args] +} + +export function useGetPopularFeedsQuery(options?: GetPopularFeedsOptions) { + const {hasSession} = useSession() const agent = useAgent() - return useInfiniteQuery< + const limit = options?.limit || 10 + const {data: preferences} = usePreferencesQuery() + + // Make sure this doesn't invalidate unless really needed. + const selectArgs = useMemo( + () => ({ + hasSession, + savedFeeds: preferences?.savedFeeds || [], + }), + [hasSession, preferences?.savedFeeds], + ) + const lastPageCountRef = useRef(0) + + const query = useInfiniteQuery< AppBskyUnspeccedGetPopularFeedGenerators.OutputSchema, Error, InfiniteData, QueryKey, string | undefined >({ - queryKey: useGetPopularFeedsQueryKey, + queryKey: createGetPopularFeedsQueryKey(options), queryFn: async ({pageParam}) => { const res = await agent.app.bsky.unspecced.getPopularFeedGenerators({ - limit: 10, + limit, cursor: pageParam, }) return res.data }, initialPageParam: undefined, getNextPageParam: lastPage => lastPage.cursor, + select: useCallback( + ( + data: InfiniteData, + ) => { + const {savedFeeds, hasSession: hasSessionInner} = selectArgs + data?.pages.map(page => { + page.feeds = page.feeds.filter(feed => { + if ( + !hasSessionInner && + KNOWN_AUTHED_ONLY_FEEDS.includes(feed.uri) + ) { + return false + } + const alreadySaved = Boolean( + savedFeeds?.find(f => { + return f.value === feed.uri + }), + ) + return !alreadySaved + }) + + return page + }) + + return data + }, + [selectArgs /* Don't change. Everything needs to go into selectArgs. */], + ), }) + + useEffect(() => { + const {isFetching, hasNextPage, data} = query + if (isFetching || !hasNextPage) { + return + } + + // avoid double-fires of fetchNextPage() + if ( + lastPageCountRef.current !== 0 && + lastPageCountRef.current === data?.pages?.length + ) { + return + } + + // fetch next page if we haven't gotten a full page of content + let count = 0 + for (const page of data?.pages || []) { + count += page.feeds.length + } + if (count < limit && (data?.pages.length || 0) < 6) { + query.fetchNextPage() + lastPageCountRef.current = data?.pages?.length || 0 + } + }, [query, limit]) + + return query } export function useSearchPopularFeedsMutation() { diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 76ff4268fd..612559455f 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -104,22 +104,6 @@ type FlatlistSlice = key: string } -// HACK -// the protocol doesn't yet tell us which feeds are personalized -// this list is used to filter out feed recommendations from logged out users -// for the ones we know need it -// -prf -const KNOWN_AUTHED_ONLY_FEEDS = [ - 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/with-friends', // popular with friends, by bsky.app - 'at://did:plc:tenurhgjptubkk5zf5qhi3og/app.bsky.feed.generator/mutuals', // mutuals, by skyfeed - 'at://did:plc:tenurhgjptubkk5zf5qhi3og/app.bsky.feed.generator/only-posts', // only posts, by skyfeed - 'at://did:plc:wzsilnxf24ehtmmc3gssy5bu/app.bsky.feed.generator/mentions', // mentions, by flicknow - 'at://did:plc:q6gjnaw2blty4crticxkmujt/app.bsky.feed.generator/bangers', // my bangers, by jaz - 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/mutuals', // mutuals, by bluesky - 'at://did:plc:q6gjnaw2blty4crticxkmujt/app.bsky.feed.generator/my-followers', // followers, by jaz - 'at://did:plc:vpkhqolt662uhesyj6nxm7ys/app.bsky.feed.generator/followpics', // the gram, by why -] - export function FeedsScreen(_props: Props) { const pal = usePalette('default') const {openComposer} = useComposerControls() @@ -327,10 +311,7 @@ export function FeedsScreen(_props: Props) { type: 'popularFeedsLoading', }) } else { - if ( - !popularFeeds?.pages || - popularFeeds?.pages[0]?.feeds?.length === 0 - ) { + if (!popularFeeds?.pages) { slices.push({ key: 'popularFeedsNoResults', type: 'popularFeedsNoResults', @@ -338,26 +319,11 @@ export function FeedsScreen(_props: Props) { } else { for (const page of popularFeeds.pages || []) { slices = slices.concat( - page.feeds - .filter(feed => { - if ( - !hasSession && - KNOWN_AUTHED_ONLY_FEEDS.includes(feed.uri) - ) { - return false - } - const alreadySaved = Boolean( - preferences?.savedFeeds?.find(f => { - return f.value === feed.uri - }), - ) - return !alreadySaved - }) - .map(feed => ({ - key: `popularFeed:${feed.uri}`, - type: 'popularFeed', - feedUri: feed.uri, - })), + page.feeds.map(feed => ({ + key: `popularFeed:${feed.uri}`, + type: 'popularFeed', + feedUri: feed.uri, + })), ) } From fe3f872d493d3b80941bf496f1d5eb4c6d29fd6a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 14 Jun 2024 11:56:43 -0500 Subject: [PATCH 28/86] Add known followers to shadow cache (#4517) --- src/state/cache/profile-shadow.ts | 2 ++ src/state/queries/known-followers.ts | 32 ++++++++++++++++++++++++++-- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/src/state/cache/profile-shadow.ts b/src/state/cache/profile-shadow.ts index 0a618ab3bb..dc907664e2 100644 --- a/src/state/cache/profile-shadow.ts +++ b/src/state/cache/profile-shadow.ts @@ -5,6 +5,7 @@ import EventEmitter from 'eventemitter3' import {batchedUpdates} from '#/lib/batchedUpdates' import {findAllProfilesInQueryData as findAllProfilesInActorSearchQueryData} from '../queries/actor-search' +import {findAllProfilesInQueryData as findAllProfilesInKnownFollowersQueryData} from '../queries/known-followers' import {findAllProfilesInQueryData as findAllProfilesInListMembersQueryData} from '../queries/list-members' import {findAllProfilesInQueryData as findAllProfilesInListConvosQueryData} from '../queries/messages/list-converations' import {findAllProfilesInQueryData as findAllProfilesInMyBlockedAccountsQueryData} from '../queries/my-blocked-accounts' @@ -111,4 +112,5 @@ function* findProfilesInCache( yield* findAllProfilesInListConvosQueryData(queryClient, did) yield* findAllProfilesInFeedsQueryData(queryClient, did) yield* findAllProfilesInPostThreadQueryData(queryClient, did) + yield* findAllProfilesInKnownFollowersQueryData(queryClient, did) } diff --git a/src/state/queries/known-followers.ts b/src/state/queries/known-followers.ts index adcbf4b502..fedd9b40f0 100644 --- a/src/state/queries/known-followers.ts +++ b/src/state/queries/known-followers.ts @@ -1,5 +1,10 @@ -import {AppBskyGraphGetKnownFollowers} from '@atproto/api' -import {InfiniteData, QueryKey, useInfiniteQuery} from '@tanstack/react-query' +import {AppBskyActorDefs, AppBskyGraphGetKnownFollowers} from '@atproto/api' +import { + InfiniteData, + QueryClient, + QueryKey, + useInfiniteQuery, +} from '@tanstack/react-query' import {useAgent} from '#/state/session' @@ -32,3 +37,26 @@ export function useProfileKnownFollowersQuery(did: string | undefined) { enabled: !!did, }) } + +export function* findAllProfilesInQueryData( + queryClient: QueryClient, + did: string, +): Generator { + const queryDatas = queryClient.getQueriesData< + InfiniteData + >({ + queryKey: [RQKEY_ROOT], + }) + for (const [_queryKey, queryData] of queryDatas) { + if (!queryData?.pages) { + continue + } + for (const page of queryData?.pages) { + for (const follow of page.followers) { + if (follow.did === did) { + yield follow + } + } + } + } +} From 641a36c21dd8adf9d57353c41dfbf7ec5a48c8cd Mon Sep 17 00:00:00 2001 From: Hailey Date: Fri, 14 Jun 2024 09:59:02 -0700 Subject: [PATCH 29/86] version bump (#4519) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5f9a898fc9..e08aa9d29c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.86.0", + "version": "1.87.0", "private": true, "engines": { "node": ">=18" From f8c58a68a9a78689f9f636f3d739d9574a18ff7b Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 14 Jun 2024 11:59:53 -0500 Subject: [PATCH 30/86] Fix count again (#4516) --- src/components/KnownFollowers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx index a8bdb763d7..63f61ce856 100644 --- a/src/components/KnownFollowers.tsx +++ b/src/components/KnownFollowers.tsx @@ -100,7 +100,7 @@ function KnownFollowersInner({ moderation, } }) - const count = cachedKnownFollowers.count - Math.min(slice.length, 2) + const count = cachedKnownFollowers.count return ( Date: Fri, 14 Jun 2024 19:01:31 +0200 Subject: [PATCH 31/86] Resolve patch-package warnings (#4520) --- .../{expo-haptics+12.8.1.patch => expo-haptics+13.0.1.patch} | 4 ++-- ...{expo-updates+0.25.11.patch => expo-updates+0.25.14.patch} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename patches/{expo-haptics+12.8.1.patch => expo-haptics+13.0.1.patch} (96%) rename patches/{expo-updates+0.25.11.patch => expo-updates+0.25.14.patch} (96%) diff --git a/patches/expo-haptics+12.8.1.patch b/patches/expo-haptics+13.0.1.patch similarity index 96% rename from patches/expo-haptics+12.8.1.patch rename to patches/expo-haptics+13.0.1.patch index a95b56f3be..9c7b9a6663 100644 --- a/patches/expo-haptics+12.8.1.patch +++ b/patches/expo-haptics+13.0.1.patch @@ -1,9 +1,9 @@ diff --git a/node_modules/expo-haptics/android/src/main/java/expo/modules/haptics/HapticsModule.kt b/node_modules/expo-haptics/android/src/main/java/expo/modules/haptics/HapticsModule.kt -index 26c52af..b949a4c 100644 +index 1520465..6ea988a 100644 --- a/node_modules/expo-haptics/android/src/main/java/expo/modules/haptics/HapticsModule.kt +++ b/node_modules/expo-haptics/android/src/main/java/expo/modules/haptics/HapticsModule.kt @@ -42,7 +42,7 @@ class HapticsModule : Module() { - + private fun vibrate(type: HapticsVibrationType) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { - vibrator.vibrate(VibrationEffect.createWaveform(type.timings, type.amplitudes, -1)) diff --git a/patches/expo-updates+0.25.11.patch b/patches/expo-updates+0.25.14.patch similarity index 96% rename from patches/expo-updates+0.25.11.patch rename to patches/expo-updates+0.25.14.patch index 5f9eceef48..6fc4fc5fcf 100644 --- a/patches/expo-updates+0.25.11.patch +++ b/patches/expo-updates+0.25.14.patch @@ -1,11 +1,11 @@ diff --git a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift -index b85291e..07a5d3c 100644 +index b85291e..546709d 100644 --- a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift +++ b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift @@ -78,13 +78,20 @@ public final class ExpoUpdatesUpdate: Update { status = UpdateStatus.StatusPending } - + + // Instead of relying on various hacks to get the correct format for the specific + // platform on the backend, we can just add this little patch.. + let dateFormatter = DateFormatter() From 36e976fe5c35f66dee51d15b1767da90e8f7a817 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 14 Jun 2024 12:32:57 -0500 Subject: [PATCH 32/86] Redo explore page (#4491) * Redo explore page, wip * Remove circle icons * Load more styling * Lower limit * Some styling tweaks * Abstract * Add tab, query, factor out * Revert unneeded change * Revert unneeded change v2 * Update copy * Load more styling * Header styles * The thin blue line * Make sure it's hairline * Update query keys * Border * Expand avis * Very load more copy --- .../arrowBottom_stroke2_corner0_rounded.svg | 1 + src/components/icons/Arrow.tsx | 4 + src/state/queries/feed.ts | 34 +- src/state/queries/suggested-follows.ts | 13 +- src/view/screens/Search/Explore.tsx | 556 ++++++++++++++++++ src/view/screens/Search/Search.tsx | 141 ++--- 6 files changed, 656 insertions(+), 93 deletions(-) create mode 100644 assets/icons/arrowBottom_stroke2_corner0_rounded.svg create mode 100644 src/view/screens/Search/Explore.tsx diff --git a/assets/icons/arrowBottom_stroke2_corner0_rounded.svg b/assets/icons/arrowBottom_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..5f4a11e09a --- /dev/null +++ b/assets/icons/arrowBottom_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/src/components/icons/Arrow.tsx b/src/components/icons/Arrow.tsx index eb753e5493..d6fb635e96 100644 --- a/src/components/icons/Arrow.tsx +++ b/src/components/icons/Arrow.tsx @@ -7,3 +7,7 @@ export const ArrowTopRight_Stroke2_Corner0_Rounded = createSinglePathSVG({ 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 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/state/queries/feed.ts b/src/state/queries/feed.ts index fed23f5b12..2981b41b45 100644 --- a/src/state/queries/feed.ts +++ b/src/state/queries/feed.ts @@ -190,8 +190,10 @@ export const KNOWN_AUTHED_ONLY_FEEDS = [ type GetPopularFeedsOptions = {limit?: number} -export function createGetPopularFeedsQueryKey(...args: any[]) { - return ['getPopularFeeds', ...args] +export function createGetPopularFeedsQueryKey( + options?: GetPopularFeedsOptions, +) { + return ['getPopularFeeds', options] } export function useGetPopularFeedsQuery(options?: GetPopularFeedsOptions) { @@ -299,6 +301,34 @@ export function useSearchPopularFeedsMutation() { }) } +const popularFeedsSearchQueryKeyRoot = 'popularFeedsSearch' +export const createPopularFeedsSearchQueryKey = (query: string) => [ + popularFeedsSearchQueryKeyRoot, + query, +] + +export function usePopularFeedsSearch({ + query, + enabled, +}: { + query: string + enabled?: boolean +}) { + const agent = useAgent() + return useQuery({ + enabled, + queryKey: createPopularFeedsSearchQueryKey(query), + queryFn: async () => { + const res = await agent.app.bsky.unspecced.getPopularFeedGenerators({ + limit: 10, + query: query, + }) + + return res.data.feeds + }, + }) +} + export type SavedFeedSourceInfo = FeedSourceInfo & { savedFeed: AppBskyActorDefs.SavedFeed } diff --git a/src/state/queries/suggested-follows.ts b/src/state/queries/suggested-follows.ts index 59b8f7ed55..40251d43d7 100644 --- a/src/state/queries/suggested-follows.ts +++ b/src/state/queries/suggested-follows.ts @@ -23,7 +23,10 @@ import {useAgent, useSession} from '#/state/session' import {useModerationOpts} from '../preferences/moderation-opts' const suggestedFollowsQueryKeyRoot = 'suggested-follows' -const suggestedFollowsQueryKey = [suggestedFollowsQueryKeyRoot] +const suggestedFollowsQueryKey = (options?: SuggestedFollowsOptions) => [ + suggestedFollowsQueryKeyRoot, + options, +] const suggestedFollowsByActorQueryKeyRoot = 'suggested-follows-by-actor' const suggestedFollowsByActorQueryKey = (did: string) => [ @@ -31,7 +34,9 @@ const suggestedFollowsByActorQueryKey = (did: string) => [ did, ] -export function useSuggestedFollowsQuery() { +type SuggestedFollowsOptions = {limit?: number} + +export function useSuggestedFollowsQuery(options?: SuggestedFollowsOptions) { const {currentAccount} = useSession() const agent = useAgent() const moderationOpts = useModerationOpts() @@ -46,12 +51,12 @@ export function useSuggestedFollowsQuery() { >({ enabled: !!moderationOpts && !!preferences, staleTime: STALE.HOURS.ONE, - queryKey: suggestedFollowsQueryKey, + queryKey: suggestedFollowsQueryKey(options), queryFn: async ({pageParam}) => { const contentLangs = getContentLanguages().join(',') const res = await agent.app.bsky.actor.getSuggestions( { - limit: 25, + limit: options?.limit || 25, cursor: pageParam, }, { diff --git a/src/view/screens/Search/Explore.tsx b/src/view/screens/Search/Explore.tsx new file mode 100644 index 0000000000..f6e998838a --- /dev/null +++ b/src/view/screens/Search/Explore.tsx @@ -0,0 +1,556 @@ +import React from 'react' +import {View} from 'react-native' +import { + AppBskyActorDefs, + AppBskyFeedDefs, + moderateProfile, + ModerationDecision, + ModerationOpts, +} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {logger} from '#/logger' +import {isWeb} from '#/platform/detection' +import {useModerationOpts} from '#/state/preferences/moderation-opts' +import {useGetPopularFeedsQuery} from '#/state/queries/feed' +import {usePreferencesQuery} from '#/state/queries/preferences' +import {useSuggestedFollowsQuery} from '#/state/queries/suggested-follows' +import {useSession} from '#/state/session' +import {cleanError} from 'lib/strings/errors' +import {ProfileCardWithFollowBtn} from '#/view/com/profile/ProfileCard' +import {List} from '#/view/com/util/List' +import {UserAvatar} from '#/view/com/util/UserAvatar' +import {FeedSourceCard} from 'view/com/feeds/FeedSourceCard' +import { + FeedFeedLoadingPlaceholder, + ProfileCardFeedLoadingPlaceholder, +} from 'view/com/util/LoadingPlaceholder' +import {atoms as a, useTheme, ViewStyleProp} from '#/alf' +import {Button} from '#/components/Button' +import {ArrowBottom_Stroke2_Corner0_Rounded as ArrowBottom} from '#/components/icons/Arrow' +import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' +import {Props as SVGIconProps} from '#/components/icons/common' +import {ListSparkle_Stroke2_Corner0_Rounded as ListSparkle} from '#/components/icons/ListSparkle' +import {UserCircle_Stroke2_Corner0_Rounded as Person} from '#/components/icons/UserCircle' +import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' + +function SuggestedItemsHeader({ + title, + description, + style, + icon: Icon, +}: { + title: string + description: string + icon: React.ComponentType +} & ViewStyleProp) { + const t = useTheme() + + return ( + + + + + {title} + + + {description} + + + + ) +} + +type LoadMoreItems = + | { + type: 'profile' + key: string + avatar: string + moderation: ModerationDecision + } + | { + type: 'feed' + key: string + avatar: string + moderation: undefined + } + +function LoadMore({ + item, + moderationOpts, +}: { + item: ExploreScreenItems & {type: 'loadMore'} + moderationOpts?: ModerationOpts +}) { + const t = useTheme() + const {_} = useLingui() + const items = React.useMemo(() => { + return item.items + .map(_item => { + if (_item.type === 'profile') { + return { + type: 'profile', + key: _item.profile.did, + avatar: _item.profile.avatar, + moderation: moderateProfile(_item.profile, moderationOpts!), + } + } else if (_item.type === 'feed') { + return { + type: 'feed', + key: _item.feed.uri, + avatar: _item.feed.avatar, + moderation: undefined, + } + } + return undefined + }) + .filter(Boolean) as LoadMoreItems[] + }, [item.items, moderationOpts]) + const type = items[0].type + + return ( + + + + ) +} + +type ExploreScreenItems = + | { + type: 'header' + key: string + title: string + description: string + style?: ViewStyleProp['style'] + icon: React.ComponentType + } + | { + type: 'profile' + key: string + profile: AppBskyActorDefs.ProfileViewBasic + } + | { + type: 'feed' + key: string + feed: AppBskyFeedDefs.GeneratorView + } + | { + type: 'loadMore' + key: string + isLoadingMore: boolean + onLoadMore: () => void + items: ExploreScreenItems[] + } + | { + type: 'profilePlaceholder' + key: string + } + | { + type: 'feedPlaceholder' + key: string + } + | { + type: 'error' + key: string + message: string + error: string + } + +export function Explore() { + const {_} = useLingui() + const t = useTheme() + const {hasSession} = useSession() + const {data: preferences, error: preferencesError} = usePreferencesQuery() + const moderationOpts = useModerationOpts() + const { + data: profiles, + hasNextPage: hasNextProfilesPage, + isLoading: isLoadingProfiles, + isFetchingNextPage: isFetchingNextProfilesPage, + error: profilesError, + fetchNextPage: fetchNextProfilesPage, + } = useSuggestedFollowsQuery({limit: 3}) + const { + data: feeds, + hasNextPage: hasNextFeedsPage, + isLoading: isLoadingFeeds, + isFetchingNextPage: isFetchingNextFeedsPage, + error: feedsError, + fetchNextPage: fetchNextFeedsPage, + } = useGetPopularFeedsQuery({limit: 3}) + + const isLoadingMoreProfiles = isFetchingNextProfilesPage && !isLoadingProfiles + const onLoadMoreProfiles = React.useCallback(async () => { + if (isFetchingNextProfilesPage || !hasNextProfilesPage || profilesError) + return + try { + await fetchNextProfilesPage() + } catch (err) { + logger.error('Failed to load more suggested follows', {message: err}) + } + }, [ + isFetchingNextProfilesPage, + hasNextProfilesPage, + profilesError, + fetchNextProfilesPage, + ]) + + const isLoadingMoreFeeds = isFetchingNextFeedsPage && !isLoadingFeeds + const onLoadMoreFeeds = React.useCallback(async () => { + if (isFetchingNextFeedsPage || !hasNextFeedsPage || feedsError) return + try { + await fetchNextFeedsPage() + } catch (err) { + logger.error('Failed to load more suggested follows', {message: err}) + } + }, [ + isFetchingNextFeedsPage, + hasNextFeedsPage, + feedsError, + fetchNextFeedsPage, + ]) + + const items = React.useMemo(() => { + const i: ExploreScreenItems[] = [ + { + type: 'header', + key: 'suggested-follows-header', + title: _(msg`Suggested accounts`), + description: _( + msg`Follow more accounts to get connected to your interests and build your network.`, + ), + icon: Person, + }, + ] + + if (profiles) { + // 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 profiles.pages) { + for (const actor of page.actors) { + if (!seen.has(actor.did)) { + seen.add(actor.did) + i.push({ + type: 'profile', + key: actor.did, + profile: actor, + }) + } + } + } + + i.push({ + type: 'loadMore', + key: 'loadMoreProfiles', + isLoadingMore: isLoadingMoreProfiles, + onLoadMore: onLoadMoreProfiles, + items: i.filter(item => item.type === 'profile').slice(-3), + }) + } else { + if (profilesError) { + i.push({ + type: 'error', + key: 'profilesError', + message: _(msg`Failed to load suggested follows`), + error: cleanError(profilesError), + }) + } else { + i.push({type: 'profilePlaceholder', key: 'profilePlaceholder'}) + } + } + + i.push({ + type: 'header', + key: 'suggested-feeds-header', + title: _(msg`Discover new feeds`), + description: _( + msg`Custom feeds built by the community bring you new experiences and help you find the content you love.`, + ), + style: [a.pt_5xl], + icon: ListSparkle, + }) + + if (feeds && preferences) { + // 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 feeds.pages) { + for (const feed of page.feeds) { + if (!seen.has(feed.uri)) { + seen.add(feed.uri) + i.push({ + type: 'feed', + key: feed.uri, + feed, + }) + } + } + } + + if (feedsError) { + i.push({ + type: 'error', + key: 'feedsError', + message: _(msg`Failed to load suggested feeds`), + error: cleanError(feedsError), + }) + } else if (preferencesError) { + i.push({ + type: 'error', + key: 'preferencesError', + message: _(msg`Failed to load feeds preferences`), + error: cleanError(preferencesError), + }) + } else { + i.push({ + type: 'loadMore', + key: 'loadMoreFeeds', + isLoadingMore: isLoadingMoreFeeds, + onLoadMore: onLoadMoreFeeds, + items: i.filter(item => item.type === 'feed').slice(-3), + }) + } + } else { + if (feedsError) { + i.push({ + type: 'error', + key: 'feedsError', + message: _(msg`Failed to load suggested feeds`), + error: cleanError(feedsError), + }) + } else if (preferencesError) { + i.push({ + type: 'error', + key: 'preferencesError', + message: _(msg`Failed to load feeds preferences`), + error: cleanError(preferencesError), + }) + } else { + i.push({type: 'feedPlaceholder', key: 'feedPlaceholder'}) + } + } + + return i + }, [ + _, + profiles, + feeds, + preferences, + onLoadMoreFeeds, + onLoadMoreProfiles, + isLoadingMoreProfiles, + isLoadingMoreFeeds, + profilesError, + feedsError, + preferencesError, + ]) + + const renderItem = React.useCallback( + ({item}: {item: ExploreScreenItems}) => { + switch (item.type) { + case 'header': { + return ( + + ) + } + case 'profile': { + return ( + + + + ) + } + case 'feed': { + return ( + + + + ) + } + case 'loadMore': { + return + } + case 'profilePlaceholder': { + return + } + case 'feedPlaceholder': { + return + } + case 'error': { + return ( + + + + + + {item.message} + + + {item.error} + + + + + ) + } + } + }, + [t, hasSession, moderationOpts], + ) + + return ( + item.key} + // @ts-ignore web only -prf + desktopFixedHeight + contentContainerStyle={{paddingBottom: 200}} + keyboardShouldPersistTaps="handled" + keyboardDismissMode="on-drag" + /> + ) +} diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index b6daf84b38..f1b0301d00 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -29,15 +29,14 @@ import {MagnifyingGlassIcon} from '#/lib/icons' import {makeProfileLink} from '#/lib/routes/links' import {NavigationProp} from '#/lib/routes/types' import {augmentSearchQuery} from '#/lib/strings/helpers' -import {s} from '#/lib/styles' import {logger} from '#/logger' import {isIOS, isNative, isWeb} from '#/platform/detection' import {listenSoftReset} from '#/state/events' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useActorAutocompleteQuery} from '#/state/queries/actor-autocomplete' import {useActorSearch} from '#/state/queries/actor-search' +import {usePopularFeedsSearch} from '#/state/queries/feed' import {useSearchPostsQuery} from '#/state/queries/search-posts' -import {useSuggestedFollowsQuery} from '#/state/queries/suggested-follows' import {useSession} from '#/state/session' import {useSetDrawerOpen} from '#/state/shell' import {useSetDrawerSwipeDisabled, useSetMinimalShellMode} from '#/state/shell' @@ -56,8 +55,9 @@ import {Link} from '#/view/com/util/Link' import {List} from '#/view/com/util/List' import {Text} from '#/view/com/util/text/Text' import {CenteredView, ScrollView} from '#/view/com/util/Views' +import {Explore} from '#/view/screens/Search/Explore' import {SearchLinkCard, SearchProfileCard} from '#/view/shell/desktop/Search' -import {ProfileCardFeedLoadingPlaceholder} from 'view/com/util/LoadingPlaceholder' +import {FeedSourceCard} from 'view/com/feeds/FeedSourceCard' import {atoms as a} from '#/alf' import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu' @@ -122,70 +122,6 @@ function EmptyState({message, error}: {message: string; error?: string}) { ) } -function useSuggestedFollows(): [ - AppBskyActorDefs.ProfileViewBasic[], - () => void, -] { - const { - data: suggestions, - hasNextPage, - isFetchingNextPage, - isError, - fetchNextPage, - } = useSuggestedFollowsQuery() - - const onEndReached = React.useCallback(async () => { - if (isFetchingNextPage || !hasNextPage || isError) return - try { - await fetchNextPage() - } catch (err) { - logger.error('Failed to load more suggested follows', {message: err}) - } - }, [isFetchingNextPage, hasNextPage, isError, fetchNextPage]) - - const items: AppBskyActorDefs.ProfileViewBasic[] = [] - if (suggestions) { - // 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 suggestions.pages) { - for (const actor of page.actors) { - if (!seen.has(actor.did)) { - seen.add(actor.did) - items.push(actor) - } - } - } - } - return [items, onEndReached] -} - -let SearchScreenSuggestedFollows = (_props: {}): React.ReactNode => { - const pal = usePalette('default') - const [suggestions, onEndReached] = useSuggestedFollows() - - return suggestions.length ? ( - } - keyExtractor={item => item.did} - // @ts-ignore web only -prf - desktopFixedHeight - contentContainerStyle={{paddingBottom: 200}} - keyboardShouldPersistTaps="handled" - keyboardDismissMode="on-drag" - onEndReached={onEndReached} - onEndReachedThreshold={2} - /> - ) : ( - - - - - ) -} -SearchScreenSuggestedFollows = React.memo(SearchScreenSuggestedFollows) - type SearchResultSlice = | { type: 'post' @@ -342,6 +278,50 @@ let SearchScreenUserResults = ({ } SearchScreenUserResults = React.memo(SearchScreenUserResults) +let SearchScreenFeedsResults = ({ + query, + active, +}: { + query: string + active: boolean +}): React.ReactNode => { + const {_} = useLingui() + const {hasSession} = useSession() + + const {data: results, isFetched} = usePopularFeedsSearch({ + query, + enabled: active, + }) + + return isFetched && results ? ( + <> + {results.length ? ( + ( + + )} + keyExtractor={item => item.did} + // @ts-ignore web only -prf + desktopFixedHeight + contentContainerStyle={{paddingBottom: 100}} + /> + ) : ( + + )} + + ) : ( + + ) +} +SearchScreenFeedsResults = React.memo(SearchScreenFeedsResults) + let SearchScreenInner = ({query}: {query?: string}): React.ReactNode => { const pal = usePalette('default') const setMinimalShellMode = useSetMinimalShellMode() @@ -389,6 +369,12 @@ let SearchScreenInner = ({query}: {query?: string}): React.ReactNode => { ), }, + { + title: _(msg`Feeds`), + component: ( + + ), + }, ] }, [_, query, activeTab]) @@ -408,26 +394,7 @@ let SearchScreenInner = ({query}: {query?: string}): React.ReactNode => { ))} ) : hasSession ? ( - - - - Suggested Follows - - - - - + ) : ( Date: Sat, 15 Jun 2024 02:39:08 +0900 Subject: [PATCH 33/86] Fix kawaii logo (#4505) --- src/view/com/home/HomeHeaderLayout.web.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/com/home/HomeHeaderLayout.web.tsx b/src/view/com/home/HomeHeaderLayout.web.tsx index 77bdba51fd..28f29ec787 100644 --- a/src/view/com/home/HomeHeaderLayout.web.tsx +++ b/src/view/com/home/HomeHeaderLayout.web.tsx @@ -57,6 +57,7 @@ function HomeHeaderLayoutDesktopAndTablet({ t.atoms.bg, t.atoms.border_contrast_low, styles.bar, + kawaii && {paddingTop: 22, paddingBottom: 16}, ]}> From 5751014117ff87a0b5188841b468095f00305ed5 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 14 Jun 2024 14:24:04 -0500 Subject: [PATCH 34/86] Feed source card (#4512) * Pass event through click handlers * Add FeedCard, use in Feeds screen * Tweak space * Don't contrain rt height * Tweak space * Fix type errors, don't pass event to fns that don't expect it * Show unresolved RT prior to facet resolution --- src/components/FeedCard.tsx | 198 ++++++++++++++++++ src/components/Prompt.tsx | 17 +- src/components/dms/LeaveConvoPrompt.tsx | 2 +- .../Profile/Header/ProfileHeaderLabeler.tsx | 2 +- src/view/com/util/post-embeds/GifEmbed.tsx | 2 +- src/view/screens/Feeds.tsx | 22 +- 6 files changed, 222 insertions(+), 21 deletions(-) create mode 100644 src/components/FeedCard.tsx diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx new file mode 100644 index 0000000000..2745ed7c9f --- /dev/null +++ b/src/components/FeedCard.tsx @@ -0,0 +1,198 @@ +import React from 'react' +import {GestureResponderEvent, View} from 'react-native' +import {AppBskyActorDefs, AppBskyFeedDefs, AtUri} from '@atproto/api' +import {msg, plural, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {logger} from '#/logger' +import { + useAddSavedFeedsMutation, + usePreferencesQuery, + useRemoveFeedMutation, +} from '#/state/queries/preferences' +import {sanitizeHandle} from 'lib/strings/handles' +import {UserAvatar} from '#/view/com/util/UserAvatar' +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} from '#/components/Link' +import {Loader} from '#/components/Loader' +import * as Prompt from '#/components/Prompt' +import {RichText} from '#/components/RichText' +import {Text} from '#/components/Typography' + +export function Default({feed}: {feed: AppBskyFeedDefs.GeneratorView}) { + return ( + + +
+ + + +
+ + +
+ + ) +} + +export function Link({ + children, + feed, +}: { + children: React.ReactElement + feed: AppBskyFeedDefs.GeneratorView +}) { + const href = React.useMemo(() => { + const urip = new AtUri(feed.uri) + const handleOrDid = feed.creator.handle || feed.creator.did + return `/profile/${handleOrDid}/feed/${urip.rkey}` + }, [feed]) + return {children} +} + +export function Outer({children}: {children: React.ReactNode}) { + return {children} +} + +export function Header({children}: {children: React.ReactNode}) { + return {children} +} + +export function Avatar({src}: {src: string | undefined}) { + return +} + +export function TitleAndByline({ + title, + creator, +}: { + title: string + creator: AppBskyActorDefs.ProfileViewBasic +}) { + const t = useTheme() + + return ( + + + {title} + + + Feed by {sanitizeHandle(creator.handle, '@')} + + + ) +} + +export function Description({description}: {description?: string}) { + const [rt, isResolving] = useRichText(description || '') + if (!description) return null + return isResolving ? ( + + ) : ( + + ) +} + +export function Likes({count}: {count: number}) { + const t = useTheme() + return ( + + {plural(count || 0, { + one: 'Liked by # user', + other: 'Liked by # users', + })} + + ) +} + +export function Action({uri, pin}: {uri: string; pin?: boolean}) { + const {_} = useLingui() + const {data: preferences} = usePreferencesQuery() + const {isPending: isAddSavedFeedPending, mutateAsync: saveFeeds} = + useAddSavedFeedsMutation() + const {isPending: isRemovePending, mutateAsync: removeFeed} = + useRemoveFeedMutation() + const savedFeedConfig = React.useMemo(() => { + return preferences?.savedFeeds?.find( + feed => feed.type === 'feed' && feed.value === uri, + ) + }, [preferences?.savedFeeds, uri]) + const removePromptControl = Prompt.usePromptControl() + const isPending = isAddSavedFeedPending || isRemovePending + + const toggleSave = React.useCallback( + async (e: GestureResponderEvent) => { + e.preventDefault() + e.stopPropagation() + + try { + if (savedFeedConfig) { + await removeFeed(savedFeedConfig) + } else { + await saveFeeds([ + { + type: 'feed', + value: uri, + pinned: pin || false, + }, + ]) + } + Toast.show(_(msg`Feeds updated!`)) + } catch (e: any) { + logger.error(e, {context: `FeedCard: failed to update feeds`, pin}) + Toast.show(_(msg`Failed to update feeds`)) + } + }, + [_, pin, saveFeeds, removeFeed, uri, savedFeedConfig], + ) + + const onPrompRemoveFeed = React.useCallback( + async (e: GestureResponderEvent) => { + e.preventDefault() + e.stopPropagation() + + removePromptControl.open() + }, + [removePromptControl], + ) + + return ( + <> + + + + + ) +} diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx index d05cab5ab6..315ad0dfda 100644 --- a/src/components/Prompt.tsx +++ b/src/components/Prompt.tsx @@ -1,10 +1,10 @@ import React from 'react' -import {View} from 'react-native' +import {GestureResponderEvent, View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {atoms as a, useBreakpoints, useTheme} from '#/alf' -import {Button, ButtonColor, ButtonText} from '#/components/Button' +import {Button, ButtonColor, ButtonProps, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' import {Text} from '#/components/Typography' @@ -136,7 +136,7 @@ export function Action({ * Note: The dialog will close automatically when the action is pressed, you * should NOT close the dialog as a side effect of this method. */ - onPress: () => void + onPress: ButtonProps['onPress'] color?: ButtonColor /** * Optional i18n string. If undefined, it will default to "Confirm". @@ -147,9 +147,12 @@ export function Action({ const {_} = useLingui() const {gtMobile} = useBreakpoints() const {close} = Dialog.useDialogContext() - const handleOnPress = React.useCallback(() => { - close(onPress) - }, [close, onPress]) + const handleOnPress = React.useCallback( + (e: GestureResponderEvent) => { + close(() => onPress?.(e)) + }, + [close, onPress], + ) return ( + + + + + + + Say hello! + + + + {profileName} joined Bluesky{' '} + {timeAgo(createdAt, {format: 'long'})} ago + + + + + +
+ ) +} diff --git a/src/components/icons/Newskie.tsx b/src/components/icons/Newskie.tsx new file mode 100644 index 0000000000..ddbb33201e --- /dev/null +++ b/src/components/icons/Newskie.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Newskie = createSinglePathSVG({ + path: 'M11.183 8.561c0 .544.348.984.892.984.545 0 .893-.44.893-.985V6.985c0-.544-.348-.985-.893-.985-.543 0-.892.44-.892.985v1.576Zm5.94 7.481c0 .539-.438.942-.976.942H8.004c-.538 0-.975-.411-.975-.95 0-2.782 2.264-5.021 5.046-5.021 2.783 0 5.047 2.247 5.047 5.03Zm-.43-4.584a.983.983 0 0 1 0-1.393l1.114-1.114a.985.985 0 0 1 1.393 1.393l-1.114 1.114a.985.985 0 0 1-1.393 0Zm2.897 3.741h1.575c.544 0 .985.349.985.892 0 .544-.44.892-.985.892h-1.67a.872.872 0 0 1-.89-.887c0-.543.44-.897.985-.897Zm-14.045.893c0-.544-.44-.892-.985-.892H2.985c-.544 0-.985.349-.985.892 0 .544.44.892.985.892H4.56c.545 0 .985-.349.985-.892Zm1.913-6.027a.985.985 0 0 1-1.393 1.393L4.95 10.344A.985.985 0 0 1 6.344 8.95l1.114 1.114Z', +}) diff --git a/src/screens/Profile/Header/Handle.tsx b/src/screens/Profile/Header/Handle.tsx index 9ab24fbbed..4f438a2868 100644 --- a/src/screens/Profile/Header/Handle.tsx +++ b/src/screens/Profile/Header/Handle.tsx @@ -5,7 +5,9 @@ import {Trans} from '@lingui/macro' import {Shadow} from '#/state/cache/types' import {isInvalidHandle} from 'lib/strings/handles' +import {isAndroid} from 'platform/detection' import {atoms as a, useTheme, web} from '#/alf' +import {NewskieDialog} from '#/components/NewskieDialog' import {Text} from '#/components/Typography' export function ProfileHeaderHandle({ @@ -17,7 +19,10 @@ export function ProfileHeaderHandle({ const invalidHandle = isInvalidHandle(profile.handle) const blockHide = profile.viewer?.blocking || profile.viewer?.blockedBy return ( - + + {profile.viewer?.followedBy && !blockHide ? ( From 35e54e24a0b08ce0f2e3389aeb4fb0f29778170e Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 18 Jun 2024 13:37:14 -0500 Subject: [PATCH 51/86] Explore fixes (#4540) * Use safe check, check for next page, handle varied lengths * Fix border width * Move safe check * Add font_heavy and use it on the explore page headers --------- Co-authored-by: Paul Frazee --- src/alf/atoms.ts | 3 +++ src/alf/tokens.ts | 1 + src/view/screens/Search/Explore.tsx | 31 ++++++++++++++++++----------- 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts index 1ccb0460c4..1dc2dfa7b0 100644 --- a/src/alf/atoms.ts +++ b/src/alf/atoms.ts @@ -267,6 +267,9 @@ export const atoms = { font_bold: { fontWeight: tokens.fontWeight.bold, }, + font_heavy: { + fontWeight: tokens.fontWeight.heavy, + }, italic: { fontStyle: 'italic', }, diff --git a/src/alf/tokens.ts b/src/alf/tokens.ts index 1bddd95d43..675844e296 100644 --- a/src/alf/tokens.ts +++ b/src/alf/tokens.ts @@ -118,6 +118,7 @@ export const fontWeight = { normal: '400', semibold: '500', bold: '600', + heavy: '700', } as const export const gradients = { diff --git a/src/view/screens/Search/Explore.tsx b/src/view/screens/Search/Explore.tsx index c7f5f939fe..dd93bf8130 100644 --- a/src/view/screens/Search/Explore.tsx +++ b/src/view/screens/Search/Explore.tsx @@ -64,7 +64,7 @@ function SuggestedItemsHeader({ fill={t.palette.primary_500} style={{marginLeft: -2}} /> - {title} + {title} {description} @@ -119,6 +119,9 @@ function LoadMore({ }) .filter(Boolean) as LoadMoreItems[] }, [item.items, moderationOpts]) + + if (items.length === 0) return null + const type = items[0].type return ( @@ -142,20 +145,20 @@ function LoadMore({ a.relative, { height: 32, - width: 32 + 15 * 3, + width: 32 + 15 * items.length, }, ]}> item.type === 'profile').slice(-3), - }) + if (hasNextProfilesPage) { + i.push({ + type: 'loadMore', + key: 'loadMoreProfiles', + isLoadingMore: isLoadingMoreProfiles, + onLoadMore: onLoadMoreProfiles, + items: i.filter(item => item.type === 'profile').slice(-3), + }) + } } else { if (profilesError) { i.push({ @@ -412,7 +417,7 @@ export function Explore() { message: _(msg`Failed to load feeds preferences`), error: cleanError(preferencesError), }) - } else { + } else if (hasNextFeedsPage) { i.push({ type: 'loadMore', key: 'loadMoreFeeds', @@ -454,6 +459,8 @@ export function Explore() { profilesError, feedsError, preferencesError, + hasNextProfilesPage, + hasNextFeedsPage, ]) const renderItem = React.useCallback( From 5f5d845053e13169f89fc70a3f858b0a9e5ed4fd Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 18 Jun 2024 19:48:34 +0100 Subject: [PATCH 52/86] Server-side thread mutes (#4518) * update atproto/api * move thread mutes to server side * rm log * move muted threads provider to inside did key * use map instead of object --- package.json | 2 +- src/App.native.tsx | 76 ++++++++++----------- src/App.web.tsx | 72 +++++++++---------- src/lib/statsig/events.ts | 2 + src/state/cache/thread-mutes.tsx | 44 ++++++++++++ src/state/muted-threads.tsx | 62 ----------------- src/state/queries/notifications/feed.ts | 3 - src/state/queries/notifications/unread.tsx | 5 +- src/state/queries/notifications/util.ts | 50 -------------- src/state/queries/post.ts | 70 +++++++++++++++++++ src/view/com/util/forms/PostDropdownBtn.tsx | 45 ++++++------ src/view/com/util/post-ctrls/PostCtrls.tsx | 4 +- yarn.lock | 8 +-- 13 files changed, 223 insertions(+), 220 deletions(-) create mode 100644 src/state/cache/thread-mutes.tsx delete mode 100644 src/state/muted-threads.tsx diff --git a/package.json b/package.json index 29e198c9cc..4178369035 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.18", + "@atproto/api": "^0.12.19", "@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 322e944a47..18461fdd05 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -14,40 +14,40 @@ import * as SplashScreen from 'expo-splash-screen' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {useIntentHandler} from '#/lib/hooks/useIntentHandler' +import {QueryProvider} from '#/lib/react-query' import { initialize, Provider as StatsigProvider, tryFetchGates, } from '#/lib/statsig/statsig' +import {s} from '#/lib/styles' +import {ThemeProvider} from '#/lib/ThemeContext' import {logger} from '#/logger' +import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes' +import {Provider as DialogStateProvider} from '#/state/dialogs' +import {Provider as InvitesStateProvider} from '#/state/invites' +import {Provider as LightboxStateProvider} from '#/state/lightbox' import {MessagesProvider} from '#/state/messages' +import {Provider as ModalStateProvider} from '#/state/modals' import {init as initPersistedState} from '#/state/persisted' +import {Provider as PrefsStateProvider} from '#/state/preferences' import {Provider as LabelDefsProvider} from '#/state/preferences/label-defs' import {Provider as ModerationOptsProvider} from '#/state/preferences/moderation-opts' -import {readLastActiveAccount} from '#/state/session/util' -import {useIntentHandler} from 'lib/hooks/useIntentHandler' -import {QueryProvider} from 'lib/react-query' -import {s} from 'lib/styles' -import {ThemeProvider} from 'lib/ThemeContext' -import {Provider as DialogStateProvider} from 'state/dialogs' -import {Provider as InvitesStateProvider} from 'state/invites' -import {Provider as LightboxStateProvider} from 'state/lightbox' -import {Provider as ModalStateProvider} from 'state/modals' -import {Provider as MutedThreadsProvider} from 'state/muted-threads' -import {Provider as PrefsStateProvider} from 'state/preferences' -import {Provider as UnreadNotifsProvider} from 'state/queries/notifications/unread' +import {Provider as UnreadNotifsProvider} from '#/state/queries/notifications/unread' import { Provider as SessionProvider, SessionAccount, useSession, useSessionApi, -} from 'state/session' -import {Provider as ShellStateProvider} from 'state/shell' -import {Provider as LoggedOutViewProvider} from 'state/shell/logged-out' -import {Provider as SelectedFeedProvider} from 'state/shell/selected-feed' -import {TestCtrls} from 'view/com/testing/TestCtrls' -import * as Toast from 'view/com/util/Toast' -import {Shell} from 'view/shell' +} from '#/state/session' +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 SelectedFeedProvider} from '#/state/shell/selected-feed' +import {TestCtrls} from '#/view/com/testing/TestCtrls' +import * as Toast from '#/view/com/util/Toast' +import {Shell} from '#/view/shell' import {ThemeProvider as Alf} from '#/alf' import {useColorModeTheme} from '#/alf/util/useColorModeTheme' import {Provider as PortalProvider} from '#/components/Portal' @@ -112,10 +112,12 @@ function InnerApp() { - - - - + + + + + + @@ -154,21 +156,19 @@ function App() { - - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/src/App.web.tsx b/src/App.web.tsx index 5c4dc4e637..6af3c7d6fb 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -8,35 +8,35 @@ import {SafeAreaProvider} from 'react-native-safe-area-context' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +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 {logger} from '#/logger' +import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes' +import {Provider as DialogStateProvider} from '#/state/dialogs' +import {Provider as InvitesStateProvider} from '#/state/invites' +import {Provider as LightboxStateProvider} from '#/state/lightbox' import {MessagesProvider} from '#/state/messages' +import {Provider as ModalStateProvider} from '#/state/modals' import {init as initPersistedState} from '#/state/persisted' +import {Provider as PrefsStateProvider} from '#/state/preferences' import {Provider as LabelDefsProvider} from '#/state/preferences/label-defs' import {Provider as ModerationOptsProvider} from '#/state/preferences/moderation-opts' -import {readLastActiveAccount} from '#/state/session/util' -import {useIntentHandler} from 'lib/hooks/useIntentHandler' -import {QueryProvider} from 'lib/react-query' -import {ThemeProvider} from 'lib/ThemeContext' -import {Provider as DialogStateProvider} from 'state/dialogs' -import {Provider as InvitesStateProvider} from 'state/invites' -import {Provider as LightboxStateProvider} from 'state/lightbox' -import {Provider as ModalStateProvider} from 'state/modals' -import {Provider as MutedThreadsProvider} from 'state/muted-threads' -import {Provider as PrefsStateProvider} from 'state/preferences' -import {Provider as UnreadNotifsProvider} from 'state/queries/notifications/unread' +import {Provider as UnreadNotifsProvider} from '#/state/queries/notifications/unread' import { Provider as SessionProvider, SessionAccount, useSession, useSessionApi, -} from 'state/session' -import {Provider as ShellStateProvider} from 'state/shell' -import {Provider as LoggedOutViewProvider} from 'state/shell/logged-out' -import {Provider as SelectedFeedProvider} from 'state/shell/selected-feed' -import * as Toast from 'view/com/util/Toast' -import {ToastContainer} from 'view/com/util/Toast.web' -import {Shell} from 'view/shell/index' +} from '#/state/session' +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 SelectedFeedProvider} from '#/state/shell/selected-feed' +import * as Toast from '#/view/com/util/Toast' +import {ToastContainer} from '#/view/com/util/Toast.web' +import {Shell} from '#/view/shell/index' import {ThemeProvider as Alf} from '#/alf' import {useColorModeTheme} from '#/alf/util/useColorModeTheme' import {Provider as PortalProvider} from '#/components/Portal' @@ -96,9 +96,11 @@ function InnerApp() { - - - + + + + + @@ -136,21 +138,19 @@ function App() { - - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts index 9939f60c9c..0d77ec8a36 100644 --- a/src/lib/statsig/events.ts +++ b/src/lib/statsig/events.ts @@ -103,6 +103,8 @@ export type LogEvents = { 'post:unrepost': { logContext: 'FeedItem' | 'PostThreadItem' | 'Post' } + 'post:mute': {} + 'post:unmute': {} 'profile:follow': { didBecomeMutual: boolean | undefined followeeClout: number | undefined diff --git a/src/state/cache/thread-mutes.tsx b/src/state/cache/thread-mutes.tsx new file mode 100644 index 0000000000..b58bd430f5 --- /dev/null +++ b/src/state/cache/thread-mutes.tsx @@ -0,0 +1,44 @@ +import React from 'react' + +type StateContext = Map +type SetStateContext = (uri: string, value: boolean) => void + +const stateContext = React.createContext(new Map()) +const setStateContext = React.createContext( + (_: string) => false, +) + +export function Provider({children}: React.PropsWithChildren<{}>) { + const [state, setState] = React.useState(() => new Map()) + + const setThreadMute = React.useCallback( + (uri: string, value: boolean) => { + setState(prev => { + const next = new Map(prev) + next.set(uri, value) + return next + }) + }, + [setState], + ) + return ( + + + {children} + + + ) +} + +export function useMutedThreads() { + return React.useContext(stateContext) +} + +export function useIsThreadMuted(uri: string, defaultValue = false) { + const state = React.useContext(stateContext) + return state.get(uri) ?? defaultValue +} + +export function useSetThreadMute() { + return React.useContext(setStateContext) +} diff --git a/src/state/muted-threads.tsx b/src/state/muted-threads.tsx deleted file mode 100644 index 84a717eb79..0000000000 --- a/src/state/muted-threads.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import React from 'react' -import * as persisted from '#/state/persisted' -import {track} from '#/lib/analytics/analytics' - -type StateContext = persisted.Schema['mutedThreads'] -type ToggleContext = (uri: string) => boolean - -const stateContext = React.createContext( - persisted.defaults.mutedThreads, -) -const toggleContext = React.createContext((_: string) => false) - -export function Provider({children}: React.PropsWithChildren<{}>) { - const [state, setState] = React.useState(persisted.get('mutedThreads')) - - const toggleThreadMute = React.useCallback( - (uri: string) => { - let muted = false - setState((arr: string[]) => { - if (arr.includes(uri)) { - arr = arr.filter(v => v !== uri) - muted = false - track('Post:ThreadUnmute') - } else { - arr = arr.concat([uri]) - muted = true - track('Post:ThreadMute') - } - persisted.write('mutedThreads', arr) - return arr - }) - return muted - }, - [setState], - ) - - React.useEffect(() => { - return persisted.onUpdate(() => { - setState(persisted.get('mutedThreads')) - }) - }, [setState]) - - return ( - - - {children} - - - ) -} - -export function useMutedThreads() { - return React.useContext(stateContext) -} - -export function useToggleThreadMute() { - return React.useContext(toggleContext) -} - -export function isThreadMuted(uri: string) { - return persisted.get('mutedThreads').includes(uri) -} diff --git a/src/state/queries/notifications/feed.ts b/src/state/queries/notifications/feed.ts index d9f019af38..0607f07a10 100644 --- a/src/state/queries/notifications/feed.ts +++ b/src/state/queries/notifications/feed.ts @@ -26,7 +26,6 @@ import { useQueryClient, } from '@tanstack/react-query' -import {useMutedThreads} from '#/state/muted-threads' import {useAgent} from '#/state/session' import {useModerationOpts} from '../../preferences/moderation-opts' import {STALE} from '..' @@ -54,7 +53,6 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { const agent = useAgent() const queryClient = useQueryClient() const moderationOpts = useModerationOpts() - const threadMutes = useMutedThreads() const unreads = useUnreadNotificationsApi() const enabled = opts?.enabled !== false const lastPageCountRef = useRef(0) @@ -82,7 +80,6 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { cursor: pageParam, queryClient, moderationOpts, - threadMutes, fetchAdditionalData: true, }) ).page diff --git a/src/state/queries/notifications/unread.tsx b/src/state/queries/notifications/unread.tsx index ffb8d03bc7..7bb325ea98 100644 --- a/src/state/queries/notifications/unread.tsx +++ b/src/state/queries/notifications/unread.tsx @@ -9,7 +9,6 @@ import EventEmitter from 'eventemitter3' import BroadcastChannel from '#/lib/broadcast' import {logger} from '#/logger' -import {useMutedThreads} from '#/state/muted-threads' import {useAgent, useSession} from '#/state/session' import {resetBadgeCount} from 'lib/notifications/notifications' import {useModerationOpts} from '../../preferences/moderation-opts' @@ -48,7 +47,6 @@ export function Provider({children}: React.PropsWithChildren<{}>) { const agent = useAgent() const queryClient = useQueryClient() const moderationOpts = useModerationOpts() - const threadMutes = useMutedThreads() const [numUnread, setNumUnread] = React.useState('') @@ -147,7 +145,6 @@ export function Provider({children}: React.PropsWithChildren<{}>) { limit: 40, queryClient, moderationOpts, - threadMutes, // only fetch subjects when the page is going to be used // in the notifications query, otherwise skip it @@ -192,7 +189,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { } }, } - }, [setNumUnread, queryClient, moderationOpts, threadMutes, agent]) + }, [setNumUnread, queryClient, moderationOpts, agent]) checkUnreadRef.current = api.checkUnread return ( diff --git a/src/state/queries/notifications/util.ts b/src/state/queries/notifications/util.ts index 4662493533..8ed1c0390c 100644 --- a/src/state/queries/notifications/util.ts +++ b/src/state/queries/notifications/util.ts @@ -1,5 +1,4 @@ import { - AppBskyEmbedRecord, AppBskyFeedDefs, AppBskyFeedLike, AppBskyFeedPost, @@ -28,7 +27,6 @@ export async function fetchPage({ limit, queryClient, moderationOpts, - threadMutes, fetchAdditionalData, }: { agent: BskyAgent @@ -36,7 +34,6 @@ export async function fetchPage({ limit: number queryClient: QueryClient moderationOpts: ModerationOpts | undefined - threadMutes: string[] fetchAdditionalData: boolean }): Promise<{page: FeedPage; indexedAt: string | undefined}> { const res = await agent.listNotifications({ @@ -67,11 +64,6 @@ export async function fetchPage({ } } - // apply thread muting - notifsGrouped = notifsGrouped.filter( - notif => !isThreadMuted(notif, threadMutes), - ) - let seenAt = res.data.seenAt ? new Date(res.data.seenAt) : new Date() if (Number.isNaN(seenAt.getTime())) { seenAt = new Date() @@ -207,45 +199,3 @@ function getSubjectUri( return notif.reasonSubject } } - -export function isThreadMuted(notif: FeedNotification, threadMutes: string[]) { - // If there's a subject we want to use that. This will always work on the notifications tab - if (notif.subject) { - const record = notif.subject.record as AppBskyFeedPost.Record - // Check for a quote record - if ( - (record.reply && threadMutes.includes(record.reply.root.uri)) || - (notif.subject.uri && threadMutes.includes(notif.subject.uri)) - ) { - return true - } else if ( - AppBskyEmbedRecord.isMain(record.embed) && - threadMutes.includes(record.embed.record.uri) - ) { - return true - } - } else { - // Otherwise we just do the best that we can - const record = notif.notification.record - if (AppBskyFeedPost.isRecord(record)) { - if (record.reply && threadMutes.includes(record.reply.root.uri)) { - // We can always filter replies - return true - } else if ( - AppBskyEmbedRecord.isMain(record.embed) && - threadMutes.includes(record.embed.record.uri) - ) { - // We can also filter quotes if the quoted post is the root - return true - } - } else if ( - AppBskyFeedRepost.isRecord(record) && - threadMutes.includes(record.subject.uri) - ) { - // Finally we can filter reposts, again if the post is the root - return true - } - } - - return false -} diff --git a/src/state/queries/post.ts b/src/state/queries/post.ts index 794f48eb1b..8e77bf6b92 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 {useIsThreadMuted, useSetThreadMute} from '../cache/thread-mutes' import {findProfileQueryData} from './profile' const RQKEY_ROOT = 'post' @@ -291,3 +292,72 @@ export function usePostDeleteMutation() { }, }) } + +export function useThreadMuteMutationQueue( + post: Shadow, + rootUri: string, +) { + const threadMuteMutation = useThreadMuteMutation() + const threadUnmuteMutation = useThreadUnmuteMutation() + const isThreadMuted = useIsThreadMuted(rootUri, post.viewer?.threadMuted) + const setThreadMute = useSetThreadMute() + + const queueToggle = useToggleMutationQueue({ + initialState: isThreadMuted, + runMutation: async (_prev, shouldLike) => { + if (shouldLike) { + await threadMuteMutation.mutateAsync({ + uri: rootUri, + }) + return true + } else { + await threadUnmuteMutation.mutateAsync({ + uri: rootUri, + }) + return false + } + }, + onSuccess(finalIsMuted) { + // finalize + setThreadMute(rootUri, finalIsMuted) + }, + }) + + const queueMuteThread = useCallback(() => { + // optimistically update + setThreadMute(rootUri, true) + return queueToggle(true) + }, [setThreadMute, rootUri, queueToggle]) + + const queueUnmuteThread = useCallback(() => { + // optimistically update + setThreadMute(rootUri, false) + return queueToggle(false) + }, [rootUri, setThreadMute, queueToggle]) + + return [isThreadMuted, queueMuteThread, queueUnmuteThread] as const +} + +function useThreadMuteMutation() { + const agent = useAgent() + return useMutation< + {}, + Error, + {uri: string} // the root post's uri + >({ + mutationFn: ({uri}) => { + logEvent('post:mute', {}) + return agent.api.app.bsky.graph.muteThread({root: uri}) + }, + }) +} + +function useThreadUnmuteMutation() { + const agent = useAgent() + return useMutation<{}, Error, {uri: string}>({ + mutationFn: ({uri}) => { + logEvent('post:unmute', {}) + return agent.api.app.bsky.graph.unmuteThread({root: uri}) + }, + }) +} diff --git a/src/view/com/util/forms/PostDropdownBtn.tsx b/src/view/com/util/forms/PostDropdownBtn.tsx index 2486b73d58..45e00e58c7 100644 --- a/src/view/com/util/forms/PostDropdownBtn.tsx +++ b/src/view/com/util/forms/PostDropdownBtn.tsx @@ -7,7 +7,7 @@ import { } from 'react-native' import * as Clipboard from 'expo-clipboard' import { - AppBskyActorDefs, + AppBskyFeedDefs, AppBskyFeedPost, AtUri, RichText as RichTextAPI, @@ -22,12 +22,15 @@ import {richTextToString} from '#/lib/strings/rich-text-helpers' import {getTranslatorLink} from '#/locale/helpers' import {logger} from '#/logger' import {isWeb} from '#/platform/detection' +import {Shadow} from '#/state/cache/post-shadow' import {useFeedFeedbackContext} from '#/state/feed-feedback' -import {useMutedThreads, useToggleThreadMute} from '#/state/muted-threads' import {useLanguagePrefs} from '#/state/preferences' import {useHiddenPosts, useHiddenPostsApi} from '#/state/preferences' import {useOpenLink} from '#/state/preferences/in-app-browser' -import {usePostDeleteMutation} from '#/state/queries/post' +import { + usePostDeleteMutation, + useThreadMuteMutationQueue, +} from '#/state/queries/post' import {useSession} from '#/state/session' import {getCurrentRoute} from 'lib/routes/helpers' import {shareUrl} from 'lib/sharing' @@ -62,9 +65,7 @@ import * as Toast from '../Toast' let PostDropdownBtn = ({ testID, - postAuthor, - postCid, - postUri, + post, postFeedContext, record, richText, @@ -74,9 +75,7 @@ let PostDropdownBtn = ({ timestamp, }: { testID: string - postAuthor: AppBskyActorDefs.ProfileViewBasic - postCid: string - postUri: string + post: Shadow postFeedContext: string | undefined record: AppBskyFeedPost.Record richText: RichTextAPI @@ -92,8 +91,6 @@ let PostDropdownBtn = ({ const {_} = useLingui() const defaultCtrlColor = theme.palette.default.postCtrl const langPrefs = useLanguagePrefs() - const mutedThreads = useMutedThreads() - const toggleThreadMute = useToggleThreadMute() const postDeleteMutation = usePostDeleteMutation() const hiddenPosts = useHiddenPosts() const {hidePost} = useHiddenPostsApi() @@ -107,9 +104,15 @@ let PostDropdownBtn = ({ const loggedOutWarningPromptControl = useDialogControl() const embedPostControl = useDialogControl() const sendViaChatControl = useDialogControl() + const postUri = post.uri + const postCid = post.cid + const postAuthor = post.author const rootUri = record.reply?.root?.uri || postUri - const isThreadMuted = mutedThreads.includes(rootUri) + const [isThreadMuted, muteThread, unmuteThread] = useThreadMuteMutationQueue( + post, + rootUri, + ) const isPostHidden = hiddenPosts && hiddenPosts.includes(postUri) const isAuthor = postAuthor.did === currentAccount?.did @@ -162,18 +165,22 @@ let PostDropdownBtn = ({ const onToggleThreadMute = React.useCallback(() => { try { - const muted = toggleThreadMute(rootUri) - if (muted) { + if (isThreadMuted) { + unmuteThread() + Toast.show(_(msg`You will now receive notifications for this thread`)) + } else { + muteThread() Toast.show( _(msg`You will no longer receive notifications for this thread`), ) - } else { - Toast.show(_(msg`You will now receive notifications for this thread`)) } - } catch (e) { - logger.error('Failed to toggle thread mute', {message: e}) + } catch (e: any) { + if (e?.name !== 'AbortError') { + logger.error('Failed to toggle thread mute', {message: e}) + Toast.show(_(msg`Failed to toggle thread mute, please try again`)) + } } - }, [rootUri, toggleThreadMute, _]) + }, [isThreadMuted, unmuteThread, _, muteThread]) const onCopyPostText = React.useCallback(() => { const str = richTextToString(richText, true) diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index c389855e3d..c0e743db48 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -319,9 +319,7 @@ let PostCtrls = ({ Date: Tue, 18 Jun 2024 11:48:49 -0700 Subject: [PATCH 53/86] Fix: only apply self-thread load-more behavior on the outer edge of the reply tree (#4559) --- src/state/queries/post-thread.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/state/queries/post-thread.ts b/src/state/queries/post-thread.ts index a8b1160fb4..f7e5e2ecba 100644 --- a/src/state/queries/post-thread.ts +++ b/src/state/queries/post-thread.ts @@ -31,6 +31,7 @@ import { getEmbeddedPost, } from './util' +const REPLY_TREE_DEPTH = 10 const RQKEY_ROOT = 'post-thread' export const RQKEY = (uri: string) => [RQKEY_ROOT, uri] type ThreadViewNode = AppBskyFeedGetPostThread.OutputSchema['thread'] @@ -90,7 +91,10 @@ export function usePostThreadQuery(uri: string | undefined) { gcTime: 0, queryKey: RQKEY(uri || ''), async queryFn() { - const res = await agent.getPostThread({uri: uri!, depth: 10}) + const res = await agent.getPostThread({ + uri: uri!, + depth: REPLY_TREE_DEPTH, + }) if (res.success) { const thread = responseToThreadNodes(res.data.thread) annotateSelfThread(thread) @@ -287,7 +291,12 @@ function annotateSelfThread(thread: ThreadNode) { selfThreadNode.ctx.isSelfThread = true } const last = selfThreadNodes[selfThreadNodes.length - 1] - if (last && last.post.replyCount && !last.replies?.length) { + if ( + last && + last.ctx.depth === REPLY_TREE_DEPTH && // at the edge of the tree depth + last.post.replyCount && // has replies + !last.replies?.length // replies were not hydrated + ) { last.ctx.hasMoreSelfThread = true } } From 983d85384b9e736193e6c89107df5ced447a056a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 18 Jun 2024 13:50:07 -0500 Subject: [PATCH 54/86] Force callers of `getTimeAgo` to pass in the value for "now" (#4560) * Remove icky hook for now * Force callers of getTimeAgo to pass in the 'now' value * Update usage in Newskie dialog --- src/components/NewskieDialog.tsx | 7 ++++--- src/lib/hooks/useTimeAgo.ts | 17 ++++------------- src/view/com/util/TimeElapsed.tsx | 6 ++++-- src/view/screens/Log.tsx | 4 +++- 4 files changed, 15 insertions(+), 19 deletions(-) diff --git a/src/components/NewskieDialog.tsx b/src/components/NewskieDialog.tsx index fcdae0daa5..789a42d5f9 100644 --- a/src/components/NewskieDialog.tsx +++ b/src/components/NewskieDialog.tsx @@ -30,12 +30,13 @@ export function NewskieDialog({ const moderation = moderateProfile(profile, moderationOpts) return sanitizeDisplayName(name, moderation.ui('displayName')) }, [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(new Date(), new Date(createdAt)) / 86400 - }, [createdAt]) + return differenceInSeconds(now, new Date(createdAt)) / 86400 + }, [createdAt, now]) if (!createdAt || daysOld > 7) return null @@ -70,7 +71,7 @@ export function NewskieDialog({ {profileName} joined Bluesky{' '} - {timeAgo(createdAt, {format: 'long'})} ago + {timeAgo(createdAt, now, {format: 'long'})} ago diff --git a/src/lib/hooks/useTimeAgo.ts b/src/lib/hooks/useTimeAgo.ts index 5f0782f96f..efcb4754bb 100644 --- a/src/lib/hooks/useTimeAgo.ts +++ b/src/lib/hooks/useTimeAgo.ts @@ -1,4 +1,4 @@ -import {useCallback, useMemo} from 'react' +import {useCallback} from 'react' import {msg, plural} from '@lingui/macro' import {I18nContext, useLingui} from '@lingui/react' import {differenceInSeconds} from 'date-fns' @@ -12,25 +12,16 @@ export function useGetTimeAgo() { const {_} = useLingui() return useCallback( ( - date: number | string | Date, + earlier: number | string | Date, + later: number | string | Date, options?: Omit, ) => { - return dateDiff(date, Date.now(), {lingui: _, format: options?.format}) + return dateDiff(earlier, later, {lingui: _, format: options?.format}) }, [_], ) } -export function useTimeAgo( - date: number | string | Date, - options?: Omit, -): string { - const timeAgo = useGetTimeAgo() - return useMemo(() => { - return timeAgo(date, {...options}) - }, [date, options, timeAgo]) -} - const NOW = 5 const MINUTE = 60 const HOUR = MINUTE * 60 diff --git a/src/view/com/util/TimeElapsed.tsx b/src/view/com/util/TimeElapsed.tsx index d939b3163d..a495851826 100644 --- a/src/view/com/util/TimeElapsed.tsx +++ b/src/view/com/util/TimeElapsed.tsx @@ -15,12 +15,14 @@ export function TimeElapsed({ const ago = useGetTimeAgo() const format = timeToString ?? ago const tick = useTickEveryMinute() - const [timeElapsed, setTimeAgo] = React.useState(() => format(timestamp)) + const [timeElapsed, setTimeAgo] = React.useState(() => + format(timestamp, tick), + ) const [prevTick, setPrevTick] = React.useState(tick) if (prevTick !== tick) { setPrevTick(tick) - setTimeAgo(format(timestamp)) + setTimeAgo(format(timestamp, tick)) } return children({timeElapsed}) diff --git a/src/view/screens/Log.tsx b/src/view/screens/Log.tsx index e10aa83ab7..e6040b77e2 100644 --- a/src/view/screens/Log.tsx +++ b/src/view/screens/Log.tsx @@ -7,6 +7,7 @@ import {useFocusEffect} from '@react-navigation/native' import {useGetTimeAgo} from '#/lib/hooks/useTimeAgo' import {getEntries} from '#/logger/logDump' +import {useTickEveryMinute} from '#/state/shell' import {useSetMinimalShellMode} from '#/state/shell' import {usePalette} from 'lib/hooks/usePalette' import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' @@ -24,6 +25,7 @@ export function LogScreen({}: NativeStackScreenProps< const setMinimalShellMode = useSetMinimalShellMode() const [expanded, setExpanded] = React.useState([]) const timeAgo = useGetTimeAgo() + const tick = useTickEveryMinute() useFocusEffect( React.useCallback(() => { @@ -72,7 +74,7 @@ export function LogScreen({}: NativeStackScreenProps< /> ) : undefined} - {timeAgo(entry.timestamp)} + {timeAgo(entry.timestamp, tick)} {expanded.includes(entry.id) ? ( From 4165a02b2d712ba20b9fdbf435d4cb00c03e5e52 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 18 Jun 2024 13:52:44 -0500 Subject: [PATCH 55/86] Prevent unecessary calls (#4561) (cherry picked from commit ecb48797675c5be24508bf47141e930c64dac14e) --- src/components/NewskieDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NewskieDialog.tsx b/src/components/NewskieDialog.tsx index 789a42d5f9..281430e31f 100644 --- a/src/components/NewskieDialog.tsx +++ b/src/components/NewskieDialog.tsx @@ -30,7 +30,7 @@ export function NewskieDialog({ const moderation = moderateProfile(profile, moderationOpts) return sanitizeDisplayName(name, moderation.ui('displayName')) }, [moderationOpts, profile]) - const [now] = React.useState(Date.now()) + const [now] = React.useState(() => Date.now()) const timeAgo = useGetTimeAgo() const createdAt = profile.createdAt as string | undefined const daysOld = React.useMemo(() => { From d6ce16d15ae79c4fef943cd48dfa0cdb072e9596 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 18 Jun 2024 12:07:56 -0700 Subject: [PATCH 56/86] Implement thread locking (#4545) * Add the ability to edit threadgates * Fix bottom border on mobile * Refresh thread after threadgate edit --- src/lib/analytics/types.ts | 2 + src/lib/api/index.ts | 17 +- src/state/modals/index.tsx | 3 +- src/state/queries/post-thread.ts | 2 +- src/state/queries/threadgate.ts | 33 +++ src/view/com/modals/Threadgate.tsx | 11 +- src/view/com/post-thread/PostThreadItem.tsx | 25 +- src/view/com/threadgate/WhoCanReply.tsx | 240 ++++++++++++-------- 8 files changed, 222 insertions(+), 111 deletions(-) diff --git a/src/lib/analytics/types.ts b/src/lib/analytics/types.ts index cdf535dec2..720495ea1d 100644 --- a/src/lib/analytics/types.ts +++ b/src/lib/analytics/types.ts @@ -32,6 +32,8 @@ export type TrackPropertiesMap = { 'Post:ThreadMute': {} // CAN BE SERVER 'Post:ThreadUnmute': {} // CAN BE SERVER 'Post:Reply': {} // CAN BE SERVER + 'Post:EditThreadgateOpened': {} + 'Post:ThreadgateEdited': {} // PROFILE events 'Profile:Follow': { username: string diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index dfaae2e018..5b1c998cb8 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -270,7 +270,7 @@ export async function post(agent: BskyAgent, opts: PostOpts) { return res } -async function createThreadgate( +export async function createThreadgate( agent: BskyAgent, postUri: string, threadgate: ThreadgateSetting[], @@ -296,10 +296,17 @@ async function createThreadgate( } const postUrip = new AtUri(postUri) - await agent.api.app.bsky.feed.threadgate.create( - {repo: agent.session!.did, rkey: postUrip.rkey}, - {post: postUri, createdAt: new Date().toISOString(), allow}, - ) + await agent.api.com.atproto.repo.putRecord({ + repo: agent.session!.did, + collection: 'app.bsky.feed.threadgate', + rkey: postUrip.rkey, + record: { + $type: 'app.bsky.feed.threadgate', + post: postUri, + allow, + createdAt: new Date().toISOString(), + }, + }) } // helpers diff --git a/src/state/modals/index.tsx b/src/state/modals/index.tsx index ced14335bd..685b10bd85 100644 --- a/src/state/modals/index.tsx +++ b/src/state/modals/index.tsx @@ -70,7 +70,8 @@ export interface SelfLabelModal { export interface ThreadgateModal { name: 'threadgate' settings: ThreadgateSetting[] - onChange: (settings: ThreadgateSetting[]) => void + onChange?: (settings: ThreadgateSetting[]) => void + onConfirm?: (settings: ThreadgateSetting[]) => void } export interface ChangeHandleModal { diff --git a/src/state/queries/post-thread.ts b/src/state/queries/post-thread.ts index f7e5e2ecba..db85e8a177 100644 --- a/src/state/queries/post-thread.ts +++ b/src/state/queries/post-thread.ts @@ -32,7 +32,7 @@ import { } from './util' const REPLY_TREE_DEPTH = 10 -const RQKEY_ROOT = 'post-thread' +export const RQKEY_ROOT = 'post-thread' export const RQKEY = (uri: string) => [RQKEY_ROOT, uri] type ThreadViewNode = AppBskyFeedGetPostThread.OutputSchema['thread'] diff --git a/src/state/queries/threadgate.ts b/src/state/queries/threadgate.ts index 4891175825..67c6f8c084 100644 --- a/src/state/queries/threadgate.ts +++ b/src/state/queries/threadgate.ts @@ -1,5 +1,38 @@ +import {AppBskyFeedDefs, AppBskyFeedThreadgate} from '@atproto/api' + export type ThreadgateSetting = | {type: 'nobody'} | {type: 'mention'} | {type: 'following'} | {type: 'list'; list: string} + +export function threadgateViewToSettings( + threadgate: AppBskyFeedDefs.ThreadgateView | undefined, +): ThreadgateSetting[] { + const record = + threadgate && + AppBskyFeedThreadgate.isRecord(threadgate.record) && + AppBskyFeedThreadgate.validateRecord(threadgate.record).success + ? threadgate.record + : null + if (!record) { + return [] + } + if (!record.allow?.length) { + return [{type: 'nobody'}] + } + return record.allow + .map(allow => { + if (allow.$type === 'app.bsky.feed.threadgate#mentionRule') { + return {type: 'mention'} + } + 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 + }) + .filter(Boolean) as ThreadgateSetting[] +} diff --git a/src/view/com/modals/Threadgate.tsx b/src/view/com/modals/Threadgate.tsx index a2e9f391c0..4a9a9e2ab5 100644 --- a/src/view/com/modals/Threadgate.tsx +++ b/src/view/com/modals/Threadgate.tsx @@ -26,9 +26,11 @@ export const snapPoints = ['60%'] export function Component({ settings, onChange, + onConfirm, }: { settings: ThreadgateSetting[] - onChange: (settings: ThreadgateSetting[]) => void + onChange?: (settings: ThreadgateSetting[]) => void + onConfirm?: (settings: ThreadgateSetting[]) => void }) { const pal = usePalette('default') const {closeModal} = useModalControls() @@ -38,12 +40,12 @@ export function Component({ const onPressEverybody = () => { setSelected([]) - onChange([]) + onChange?.([]) } const onPressNobody = () => { setSelected([{type: 'nobody'}]) - onChange([{type: 'nobody'}]) + onChange?.([{type: 'nobody'}]) } const onPressAudience = (setting: ThreadgateSetting) => { @@ -57,7 +59,7 @@ export function Component({ newSelected.splice(i, 1) } setSelected(newSelected) - onChange(newSelected) + onChange?.(newSelected) } return ( @@ -124,6 +126,7 @@ export function Component({ testID="confirmBtn" onPress={() => { closeModal() + onConfirm?.(selected) }} style={styles.btn} accessibilityRole="button" diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 5ee60e4eab..6d03029d7f 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -25,7 +25,7 @@ import {sanitizeHandle} from 'lib/strings/handles' import {countLines} from 'lib/strings/helpers' import {niceDate} from 'lib/strings/time' import {s} from 'lib/styles' -import {isWeb} from 'platform/detection' +import {isNative, isWeb} from 'platform/detection' import {useSession} from 'state/session' import {PostThreadFollowBtn} from 'view/com/post-thread/PostThreadFollowBtn' import {atoms as a} from '#/alf' @@ -189,6 +189,7 @@ let PostThreadItemLoaded = ({ const itemTitle = _(msg`Post by ${post.author.handle}`) const authorHref = makeProfileLink(post.author) const authorTitle = post.author.handle + const isThreadAuthor = getThreadAuthor(post, record) === currentAccount?.did const likesHref = React.useMemo(() => { const urip = new AtUri(post.uri) return makeProfileLink(post.author, 'post', urip.rkey, 'liked-by') @@ -395,7 +396,11 @@ let PostThreadItemLoaded = ({ - + ) } else { @@ -578,7 +583,9 @@ let PostThreadItemLoaded = ({ post={post} style={{ marginTop: 4, + borderBottomWidth: 1, }} + isThreadAuthor={isThreadAuthor} /> ) @@ -681,6 +688,20 @@ function ExpandedPostDetails({ ) } +function getThreadAuthor( + post: AppBskyFeedDefs.PostView, + record: AppBskyFeedPost.Record, +): string { + if (!record.reply) { + return post.author.did + } + try { + return new AtUri(record.reply.root.uri).host + } catch { + return '' + } +} + const styles = StyleSheet.create({ outer: { borderTopWidth: hairlineWidth, diff --git a/src/view/com/threadgate/WhoCanReply.tsx b/src/view/com/threadgate/WhoCanReply.tsx index c1e36d481d..3ffbaa7ae9 100644 --- a/src/view/com/threadgate/WhoCanReply.tsx +++ b/src/view/com/threadgate/WhoCanReply.tsx @@ -1,128 +1,172 @@ import React from 'react' -import {StyleProp, View, ViewStyle} from 'react-native' -import { - AppBskyFeedDefs, - AppBskyFeedThreadgate, - AppBskyGraphDefs, - AtUri, -} from '@atproto/api' -import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {Trans} from '@lingui/macro' +import {Keyboard, StyleProp, View, ViewStyle} from 'react-native' +import {AppBskyFeedDefs, AppBskyGraphDefs, AtUri} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {useQueryClient} from '@tanstack/react-query' +import {useAnalytics} from '#/lib/analytics/analytics' +import {createThreadgate} from '#/lib/api' import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle' import {usePalette} from '#/lib/hooks/usePalette' -import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {makeListLink, makeProfileLink} from '#/lib/routes/links' import {colors} from '#/lib/styles' +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, + threadgateViewToSettings, +} from '#/state/queries/threadgate' +import {useAgent} from '#/state/session' +import * as Toast from 'view/com/util/Toast' +import {Button} from '#/components/Button' import {TextLink} from '../util/Link' import {Text} from '../util/text/Text' export function WhoCanReply({ post, + isThreadAuthor, style, }: { post: AppBskyFeedDefs.PostView + isThreadAuthor: boolean style?: StyleProp }) { + const {track} = useAnalytics() + const {_} = useLingui() const pal = usePalette('default') - const {isMobile} = useWebMediaQueries() + const agent = useAgent() + const queryClient = useQueryClient() + const {openModal} = useModalControls() const containerStyles = useColorSchemeStyle( { - borderColor: pal.colors.unreadNotifBorder, backgroundColor: pal.colors.unreadNotifBg, }, { - borderColor: pal.colors.unreadNotifBorder, backgroundColor: pal.colors.unreadNotifBg, }, ) - const iconStyles = useColorSchemeStyle( - { - backgroundColor: colors.blue3, - }, - { - backgroundColor: colors.blue3, - }, - ) const textStyles = useColorSchemeStyle( - {color: colors.gray7}, + {color: colors.blue5}, {color: colors.blue1}, ) - const record = React.useMemo( - () => - post.threadgate && - AppBskyFeedThreadgate.isRecord(post.threadgate.record) && - AppBskyFeedThreadgate.validateRecord(post.threadgate.record).success - ? post.threadgate.record - : null, + const hoverStyles = useColorSchemeStyle( + { + backgroundColor: colors.white, + }, + { + backgroundColor: pal.colors.background, + }, + ) + const settings = React.useMemo( + () => threadgateViewToSettings(post.threadgate), [post], ) - if (record) { - return ( - - - - - - - {!record.allow?.length ? ( - Replies to this thread are disabled - ) : ( - - Only{' '} - {record.allow.map((rule, i) => ( - <> - - - - ))}{' '} - can reply. - - )} - - - - ) + const isRootPost = !('reply' in post.record) + + const onPressEdit = () => { + track('Post:EditThreadgateOpened') + if (isNative && Keyboard.isVisible()) { + Keyboard.dismiss() + } + openModal({ + name: 'threadgate', + settings, + async onConfirm(newSettings: ThreadgateSetting[]) { + 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, + }) + } + Toast.show('Thread settings updated') + queryClient.invalidateQueries({ + queryKey: [POST_THREAD_RQKEY_ROOT], + }) + track('Post:ThreadgateEdited') + } 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 null + + if (!isRootPost) { + return null + } + if (!settings.length && !isThreadAuthor) { + return null + } + + return ( + + + + {!settings.length ? ( + Everybody can reply. + ) : settings[0].type === 'nobody' ? ( + Replies to this thread are disabled. + ) : ( + + Only{' '} + {settings.map((rule, i) => ( + <> + + + + ))}{' '} + can reply. + + )} + + + {isThreadAuthor && ( + + + + )} + + ) } function Rule({ @@ -130,15 +174,15 @@ function Rule({ post, lists, }: { - rule: any + rule: ThreadgateSetting post: AppBskyFeedDefs.PostView lists: AppBskyGraphDefs.ListViewBasic[] | undefined }) { const pal = usePalette('default') - if (AppBskyFeedThreadgate.isMentionRule(rule)) { + if (rule.type === 'mention') { return mentioned users } - if (AppBskyFeedThreadgate.isFollowingRule(rule)) { + if (rule.type === 'following') { return ( users followed by{' '} @@ -151,7 +195,7 @@ function Rule({ ) } - if (AppBskyFeedThreadgate.isListRule(rule)) { + if (rule.type === 'list') { const list = lists?.find(l => l.uri === rule.list) if (list) { const listUrip = new AtUri(list.uri) From 502bcad7017d72fb23c40a268b1e220f892db7da Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 18 Jun 2024 14:09:40 -0500 Subject: [PATCH 57/86] Disable newskie dialog tap in hover card web (#4562) --- src/components/NewskieDialog.tsx | 3 +++ src/components/ProfileHoverCard/index.web.tsx | 2 +- src/screens/Profile/Header/Handle.tsx | 6 ++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/NewskieDialog.tsx b/src/components/NewskieDialog.tsx index 281430e31f..0354bfc432 100644 --- a/src/components/NewskieDialog.tsx +++ b/src/components/NewskieDialog.tsx @@ -18,8 +18,10 @@ import {Text} from '#/components/Typography' export function NewskieDialog({ profile, + disabled, }: { profile: AppBskyActorDefs.ProfileViewDetailed + disabled?: boolean }) { const {_} = useLingui() const moderationOpts = useModerationOpts() @@ -43,6 +45,7 @@ export function NewskieDialog({ return ( diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx index 0898981419..17ab736ced 100644 --- a/src/view/com/util/post-ctrls/RepostButton.web.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx @@ -12,6 +12,7 @@ import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repos import * as Menu from '#/components/Menu' import {Text} from '#/components/Typography' import {EventStopper} from '../EventStopper' +import {formatCount} from '../numeric/format' interface Props { isReposted: boolean @@ -115,20 +116,22 @@ const RepostInner = ({ color: {color: string} repostCount?: number big?: boolean -}) => ( - - - {typeof repostCount !== 'undefined' && repostCount > 0 ? ( - - {repostCount} - - ) : undefined} - -) +}) => { + return ( + + + {typeof repostCount !== 'undefined' && repostCount > 0 ? ( + + {formatCount(repostCount)} + + ) : undefined} + + ) +} diff --git a/yarn.lock b/yarn.lock index 700ddfe072..a0fd8749a8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3897,18 +3897,18 @@ resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.1.tgz#16308cea045f0fc777b6ff20a9f25474dd8293d2" integrity sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q== -"@formatjs/ecma402-abstract@1.18.0": - version "1.18.0" - resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz#e2120e7101020140661b58430a7ff4262705a2f2" - integrity sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA== +"@formatjs/ecma402-abstract@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-2.0.0.tgz#39197ab90b1c78b7342b129a56a7acdb8f512e17" + integrity sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g== dependencies: - "@formatjs/intl-localematcher" "0.5.2" + "@formatjs/intl-localematcher" "0.5.4" tslib "^2.4.0" -"@formatjs/intl-enumerator@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@formatjs/intl-enumerator/-/intl-enumerator-1.4.3.tgz#8d278c273485d7c6219916509fbd51ce3142064d" - integrity sha512-0NpTmAQnDokPoB5aVtXvOdtrUq/uEuPPhBUAr57TYYDjI5MwfFXt8F6JCm6s6CPI0inL8+nxPLjjqH0qyNnP4Q== +"@formatjs/intl-enumerator@1.4.7": + version "1.4.7" + resolved "https://registry.yarnpkg.com/@formatjs/intl-enumerator/-/intl-enumerator-1.4.7.tgz#6ab697f3f8f18cf0cc6a6b028cb9c40db6001f3d" + integrity sha512-03RHnFqfpB4H/jwCwlzC+wkTDk2Fi24JmVIY2PVGvTUpikN2bSr9+8oTXfOC+y7B7VxjCArUnqWXVoctkmy85w== dependencies: tslib "^2.4.0" @@ -3919,30 +3919,39 @@ dependencies: tslib "^2.4.0" -"@formatjs/intl-locale@^3.4.3": - version "3.4.3" - resolved "https://registry.yarnpkg.com/@formatjs/intl-locale/-/intl-locale-3.4.3.tgz#fdd2a3978b03aa76965abbca86526bb1d02973b6" - integrity sha512-g/35yMikkkRmLYmqE4W74gvZyKa768oC9OmUFzfLmH3CVYF3v2kvAZI0WsxWLbxYj8TT7wBDeLIL3aIlRw4Osw== +"@formatjs/intl-locale@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@formatjs/intl-locale/-/intl-locale-4.0.0.tgz#c111a33078413eba2011e82140466261eb1d67cd" + integrity sha512-+4dbMEGsp1bvB3JB3UHH6YTjMnFTifnfdaHp4ROrCCu50NedA69RBsDCG3eivcZkbj57X9ehGhMWjLxlP+gyVw== dependencies: - "@formatjs/ecma402-abstract" "1.18.0" - "@formatjs/intl-enumerator" "1.4.3" + "@formatjs/ecma402-abstract" "2.0.0" + "@formatjs/intl-enumerator" "1.4.7" "@formatjs/intl-getcanonicallocales" "2.3.0" tslib "^2.4.0" -"@formatjs/intl-localematcher@0.5.2": - version "0.5.2" - resolved "https://registry.yarnpkg.com/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz#5fcf029fd218905575e5080fa33facdcb623d532" - integrity sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw== +"@formatjs/intl-localematcher@0.5.4": + version "0.5.4" + resolved "https://registry.yarnpkg.com/@formatjs/intl-localematcher/-/intl-localematcher-0.5.4.tgz#caa71f2e40d93e37d58be35cfffe57865f2b366f" + integrity sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g== dependencies: tslib "^2.4.0" -"@formatjs/intl-pluralrules@^5.2.10": - version "5.2.10" - resolved "https://registry.yarnpkg.com/@formatjs/intl-pluralrules/-/intl-pluralrules-5.2.10.tgz#379fc06133625df0cae715c1d902001974ff3279" - integrity sha512-wfJypePrbOByaZVPP1moLXHgS9LeAvi9coP95XZX7ySVrwdDGPnxz9Pw+o7J1o8AjLxjiqGrvAi74key5zzIjQ== +"@formatjs/intl-numberformat@^8.10.3": + version "8.10.3" + resolved "https://registry.yarnpkg.com/@formatjs/intl-numberformat/-/intl-numberformat-8.10.3.tgz#abc97cc6a7b7f1b20da9f07a976b5589c1192ab8" + integrity sha512-lH3liLMeIjZ19Zxt8RRPnBcpPweS1YNSXRURDiFfvFmRlDZUOd8+GlcVyECcPZPkIoSH/p4lfGrnaUzepxJ92g== dependencies: - "@formatjs/ecma402-abstract" "1.18.0" - "@formatjs/intl-localematcher" "0.5.2" + "@formatjs/ecma402-abstract" "2.0.0" + "@formatjs/intl-localematcher" "0.5.4" + tslib "^2.4.0" + +"@formatjs/intl-pluralrules@^5.2.14": + version "5.2.14" + resolved "https://registry.yarnpkg.com/@formatjs/intl-pluralrules/-/intl-pluralrules-5.2.14.tgz#7477bd2aa9bfde9e543d839707eff5460eb08026" + integrity sha512-l6Ev7aOGXJSh5EPDEqzsbyufdCCKXZk993QXRQebLsB0TXRhIyF4alqjdMEatLwIigK/Mka8kiVIOLeFP5Cj9Q== + dependencies: + "@formatjs/ecma402-abstract" "2.0.0" + "@formatjs/intl-localematcher" "0.5.4" tslib "^2.4.0" "@fortawesome/fontawesome-common-types@6.4.2": From 0f931933a7b7b72505fbab6e1f25860f7a84e59c Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 19 Jun 2024 22:32:44 +0100 Subject: [PATCH 71/86] Option for large alt badges (#4571) * add pref for large alt badge * add to settings * do the large badge bit * Tweak wording --------- Co-authored-by: Dan Abramov --- src/state/persisted/schema.ts | 2 + src/state/preferences/alt-text-required.tsx | 1 + src/state/preferences/hidden-posts.tsx | 1 + src/state/preferences/index.tsx | 25 ++++++----- src/state/preferences/large-alt-badge.tsx | 49 +++++++++++++++++++++ src/view/com/util/images/Gallery.tsx | 22 +++++---- src/view/com/util/post-embeds/GifEmbed.tsx | 6 ++- src/view/com/util/post-embeds/index.tsx | 15 +++---- src/view/screens/AccessibilitySettings.tsx | 35 ++++++++++----- 9 files changed, 113 insertions(+), 43 deletions(-) create mode 100644 src/state/preferences/large-alt-badge.tsx diff --git a/src/state/persisted/schema.ts b/src/state/persisted/schema.ts index 9d5b17d354..c942828f2a 100644 --- a/src/state/persisted/schema.ts +++ b/src/state/persisted/schema.ts @@ -60,6 +60,7 @@ export const schema = z.object({ appLanguage: z.string(), }), requireAltTextEnabled: z.boolean(), // should move to server + largeAltBadgeEnabled: z.boolean().optional(), externalEmbeds: z .object({ giphy: z.enum(externalEmbedOptions).optional(), @@ -112,6 +113,7 @@ export const defaults: Schema = { appLanguage: deviceLocales[0] || 'en', }, requireAltTextEnabled: false, + largeAltBadgeEnabled: false, externalEmbeds: {}, mutedThreads: [], invites: { diff --git a/src/state/preferences/alt-text-required.tsx b/src/state/preferences/alt-text-required.tsx index 81de9e0060..642e790fbc 100644 --- a/src/state/preferences/alt-text-required.tsx +++ b/src/state/preferences/alt-text-required.tsx @@ -1,4 +1,5 @@ import React from 'react' + import * as persisted from '#/state/persisted' type StateContext = persisted.Schema['requireAltTextEnabled'] diff --git a/src/state/preferences/hidden-posts.tsx b/src/state/preferences/hidden-posts.tsx index 11119ce758..2c6a373e15 100644 --- a/src/state/preferences/hidden-posts.tsx +++ b/src/state/preferences/hidden-posts.tsx @@ -1,4 +1,5 @@ import React from 'react' + import * as persisted from '#/state/persisted' type SetStateCb = ( diff --git a/src/state/preferences/index.tsx b/src/state/preferences/index.tsx index 70c8efc805..e1a35f193c 100644 --- a/src/state/preferences/index.tsx +++ b/src/state/preferences/index.tsx @@ -8,6 +8,7 @@ import {Provider as HiddenPostsProvider} from './hidden-posts' import {Provider as InAppBrowserProvider} from './in-app-browser' import {Provider as KawaiiProvider} from './kawaii' import {Provider as LanguagesProvider} from './languages' +import {Provider as LargeAltBadgeProvider} from './large-alt-badge' export { useRequireAltTextEnabled, @@ -27,17 +28,19 @@ export function Provider({children}: React.PropsWithChildren<{}>) { return ( - - - - - - {children} - - - - - + + + + + + + {children} + + + + + + ) diff --git a/src/state/preferences/large-alt-badge.tsx b/src/state/preferences/large-alt-badge.tsx new file mode 100644 index 0000000000..b3d597c5cb --- /dev/null +++ b/src/state/preferences/large-alt-badge.tsx @@ -0,0 +1,49 @@ +import React from 'react' + +import * as persisted from '#/state/persisted' + +type StateContext = persisted.Schema['largeAltBadgeEnabled'] +type SetContext = (v: persisted.Schema['largeAltBadgeEnabled']) => void + +const stateContext = React.createContext( + persisted.defaults.largeAltBadgeEnabled, +) +const setContext = React.createContext( + (_: persisted.Schema['largeAltBadgeEnabled']) => {}, +) + +export function Provider({children}: React.PropsWithChildren<{}>) { + const [state, setState] = React.useState( + persisted.get('largeAltBadgeEnabled'), + ) + + const setStateWrapped = React.useCallback( + (largeAltBadgeEnabled: persisted.Schema['largeAltBadgeEnabled']) => { + setState(largeAltBadgeEnabled) + persisted.write('largeAltBadgeEnabled', largeAltBadgeEnabled) + }, + [setState], + ) + + React.useEffect(() => { + return persisted.onUpdate(() => { + setState(persisted.get('largeAltBadgeEnabled')) + }) + }, [setStateWrapped]) + + return ( + + + {children} + + + ) +} + +export function useLargeAltBadgeEnabled() { + return React.useContext(stateContext) +} + +export function useSetLargeAltBadgeEnabled() { + return React.useContext(setContext) +} diff --git a/src/view/com/util/images/Gallery.tsx b/src/view/com/util/images/Gallery.tsx index 8d23d258f5..9bbb2ac100 100644 --- a/src/view/com/util/images/Gallery.tsx +++ b/src/view/com/util/images/Gallery.tsx @@ -5,7 +5,9 @@ import {AppBskyEmbedImages} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {isWeb} from 'platform/detection' +import {isWeb} from '#/platform/detection' +import {useLargeAltBadgeEnabled} from '#/state/preferences/large-alt-badge' +import {atoms as a} from '#/alf' type EventFunction = (index: number) => void @@ -27,20 +29,21 @@ export const GalleryItem: FC = ({ onLongPress, }) => { const {_} = useLingui() + const largeAltBadge = useLargeAltBadgeEnabled() const image = images[index] return ( - + onPress(index) : undefined} onPressIn={onPressIn ? () => onPressIn(index) : undefined} onLongPress={onLongPress ? () => onLongPress(index) : undefined} - style={styles.fullWidth} + style={a.flex_1} accessibilityRole="button" accessibilityLabel={image.alt || _(msg`Image`)} accessibilityHint=""> = ({ {image.alt === '' ? null : ( - + ALT @@ -59,13 +64,6 @@ export const GalleryItem: FC = ({ } const styles = StyleSheet.create({ - fullWidth: { - flex: 1, - }, - image: { - flex: 1, - borderRadius: 4, - }, altContainer: { backgroundColor: 'rgba(0, 0, 0, 0.75)', borderRadius: 6, diff --git a/src/view/com/util/post-embeds/GifEmbed.tsx b/src/view/com/util/post-embeds/GifEmbed.tsx index f2e2a8b0e9..1558b75c62 100644 --- a/src/view/com/util/post-embeds/GifEmbed.tsx +++ b/src/view/com/util/post-embeds/GifEmbed.tsx @@ -8,6 +8,7 @@ import {useLingui} from '@lingui/react' import {HITSLOP_20} from '#/lib/constants' import {parseAltFromGIFDescription} from '#/lib/gif-alt-text' import {isWeb} from '#/platform/detection' +import {useLargeAltBadgeEnabled} from '#/state/preferences/large-alt-badge' import {EmbedPlayerParams} from 'lib/strings/embed-player' import {useAutoplayDisabled} from 'state/preferences' import {atoms as a, useTheme} from '#/alf' @@ -157,6 +158,7 @@ export function GifEmbed({ function AltText({text}: {text: string}) { const control = Prompt.usePromptControl() + const largeAltBadge = useLargeAltBadgeEnabled() const {_} = useLingui() return ( @@ -169,7 +171,9 @@ function AltText({text}: {text: string}) { hitSlop={HITSLOP_20} onPress={control.open} style={styles.altContainer}> - + ALT diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx index a13fffc370..be34a2869e 100644 --- a/src/view/com/util/post-embeds/index.tsx +++ b/src/view/com/util/post-embeds/index.tsx @@ -21,6 +21,7 @@ import { import {ImagesLightbox, useLightboxControls} from '#/state/lightbox' import {usePalette} from 'lib/hooks/usePalette' import {FeedSourceCard} from 'view/com/feeds/FeedSourceCard' +import {atoms as a} from '#/alf' import {ContentHider} from '../../../../components/moderation/ContentHider' import {AutoSizedImage} from '../images/AutoSizedImage' import {ImageLayoutGrid} from '../images/ImageLayoutGrid' @@ -28,6 +29,7 @@ import {ExternalLinkEmbed} from './ExternalLinkEmbed' import {ListEmbed} from './ListEmbed' import {MaybeQuoteEmbed} from './QuoteEmbed' import hairlineWidth = StyleSheet.hairlineWidth +import {useLargeAltBadgeEnabled} from '#/state/preferences/large-alt-badge' type Embed = | AppBskyEmbedRecord.View @@ -51,6 +53,7 @@ export function PostEmbeds({ }) { const pal = usePalette('default') const {openLightbox} = useLightboxControls() + const largeAltBadge = useLargeAltBadgeEnabled() // quote post with media // = @@ -130,10 +133,12 @@ export function PostEmbeds({ dimensionsHint={aspectRatio} onPress={() => _openLightbox(0)} onPressIn={() => onPressIn(0)} - style={[styles.singleImage]}> + style={a.rounded_sm}> {alt === '' ? null : ( - + ALT @@ -151,9 +156,6 @@ export function PostEmbeds({ images={embed.images} onPress={_openLightbox} onPressIn={onPressIn} - style={ - embed.images.length === 1 ? [styles.singleImage] : undefined - } /> @@ -179,9 +181,6 @@ const styles = StyleSheet.create({ imagesContainer: { marginTop: 8, }, - singleImage: { - borderRadius: 8, - }, altContainer: { backgroundColor: 'rgba(0, 0, 0, 0.75)', borderRadius: 6, diff --git a/src/view/screens/AccessibilitySettings.tsx b/src/view/screens/AccessibilitySettings.tsx index ac0d985f10..9ac9793367 100644 --- a/src/view/screens/AccessibilitySettings.tsx +++ b/src/view/screens/AccessibilitySettings.tsx @@ -4,13 +4,12 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect} from '@react-navigation/native' +import {useAnalytics} from '#/lib/analytics/analytics' +import {usePalette} from '#/lib/hooks/usePalette' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' +import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' +import {s} from '#/lib/styles' import {isNative} from '#/platform/detection' -import {useSetMinimalShellMode} from '#/state/shell' -import {useAnalytics} from 'lib/analytics/analytics' -import {usePalette} from 'lib/hooks/usePalette' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' -import {s} from 'lib/styles' import { useAutoplayDisabled, useHapticsDisabled, @@ -18,11 +17,16 @@ import { useSetAutoplayDisabled, useSetHapticsDisabled, useSetRequireAltTextEnabled, -} from 'state/preferences' -import {ToggleButton} from 'view/com/util/forms/ToggleButton' -import {SimpleViewHeader} from '../com/util/SimpleViewHeader' -import {Text} from '../com/util/text/Text' -import {ScrollView} from '../com/util/Views' +} from '#/state/preferences' +import { + useLargeAltBadgeEnabled, + useSetLargeAltBadgeEnabled, +} from '#/state/preferences/large-alt-badge' +import {useSetMinimalShellMode} from '#/state/shell' +import {ToggleButton} from '#/view/com/util/forms/ToggleButton' +import {SimpleViewHeader} from '#/view/com/util/SimpleViewHeader' +import {Text} from '#/view/com/util/text/Text' +import {ScrollView} from '#/view/com/util/Views' type Props = NativeStackScreenProps< CommonNavigatorParams, @@ -41,6 +45,8 @@ export function AccessibilitySettingsScreen({}: Props) { const setAutoplayDisabled = useSetAutoplayDisabled() const hapticsDisabled = useHapticsDisabled() const setHapticsDisabled = useSetHapticsDisabled() + const largeAltBadgeEnabled = useLargeAltBadgeEnabled() + const setLargeAltBadgeEnabled = useSetLargeAltBadgeEnabled() useFocusEffect( React.useCallback(() => { @@ -84,6 +90,13 @@ export function AccessibilitySettingsScreen({}: Props) { isSelected={requireAltTextEnabled} onPress={() => setRequireAltTextEnabled(!requireAltTextEnabled)} /> + setLargeAltBadgeEnabled(!largeAltBadgeEnabled)} + /> Media From 73fc0094dd5e7056d2612965f81648b9ffe423d0 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 19 Jun 2024 22:45:08 +0100 Subject: [PATCH 72/86] Update HomeHeaderLayoutMobile.tsx (#4572) --- src/view/com/home/HomeHeaderLayoutMobile.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/view/com/home/HomeHeaderLayoutMobile.tsx b/src/view/com/home/HomeHeaderLayoutMobile.tsx index 895baa9a4d..8cf0452cec 100644 --- a/src/view/com/home/HomeHeaderLayoutMobile.tsx +++ b/src/view/com/home/HomeHeaderLayoutMobile.tsx @@ -120,6 +120,7 @@ const styles = StyleSheet.create({ paddingHorizontal: 16, paddingVertical: 5, width: '100%', + minHeight: 46, }, title: { fontSize: 21, From 5c31859f7bb753b07752e2b8faf2248561c46c54 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 19 Jun 2024 23:42:12 +0100 Subject: [PATCH 73/86] fix for autofill covering border (#4573) --- src/components/forms/TextField.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index 73a660ea6c..f7a827b493 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -196,6 +196,13 @@ export function createInput(Component: typeof TextInput) { textAlignVertical: rest.multiline ? 'top' : undefined, minHeight: rest.multiline ? 80 : undefined, }, + // fix for autofill styles covering border + web({ + paddingTop: 12, + paddingBottom: 12, + marginTop: 2, + marginBottom: 2, + }), android({ paddingBottom: 16, }), From 89d99a87019aced9008f33e37e55bd98ec8a7084 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 19 Jun 2024 16:20:43 -0700 Subject: [PATCH 74/86] use 1000x1000 for image height in avatar cropper (#4453) --- src/screens/Onboarding/StepProfile/index.tsx | 4 ++-- src/view/com/util/UserAvatar.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/screens/Onboarding/StepProfile/index.tsx b/src/screens/Onboarding/StepProfile/index.tsx index 3556bba7a0..5304aa5031 100644 --- a/src/screens/Onboarding/StepProfile/index.tsx +++ b/src/screens/Onboarding/StepProfile/index.tsx @@ -181,8 +181,8 @@ export function StepProfile() { image = await openCropper({ mediaType: 'photo', cropperCircleOverlay: true, - height: image.height, - width: image.width, + height: 1000, + width: 1000, path: image.path, }) } diff --git a/src/view/com/util/UserAvatar.tsx b/src/view/com/util/UserAvatar.tsx index c212ea4c02..e9aa625806 100644 --- a/src/view/com/util/UserAvatar.tsx +++ b/src/view/com/util/UserAvatar.tsx @@ -303,8 +303,8 @@ let EditableUserAvatar = ({ const croppedImage = await openCropper({ mediaType: 'photo', cropperCircleOverlay: true, - height: item.height, - width: item.width, + height: 1000, + width: 1000, path: item.path, }) From 7d8fca56dc25b31b592692ad385105be42285c72 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 19 Jun 2024 18:47:43 -0500 Subject: [PATCH 75/86] Convert button to use forwardRef (#4576) --- src/components/Button.tsx | 667 ++++++++++++++++++++------------------ 1 file changed, 343 insertions(+), 324 deletions(-) diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 982f422134..deac450eea 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -88,336 +88,355 @@ export function useButtonContext() { return React.useContext(Context) } -export function Button({ - children, - variant, - color, - size, - shape = 'default', - label, - disabled = false, - style, - hoverStyle: hoverStyleProp, - ...rest -}: ButtonProps) { - const t = useTheme() - const [state, setState] = React.useState({ - pressed: false, - hovered: false, - focused: false, - }) - - const onPressIn = React.useCallback(() => { - setState(s => ({ - ...s, - pressed: true, - })) - }, [setState]) - const onPressOut = React.useCallback(() => { - setState(s => ({ - ...s, - pressed: false, - })) - }, [setState]) - const onHoverIn = React.useCallback(() => { - setState(s => ({ - ...s, - hovered: true, - })) - }, [setState]) - const onHoverOut = React.useCallback(() => { - setState(s => ({ - ...s, - hovered: false, - })) - }, [setState]) - const onFocus = React.useCallback(() => { - setState(s => ({ - ...s, - focused: true, - })) - }, [setState]) - const onBlur = React.useCallback(() => { - setState(s => ({ - ...s, - focused: false, - })) - }, [setState]) - - const {baseStyles, hoverStyles} = React.useMemo(() => { - const baseStyles: ViewStyle[] = [] - const hoverStyles: ViewStyle[] = [] - const light = t.name === 'light' - - if (color === 'primary') { - if (variant === 'solid') { - if (!disabled) { - baseStyles.push({ - backgroundColor: t.palette.primary_500, - }) - hoverStyles.push({ - backgroundColor: t.palette.primary_600, - }) - } else { - baseStyles.push({ - backgroundColor: t.palette.primary_700, - }) - } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - borderWidth: 1, - }) - - if (!disabled) { - baseStyles.push(a.border, { - borderColor: t.palette.primary_500, - }) - hoverStyles.push(a.border, { - backgroundColor: light - ? t.palette.primary_50 - : t.palette.primary_950, - }) - } else { - baseStyles.push(a.border, { - borderColor: light ? t.palette.primary_200 : t.palette.primary_900, - }) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push(t.atoms.bg) - hoverStyles.push({ - backgroundColor: light - ? t.palette.primary_100 - : t.palette.primary_900, - }) - } - } - } else if (color === 'secondary') { - if (variant === 'solid') { - if (!disabled) { - baseStyles.push({ - backgroundColor: t.palette.contrast_25, - }) - hoverStyles.push({ - backgroundColor: t.palette.contrast_50, - }) - } else { - baseStyles.push({ - backgroundColor: t.palette.contrast_100, - }) - } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - 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_100, - }) - } - } - } else if (color === 'negative') { - if (variant === 'solid') { - if (!disabled) { - baseStyles.push({ - backgroundColor: t.palette.negative_500, - }) - hoverStyles.push({ - backgroundColor: t.palette.negative_600, - }) - } else { - baseStyles.push({ - backgroundColor: t.palette.negative_700, - }) - } - } else if (variant === 'outline') { - baseStyles.push(a.border, t.atoms.bg, { - borderWidth: 1, - }) - - if (!disabled) { - baseStyles.push(a.border, { - borderColor: t.palette.negative_500, - }) - hoverStyles.push(a.border, { - backgroundColor: light - ? t.palette.negative_50 - : t.palette.negative_975, - }) - } else { - baseStyles.push(a.border, { - borderColor: light - ? t.palette.negative_200 - : t.palette.negative_900, - }) - } - } else if (variant === 'ghost') { - if (!disabled) { - baseStyles.push(t.atoms.bg) - hoverStyles.push({ - backgroundColor: light - ? t.palette.negative_100 - : t.palette.negative_975, - }) - } - } - } - - if (shape === 'default') { - if (size === 'large') { - baseStyles.push({paddingVertical: 15}, a.px_2xl, a.rounded_sm, a.gap_md) - } else if (size === 'medium') { - baseStyles.push({paddingVertical: 12}, a.px_2xl, a.rounded_sm, a.gap_md) - } else if (size === 'small') { - baseStyles.push({paddingVertical: 9}, a.px_lg, a.rounded_sm, a.gap_sm) - } else if (size === 'xsmall') { - baseStyles.push({paddingVertical: 6}, a.px_sm, a.rounded_sm, a.gap_sm) - } else if (size === 'tiny') { - baseStyles.push({paddingVertical: 4}, a.px_sm, a.rounded_xs, a.gap_xs) - } - } else if (shape === 'round' || shape === 'square') { - if (size === 'large') { - if (shape === 'round') { - baseStyles.push({height: 54, width: 54}) - } else { - baseStyles.push({height: 50, width: 50}) - } - } else if (size === 'small') { - baseStyles.push({height: 34, width: 34}) - } else if (size === 'xsmall') { - baseStyles.push({height: 28, width: 28}) - } else if (size === 'tiny') { - baseStyles.push({height: 20, width: 20}) - } - - if (shape === 'round') { - baseStyles.push(a.rounded_full) - } else if (shape === 'square') { - if (size === 'tiny') { - baseStyles.push(a.rounded_xs) - } else { - baseStyles.push(a.rounded_sm) - } - } - } - - return { - baseStyles, - hoverStyles, - } - }, [t, variant, color, size, shape, disabled]) - - const {gradientColors, gradientHoverColors, gradientLocations} = - React.useMemo(() => { - const colors: string[] = [] - const hoverColors: string[] = [] - const locations: number[] = [] - const gradient = { - primary: tokens.gradients.sky, - secondary: tokens.gradients.sky, - negative: tokens.gradients.sky, - gradient_sky: tokens.gradients.sky, - gradient_midnight: tokens.gradients.midnight, - gradient_sunrise: tokens.gradients.sunrise, - gradient_sunset: tokens.gradients.sunset, - gradient_nordic: tokens.gradients.nordic, - gradient_bonfire: tokens.gradients.bonfire, - }[color || 'primary'] - - if (variant === 'gradient') { - colors.push(...gradient.values.map(([_, color]) => color)) - hoverColors.push(...gradient.values.map(_ => gradient.hover_value)) - locations.push(...gradient.values.map(([location, _]) => location)) - } - - return { - gradientColors: colors, - gradientHoverColors: hoverColors, - gradientLocations: locations, - } - }, [variant, color]) - - const context = React.useMemo( - () => ({ - ...state, +export const Button = React.forwardRef( + ( + { + children, variant, color, size, - disabled: disabled || false, - }), - [state, variant, color, size, disabled], - ) + shape = 'default', + label, + disabled = false, + style, + hoverStyle: hoverStyleProp, + ...rest + }, + ref, + ) => { + const t = useTheme() + const [state, setState] = React.useState({ + pressed: false, + hovered: false, + focused: false, + }) - const flattenedBaseStyles = flatten(baseStyles) + const onPressIn = React.useCallback(() => { + setState(s => ({ + ...s, + pressed: true, + })) + }, [setState]) + const onPressOut = React.useCallback(() => { + setState(s => ({ + ...s, + pressed: false, + })) + }, [setState]) + const onHoverIn = React.useCallback(() => { + setState(s => ({ + ...s, + hovered: true, + })) + }, [setState]) + const onHoverOut = React.useCallback(() => { + setState(s => ({ + ...s, + hovered: false, + })) + }, [setState]) + const onFocus = React.useCallback(() => { + setState(s => ({ + ...s, + focused: true, + })) + }, [setState]) + const onBlur = React.useCallback(() => { + setState(s => ({ + ...s, + focused: false, + })) + }, [setState]) - return ( - { + const baseStyles: ViewStyle[] = [] + const hoverStyles: ViewStyle[] = [] + const light = t.name === 'light' + + if (color === 'primary') { + if (variant === 'solid') { + if (!disabled) { + baseStyles.push({ + backgroundColor: t.palette.primary_500, + }) + hoverStyles.push({ + backgroundColor: t.palette.primary_600, + }) + } else { + baseStyles.push({ + backgroundColor: t.palette.primary_700, + }) + } + } else if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, + }) + + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.primary_500, + }) + hoverStyles.push(a.border, { + backgroundColor: light + ? t.palette.primary_50 + : t.palette.primary_950, + }) + } else { + baseStyles.push(a.border, { + borderColor: light + ? t.palette.primary_200 + : t.palette.primary_900, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: light + ? t.palette.primary_100 + : t.palette.primary_900, + }) + } + } + } else if (color === 'secondary') { + if (variant === 'solid') { + if (!disabled) { + baseStyles.push({ + backgroundColor: t.palette.contrast_25, + }) + hoverStyles.push({ + backgroundColor: t.palette.contrast_50, + }) + } else { + baseStyles.push({ + backgroundColor: t.palette.contrast_100, + }) + } + } else if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + 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_100, + }) + } + } + } else if (color === 'negative') { + if (variant === 'solid') { + if (!disabled) { + baseStyles.push({ + backgroundColor: t.palette.negative_500, + }) + hoverStyles.push({ + backgroundColor: t.palette.negative_600, + }) + } else { + baseStyles.push({ + backgroundColor: t.palette.negative_700, + }) + } + } else if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, + }) + + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.negative_500, + }) + hoverStyles.push(a.border, { + backgroundColor: light + ? t.palette.negative_50 + : t.palette.negative_975, + }) + } else { + baseStyles.push(a.border, { + borderColor: light + ? t.palette.negative_200 + : t.palette.negative_900, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: light + ? t.palette.negative_100 + : t.palette.negative_975, + }) + } + } + } + + if (shape === 'default') { + if (size === 'large') { + baseStyles.push( + {paddingVertical: 15}, + a.px_2xl, + a.rounded_sm, + a.gap_md, + ) + } else if (size === 'medium') { + baseStyles.push( + {paddingVertical: 12}, + a.px_2xl, + a.rounded_sm, + a.gap_md, + ) + } else if (size === 'small') { + baseStyles.push({paddingVertical: 9}, a.px_lg, a.rounded_sm, a.gap_sm) + } else if (size === 'xsmall') { + baseStyles.push({paddingVertical: 6}, a.px_sm, a.rounded_sm, a.gap_sm) + } else if (size === 'tiny') { + baseStyles.push({paddingVertical: 4}, a.px_sm, a.rounded_xs, a.gap_xs) + } + } else if (shape === 'round' || shape === 'square') { + if (size === 'large') { + if (shape === 'round') { + baseStyles.push({height: 54, width: 54}) + } else { + baseStyles.push({height: 50, width: 50}) + } + } else if (size === 'small') { + baseStyles.push({height: 34, width: 34}) + } else if (size === 'xsmall') { + baseStyles.push({height: 28, width: 28}) + } else if (size === 'tiny') { + baseStyles.push({height: 20, width: 20}) + } + + if (shape === 'round') { + baseStyles.push(a.rounded_full) + } else if (shape === 'square') { + if (size === 'tiny') { + baseStyles.push(a.rounded_xs) + } else { + baseStyles.push(a.rounded_sm) + } + } + } + + return { + baseStyles, + hoverStyles, + } + }, [t, variant, color, size, shape, disabled]) + + const {gradientColors, gradientHoverColors, gradientLocations} = + React.useMemo(() => { + const colors: string[] = [] + const hoverColors: string[] = [] + const locations: number[] = [] + const gradient = { + primary: tokens.gradients.sky, + secondary: tokens.gradients.sky, + negative: tokens.gradients.sky, + gradient_sky: tokens.gradients.sky, + gradient_midnight: tokens.gradients.midnight, + gradient_sunrise: tokens.gradients.sunrise, + gradient_sunset: tokens.gradients.sunset, + gradient_nordic: tokens.gradients.nordic, + gradient_bonfire: tokens.gradients.bonfire, + }[color || 'primary'] + + if (variant === 'gradient') { + colors.push(...gradient.values.map(([_, color]) => color)) + hoverColors.push(...gradient.values.map(_ => gradient.hover_value)) + locations.push(...gradient.values.map(([location, _]) => location)) + } + + return { + gradientColors: colors, + gradientHoverColors: hoverColors, + gradientLocations: locations, + } + }, [variant, color]) + + const context = React.useMemo( + () => ({ + ...state, + variant, + color, + size, disabled: disabled || false, - }} - style={[ - a.flex_row, - a.align_center, - a.justify_center, - flattenedBaseStyles, - flatten(style), - ...(state.hovered || state.pressed - ? [hoverStyles, flatten(hoverStyleProp)] - : []), - ]} - onPressIn={onPressIn} - onPressOut={onPressOut} - onHoverIn={onHoverIn} - onHoverOut={onHoverOut} - onFocus={onFocus} - onBlur={onBlur}> - {variant === 'gradient' && ( - - - - )} - - {typeof children === 'function' ? children(context) : children} - - - ) -} + }), + [state, variant, color, size, disabled], + ) + + const flattenedBaseStyles = flatten(baseStyles) + + return ( + + {variant === 'gradient' && ( + + + + )} + + {typeof children === 'function' ? children(context) : children} + + + ) + }, +) +Button.displayName = 'Button' export function useSharedButtonTextStyles() { const t = useTheme() From 75aec19230609f8ae689cd1ec0b2697c5233bdeb Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 20 Jun 2024 04:19:37 +0300 Subject: [PATCH 76/86] Fix threadgate read after write (#4577) * Fix threadgate read-after-write problem * Fix React key (drive-by) --- src/view/com/threadgate/WhoCanReply.tsx | 43 ++++++++++++++++++++++--- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/src/view/com/threadgate/WhoCanReply.tsx b/src/view/com/threadgate/WhoCanReply.tsx index 3ffbaa7ae9..7e3528d928 100644 --- a/src/view/com/threadgate/WhoCanReply.tsx +++ b/src/view/com/threadgate/WhoCanReply.tsx @@ -1,12 +1,19 @@ import React from 'react' import {Keyboard, StyleProp, View, ViewStyle} from 'react-native' -import {AppBskyFeedDefs, AppBskyGraphDefs, AtUri} from '@atproto/api' +import { + AppBskyFeedDefs, + AppBskyFeedGetPostThread, + AppBskyGraphDefs, + AtUri, + BskyAgent, +} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useQueryClient} from '@tanstack/react-query' import {useAnalytics} from '#/lib/analytics/analytics' import {createThreadgate} from '#/lib/api' +import {until} from '#/lib/async/until' import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle' import {usePalette} from '#/lib/hooks/usePalette' import {makeListLink, makeProfileLink} from '#/lib/routes/links' @@ -85,6 +92,18 @@ export function WhoCanReply({ 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], @@ -133,15 +152,14 @@ export function WhoCanReply({ Only{' '} {settings.map((rule, i) => ( - <> + - + ))}{' '} can reply. @@ -227,3 +245,20 @@ function Separator({i, length}: {i: number; length: number}) { } return <>, } + +async function whenAppViewReady( + agent: BskyAgent, + uri: string, + fn: (res: AppBskyFeedGetPostThread.Response) => boolean, +) { + await until( + 5, // 5 tries + 1e3, // 1s delay between tries + fn, + () => + agent.app.bsky.feed.getPostThread({ + uri, + depth: 0, + }), + ) +} From 80197556f176723b619349dc060d1b7001472d47 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 19 Jun 2024 18:39:45 -0700 Subject: [PATCH 77/86] Rework "Who can reply" to blend more nicely into the UI (#4578) * Rework WhoCanReply controls in threads to blend more nicely * Fix layout * Fix post control hitslops * Move dialog content to separate component --------- Co-authored-by: Dan Abramov --- src/lib/constants.ts | 1 + src/view/com/post-thread/PostThreadItem.tsx | 38 +- src/view/com/threadgate/WhoCanReply.tsx | 447 +++++++++++------- src/view/com/util/post-ctrls/PostCtrls.tsx | 10 +- src/view/com/util/post-ctrls/RepostButton.tsx | 4 +- 5 files changed, 314 insertions(+), 186 deletions(-) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 05d1591f56..e0b8998007 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -84,6 +84,7 @@ export const createHitslop = (size: number): Insets => ({ export const HITSLOP_10 = createHitslop(10) export const HITSLOP_20 = createHitslop(20) export const HITSLOP_30 = createHitslop(30) +export const POST_CTRL_HITSLOP = {top: 5, bottom: 10, left: 10, right: 10} export const BACK_HITSLOP = HITSLOP_30 export const MAX_POST_LINES = 25 diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 6d03029d7f..92b529db78 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -25,7 +25,7 @@ import {sanitizeHandle} from 'lib/strings/handles' import {countLines} from 'lib/strings/helpers' import {niceDate} from 'lib/strings/time' import {s} from 'lib/styles' -import {isNative, isWeb} from 'platform/detection' +import {isWeb} from 'platform/detection' import {useSession} from 'state/session' import {PostThreadFollowBtn} from 'view/com/post-thread/PostThreadFollowBtn' import {atoms as a} from '#/alf' @@ -35,7 +35,7 @@ import {LabelsOnMyPost} from '../../../components/moderation/LabelsOnMe' import {PostAlerts} from '../../../components/moderation/PostAlerts' import {PostHider} from '../../../components/moderation/PostHider' import {getTranslatorLink, isPostInLanguage} from '../../../locale/helpers' -import {WhoCanReply} from '../threadgate/WhoCanReply' +import {WhoCanReplyBlock, WhoCanReplyInline} from '../threadgate/WhoCanReply' import {ErrorMessage} from '../util/error/ErrorMessage' import {Link, TextLink} from '../util/Link' import {formatCount} from '../util/numeric/format' @@ -340,6 +340,7 @@ let PostThreadItemLoaded = ({ @@ -396,11 +397,6 @@ let PostThreadItemLoaded = ({
- ) } else { @@ -579,14 +575,7 @@ let PostThreadItemLoaded = ({ ) : undefined} - + ) } @@ -654,10 +643,12 @@ function PostOuterWrapper({ function ExpandedPostDetails({ post, + isThreadAuthor, needsTranslation, translatorUrl, }: { post: AppBskyFeedDefs.PostView + isThreadAuthor: boolean needsTranslation: boolean translatorUrl: string }) { @@ -670,14 +661,23 @@ function ExpandedPostDetails({ }, [openLink, translatorUrl]) return ( - - {niceDate(post.indexedAt)} + + {niceDate(post.indexedAt)} + {needsTranslation && ( <> - · + · Translate diff --git a/src/view/com/threadgate/WhoCanReply.tsx b/src/view/com/threadgate/WhoCanReply.tsx index 7e3528d928..3f9970f5fb 100644 --- a/src/view/com/threadgate/WhoCanReply.tsx +++ b/src/view/com/threadgate/WhoCanReply.tsx @@ -11,13 +11,10 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useQueryClient} from '@tanstack/react-query' -import {useAnalytics} from '#/lib/analytics/analytics' import {createThreadgate} from '#/lib/api' import {until} from '#/lib/async/until' -import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle' -import {usePalette} from '#/lib/hooks/usePalette' +import {HITSLOP_10} from '#/lib/constants' import {makeListLink, makeProfileLink} from '#/lib/routes/links' -import {colors} from '#/lib/styles' import {logger} from '#/logger' import {isNative} from '#/platform/detection' import {useModalControls} from '#/state/modals' @@ -28,45 +25,301 @@ import { } from '#/state/queries/threadgate' import {useAgent} from '#/state/session' import * as Toast from 'view/com/util/Toast' +import {atoms as a, useTheme} from '#/alf' import {Button} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {useDialogControl} from '#/components/Dialog' +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' +import {Text} from '#/components/Typography' import {TextLink} from '../util/Link' -import {Text} from '../util/text/Text' -export function WhoCanReply({ - post, - isThreadAuthor, - style, -}: { +interface WhoCanReplyProps { post: AppBskyFeedDefs.PostView isThreadAuthor: boolean style?: StyleProp -}) { - const {track} = useAnalytics() +} + +export function WhoCanReplyInline({ + post, + isThreadAuthor, + style, +}: WhoCanReplyProps) { const {_} = useLingui() - const pal = usePalette('default') + 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 disabled`) + : _(msg`Some people can reply`) + + return ( + <> + + + + ) +} + +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 ( + <> + + + + ) +} + +function Icon({ + color, + width, + settings, +}: { + color: string + width?: number + settings: ThreadgateSetting[] +}) { + const isEverybody = settings.length === 0 + const isNobody = !!settings.find(gate => gate.type === 'nobody') + const IconComponent = isEverybody ? Earth : isNobody ? CircleBanSign : Group + return +} + +function InfoDialog({ + control, + post, + settings, +}: { + control: Dialog.DialogControlProps + post: AppBskyFeedDefs.PostView + settings: ThreadgateSetting[] +}) { + return ( + + + + + ) +} + +function InfoDialogInner({ + post, + settings, +}: { + post: AppBskyFeedDefs.PostView + settings: ThreadgateSetting[] +}) { + const {_} = useLingui() + return ( + + + + Who can reply? + + + + + ) +} + +function Rules({ + post, + settings, +}: { + post: AppBskyFeedDefs.PostView + settings: ThreadgateSetting[] +}) { + const t = useTheme() + return ( + + {!settings.length ? ( + Everybody can reply + ) : settings[0].type === 'nobody' ? ( + Replies to this thread are disabled + ) : ( + + Only{' '} + {settings.map((rule, i) => ( + <> + + + + ))}{' '} + can reply + + )} + + ) +} + +function Rule({ + rule, + post, + lists, +}: { + rule: ThreadgateSetting + post: AppBskyFeedDefs.PostView + lists: AppBskyGraphDefs.ListViewBasic[] | undefined +}) { + const t = useTheme() + if (rule.type === 'mention') { + return mentioned users + } + if (rule.type === 'following') { + return ( + + users followed by{' '} + + + ) + } + if (rule.type === 'list') { + const list = lists?.find(l => l.uri === rule.list) + if (list) { + const listUrip = new AtUri(list.uri) + return ( + + {' '} + members + + ) + } + } +} + +function Separator({i, length}: {i: number; length: number}) { + if (length < 2 || i === length - 1) { + return null + } + if (i === length - 2) { + return ( + <> + {length > 2 ? ',' : ''} and{' '} + + ) + } + return <>, +} + +function useWhoCanReply(post: AppBskyFeedDefs.PostView) { const agent = useAgent() const queryClient = useQueryClient() const {openModal} = useModalControls() - const containerStyles = useColorSchemeStyle( - { - backgroundColor: pal.colors.unreadNotifBg, - }, - { - backgroundColor: pal.colors.unreadNotifBg, - }, - ) - const textStyles = useColorSchemeStyle( - {color: colors.blue5}, - {color: colors.blue1}, - ) - const hoverStyles = useColorSchemeStyle( - { - backgroundColor: colors.white, - }, - { - backgroundColor: pal.colors.background, - }, - ) + const settings = React.useMemo( () => threadgateViewToSettings(post.threadgate), [post], @@ -74,7 +327,6 @@ export function WhoCanReply({ const isRootPost = !('reply' in post.record) const onPressEdit = () => { - track('Post:EditThreadgateOpened') if (isNative && Keyboard.isVisible()) { Keyboard.dismiss() } @@ -108,7 +360,6 @@ export function WhoCanReply({ queryClient.invalidateQueries({ queryKey: [POST_THREAD_RQKEY_ROOT], }) - track('Post:ThreadgateEdited') } catch (err) { Toast.show( 'There was an issue. Please check your internet connection and try again.', @@ -119,131 +370,7 @@ export function WhoCanReply({ }) } - if (!isRootPost) { - return null - } - if (!settings.length && !isThreadAuthor) { - return null - } - - return ( - - - - {!settings.length ? ( - Everybody can reply. - ) : settings[0].type === 'nobody' ? ( - Replies to this thread are disabled. - ) : ( - - Only{' '} - {settings.map((rule, i) => ( - - - - - ))}{' '} - can reply. - - )} - - - {isThreadAuthor && ( - - - - )} - - ) -} - -function Rule({ - rule, - post, - lists, -}: { - rule: ThreadgateSetting - post: AppBskyFeedDefs.PostView - lists: AppBskyGraphDefs.ListViewBasic[] | undefined -}) { - const pal = usePalette('default') - if (rule.type === 'mention') { - return mentioned users - } - if (rule.type === 'following') { - return ( - - users followed by{' '} - - - ) - } - if (rule.type === 'list') { - const list = lists?.find(l => l.uri === rule.list) - if (list) { - const listUrip = new AtUri(list.uri) - return ( - - {' '} - members - - ) - } - } -} - -function Separator({i, length}: {i: number; length: number}) { - if (length < 2 || i === length - 1) { - return null - } - if (i === length - 2) { - return ( - <> - {length > 2 ? ',' : ''} and{' '} - - ) - } - return <>, + return {settings, isRootPost, onPressEdit} } async function whenAppViewReady( diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index 55fb4a334b..472ce4043a 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -15,7 +15,7 @@ import { import {msg, plural} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {HITSLOP_10, HITSLOP_20} from '#/lib/constants' +import {POST_CTRL_HITSLOP} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' import {makeProfileLink} from '#/lib/routes/links' import {shareUrl} from '#/lib/sharing' @@ -215,7 +215,7 @@ let PostCtrls = ({ other: 'Reply (# replies)', })} accessibilityHint="" - hitSlop={big ? HITSLOP_20 : HITSLOP_10}> + hitSlop={POST_CTRL_HITSLOP}> + hitSlop={POST_CTRL_HITSLOP}> {post.viewer?.like ? ( ) : ( @@ -299,7 +299,7 @@ let PostCtrls = ({ }} accessibilityLabel={_(msg`Share`)} accessibilityHint="" - hitSlop={big ? HITSLOP_20 : HITSLOP_10}> + hitSlop={POST_CTRL_HITSLOP}> diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/view/com/util/post-ctrls/RepostButton.tsx index 10bc369b8f..d49cda442c 100644 --- a/src/view/com/util/post-ctrls/RepostButton.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.tsx @@ -3,7 +3,7 @@ import {View} from 'react-native' import {msg, plural} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {HITSLOP_10, HITSLOP_20} from '#/lib/constants' +import {POST_CTRL_HITSLOP} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' import {useRequireAuth} from '#/state/session' import {atoms as a, useTheme} from '#/alf' @@ -67,7 +67,7 @@ let RepostButton = ({ shape="round" variant="ghost" color="secondary" - hitSlop={big ? HITSLOP_20 : HITSLOP_10}> + hitSlop={POST_CTRL_HITSLOP}> {typeof repostCount !== 'undefined' && repostCount > 0 ? ( Date: Thu, 20 Jun 2024 12:30:48 -0500 Subject: [PATCH 78/86] Merge #4492, fixes profile menu hover (#4580) * Fix button hover color (#4492) * Update ProfileMenu.tsx * Update Button.tsx * Update ProfileFeed.tsx * Update ProfileFeed.tsx * Re-add change post conflict --------- Co-authored-by: Minseo Lee --- src/components/Button.tsx | 2 +- src/view/com/profile/ProfileMenu.tsx | 23 +++++++++++------------ src/view/screens/ProfileFeed.tsx | 13 +++++++------ 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/components/Button.tsx b/src/components/Button.tsx index deac450eea..54d9eaf3b0 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -231,7 +231,7 @@ export const Button = React.forwardRef( if (!disabled) { baseStyles.push(t.atoms.bg) hoverStyles.push({ - backgroundColor: t.palette.contrast_100, + backgroundColor: t.palette.contrast_25, }) } } diff --git a/src/view/com/profile/ProfileMenu.tsx b/src/view/com/profile/ProfileMenu.tsx index efc2497600..f5e050d707 100644 --- a/src/view/com/profile/ProfileMenu.tsx +++ b/src/view/com/profile/ProfileMenu.tsx @@ -9,7 +9,6 @@ import {useQueryClient} from '@tanstack/react-query' import {logger} from '#/logger' import {useAnalytics} from 'lib/analytics/analytics' import {HITSLOP_10} from 'lib/constants' -import {usePalette} from 'lib/hooks/usePalette' import {makeProfileLink} from 'lib/routes/links' import {shareUrl} from 'lib/sharing' import {toShareUrl} from 'lib/strings/url-helpers' @@ -24,7 +23,7 @@ import { import {useSession} from 'state/session' import {EventStopper} from 'view/com/util/EventStopper' import * as Toast from 'view/com/util/Toast' -import {useTheme} from '#/alf' +import {atoms as a, useTheme} from '#/alf' import {ArrowOutOfBox_Stroke2_Corner0_Rounded as Share} from '#/components/icons/ArrowOutOfBox' import {Flag_Stroke2_Corner0_Rounded as Flag} from '#/components/icons/Flag' import {ListSparkle_Stroke2_Corner0_Rounded as List} from '#/components/icons/ListSparkle' @@ -49,7 +48,7 @@ let ProfileMenu = ({ const {currentAccount, hasSession} = useSession() const t = useTheme() // TODO ALF this - const pal = usePalette('default') + const alf = useTheme() const {track} = useAnalytics() const {openModal} = useModalControls() const reportDialogControl = useReportDialogControl() @@ -187,21 +186,21 @@ let ProfileMenu = ({ - {({props}) => { + {({props, state}) => { return ( - ) From 51f5e6bf900685ef92191f22949d09035733c682 Mon Sep 17 00:00:00 2001 From: devin ivy Date: Thu, 20 Jun 2024 17:45:52 -0400 Subject: [PATCH 79/86] Bsky link card service (#4547) * setup bskycard * quick proof of concept for png card generation * bskycard: use jsx * bskycard: 3x5 profile layout * bskycard: add butterfly overlay * bskycard: tidy * bskycard: separate and reorganize * bskycard: tidy * bskycard: tidy * bskycard: tidy * bskycard: poc of transparent overlay and box shadow * bskycard: reorg impl into src/ directory * bskycard: use more standard app structure * bskycard: setup dockerfile, fix build * bskycard: support for x-origin-verify * bskycard: card layout, filter images based on labels * bskycard: tidy * bskycard: support cluster mode * bskycard: handle error fetching starter pack info * bskycard: tidy * bskycard: fix leak on failed image fetch * bskycard: build workflow * bskyogcard: rename from bskycard * bskyogcard: fix some express plumbing * bskyogcard: add cdn tags, tidy --- .../workflows/build-and-push-ogcard-aws.yaml | 55 + Dockerfile.bskyogcard | 41 + bskyogcard/package.json | 24 + bskyogcard/src/assets/Inter-Bold.ttf | Bin 0 -> 316584 bytes bskyogcard/src/bin.ts | 48 + bskyogcard/src/components/Butterfly.tsx | 16 + bskyogcard/src/components/Img.tsx | 10 + bskyogcard/src/components/StarterPack.tsx | 149 +++ bskyogcard/src/config.ts | 40 + bskyogcard/src/context.ts | 44 + bskyogcard/src/index.ts | 41 + bskyogcard/src/logger.ts | 3 + bskyogcard/src/routes/health.ts | 14 + bskyogcard/src/routes/index.ts | 13 + bskyogcard/src/routes/starter-pack.tsx | 102 ++ bskyogcard/src/routes/util.ts | 36 + bskyogcard/tsconfig.json | 11 + bskyogcard/yarn.lock | 1113 +++++++++++++++++ 18 files changed, 1760 insertions(+) create mode 100644 .github/workflows/build-and-push-ogcard-aws.yaml create mode 100644 Dockerfile.bskyogcard create mode 100644 bskyogcard/package.json create mode 100644 bskyogcard/src/assets/Inter-Bold.ttf create mode 100644 bskyogcard/src/bin.ts create mode 100644 bskyogcard/src/components/Butterfly.tsx create mode 100644 bskyogcard/src/components/Img.tsx create mode 100644 bskyogcard/src/components/StarterPack.tsx create mode 100644 bskyogcard/src/config.ts create mode 100644 bskyogcard/src/context.ts create mode 100644 bskyogcard/src/index.ts create mode 100644 bskyogcard/src/logger.ts create mode 100644 bskyogcard/src/routes/health.ts create mode 100644 bskyogcard/src/routes/index.ts create mode 100644 bskyogcard/src/routes/starter-pack.tsx create mode 100644 bskyogcard/src/routes/util.ts create mode 100644 bskyogcard/tsconfig.json create mode 100644 bskyogcard/yarn.lock diff --git a/.github/workflows/build-and-push-ogcard-aws.yaml b/.github/workflows/build-and-push-ogcard-aws.yaml new file mode 100644 index 0000000000..5d6ff041d3 --- /dev/null +++ b/.github/workflows/build-and-push-ogcard-aws.yaml @@ -0,0 +1,55 @@ +name: build-and-push-ogcard-aws +on: + push: + branches: + - divy/bskycard + +env: + REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} + USERNAME: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_USERNAME }} + PASSWORD: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_PASSWORD }} + IMAGE_NAME: bskyogcard + +jobs: + ogcard-container-aws: + if: github.repository == 'bluesky-social/social-app' + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Setup Docker buildx + uses: docker/setup-buildx-action@v1 + + - name: Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@v2 + with: + registry: ${{ env.REGISTRY }} + username: ${{ env.USERNAME}} + password: ${{ env.PASSWORD }} + + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@v4 + with: + images: | + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=sha,enable=true,priority=100,prefix=,suffix=,format=long + + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@v4 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + file: ./Dockerfile.bskyogcard + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max diff --git a/Dockerfile.bskyogcard b/Dockerfile.bskyogcard new file mode 100644 index 0000000000..aa68add595 --- /dev/null +++ b/Dockerfile.bskyogcard @@ -0,0 +1,41 @@ +FROM node:20.11-alpine3.18 as build + +# Move files into the image and install +WORKDIR /app + +COPY ./bskyogcard/package.json ./ +COPY ./bskyogcard/yarn.lock ./ +RUN yarn install --frozen-lockfile + +COPY ./bskyogcard ./ + +# build then prune dev deps +RUN yarn build +RUN yarn install --production --ignore-scripts --prefer-offline + +# Uses assets from build stage to reduce build size +FROM node:20.11-alpine3.18 + +RUN apk add --update dumb-init + +# Avoid zombie processes, handle signal forwarding +ENTRYPOINT ["dumb-init", "--"] + +WORKDIR /app +COPY --from=build /app /app +RUN mkdir /app/data && chown node /app/data + +VOLUME /app/data +EXPOSE 3000 +ENV CARD_PORT=3000 +ENV NODE_ENV=production +# potential perf issues w/ io_uring on this version of node +ENV UV_USE_IO_URING=0 + +# https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md#non-root-user +USER node +CMD ["node", "--heapsnapshot-signal=SIGUSR2", "--enable-source-maps", "dist/bin.js"] + +LABEL org.opencontainers.image.source=https://github.com/bluesky-social/social-app +LABEL org.opencontainers.image.description="Bsky Card Service" +LABEL org.opencontainers.image.licenses=UNLICENSED diff --git a/bskyogcard/package.json b/bskyogcard/package.json new file mode 100644 index 0000000000..3be1337fc3 --- /dev/null +++ b/bskyogcard/package.json @@ -0,0 +1,24 @@ +{ + "name": "bskyogcard", + "version": "0.0.0", + "type": "module", + "main": "src/index.ts", + "scripts": { + "start": "node --loader ts-node/esm ./src/bin.ts", + "build": "tsc && cp -r src/assets dist/assets" + }, + "dependencies": { + "@atproto/api": "0.12.19-next.0", + "@atproto/common": "^0.4.0", + "@resvg/resvg-js": "^2.6.2", + "express": "^4.19.2", + "http-terminator": "^3.2.0", + "pino": "^9.2.0", + "react": "^18.3.1", + "satori": "^0.10.13" + }, + "devDependencies": { + "@types/node": "^20.14.3", + "typescript": "^5.4.5" + } +} diff --git a/bskyogcard/src/assets/Inter-Bold.ttf b/bskyogcard/src/assets/Inter-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..fe23eeb9c93a377d0f4ab003f1f77b555d19b1d1 GIT binary patch literal 316584 zcmd?S2b2}X+Nk|jb=-S~ArBdbAUWqGNX|K^sK78Vb-kFkH>S)7w-E1b!XO7Rb9E>daJstx_7rI5y^&Oi?nFk zta+7cRkn-h`gr7R(Xm69;g8&sThxSHqADi0=+domn^Hr%i1a)z(rsLaE|sbl-#x6c zi29gZdUxsCsOt~ke^`&>1spd`8=5-e*Eu&$5ta9xNWc93Q%8?5r4gPB+wVW*_VjZ} zb-ow9uDs~dcMRy4+PD0psnZDWO?b@#cof>7uLsA}M@kGBI%Zt0AB!Cp$=Xz;)czsE z(^4ZdAL%Mmi#$ucGcWTDZ^5S_G><2g$m60J?u_f}e%#%bJA)Yz9>d!H;M53#IC$B=2 z&Tjc-cELe^iX)LTfsbW>^3!J6xjo{L_yu(ir#^2#`i5!6x@(mQb5UPWw& zrj>LTa{OM*wvNh9i(@U0g|8O-xaf==vMeJ^-?>Y>F7mjfWMstJ7hSDall4-f|%XW1G6!pV^;ber|t` z`KA38<~Q~am>CY*)U zUJ0)RW)tsb%wAqE%!%F<%zM0hFz@y5#k|j(jXB4ggE`Nehq=H*4&EY=t^^?t+Wckg#mzU?!1`~*J%cNQNh`MLaDn8|)JW*$Eeq51s$xKn&uCq`DlxOK2lh$NRG42dH;K%?TFo%*te4Ak2SkG4fNpo9}%hh#g`-hZa+zvr)O-aK@JB(CUd`9Cl?yBSTpf02Svev_cv`tAd znpzB{#zyA12CW)MI#WU@Nz)>u4Wk1&jz)H|`i~FlYP**DPKbmq)&loKjEfvAYvtp2Yf5JP^ z_iY*5M)OR)niFDbmLgqnrQ^Dd78^}4bv7|#W4Ir&j3$^~iq+oqaZGPa+%AlG(?3`0 zcqL~uCelb7%b`56x^rY&8_Kl`H8iALRkJ^q8`dTjiN|23Jy6$ejQFEYE7xv@#N{!xeu_PbzSnDmCz{EH%l$ zGSa(}Q%Yt|SEuYuueO7FSH-+iW;pj=$)yQxAHhsy^e>z*t5T97*0V-auEbA~j>H|# z8K@unVRWz&5;ZeXY%HWm>CD~>dm`4F0mSP=8`Fq6l>P{%Q;Cv|HXDhT5lOgT6*ns& zzpga-{|=Ww^6O@lhGf6)<4L{jdkY6zb0dTQft|0a9{kldFDTeOTHQN|04c!3(-<@Ar_q zqhn-3w3yr;Z6H&kedTWdHJRYAmU;h>b~yE1pRvz1HhRa3V3r|LA!dii|6q?Gd{jK1 zasM-FP_Mt^8|iDpBmJO+Y)r@@8xwoP(nM>?`e;sB8aXX%5+kxQVXG`lI4DmgoR>8T z*=2b`Em8ywO^E__5xYsZj_a7Z&}9r^C@?^tZ}x>a_2Ky9?LJ| zNyn9y_Ls6FmQTjLP7CS#UnAqYtJ8TA>FXXvmcPMTbaV&yNwA^pl`_0G($^~|L~q85v(hZjlkuUo*aq z&dK;7T0Y~)Xxog_kyaVs2KmgFrhmvUo;IPX%<@u@e@JuL5lLe{|Cke`?SVf19q8fJ;l9f_pF>@-|2HvZ{2Bk2jGwPQ&m{Dd8vhLM zW9jsloRhl#Gt%0_{+C>od?rrxNhucCi83%@k6fRaE`<`FMCS24qK&0bv|Prs!Etw4 z=>2;<;`Wg~{}~x${_8{OYC=8)e;_g7gP z*v4%bD?{AzGQ`V?J&`=j@!t`)<5wB!)rytreJNx8e1BbjVrv;0lI4JmjQ$pnHyW@5h(4{wY6 zQJBMVHO`wUxbeIE8uqMMoFK2o9B%`YHjeSnxXbxHu(vr?q=Esz)^SYyZS420Wlwpn zdt=;A&uAMQ8^0KlcwN3F{(aV}j0x6US?kP{O7;^OdF*>+bG#mn>|&-(V(R+{EPyt_ zwZhPh%T~vX`=NM{jx>RPM|sGkiMcZ#A^a39GS>%DAKAuOiERjv1GyX7d-{kPp2v;UziQ{L757t4sg#8|sbUS^EHAe#f* zxUVqMyBGbQDI+6AWR^Wq*2c)VAG@lPC{^tea<5%dmR$*xCb%2h6Ej}Io*MUGh&>y> zh4u>a2q2G4H)&Q#GkZnGPV9T){wD4m{1&ay74V9M8iO@|!F*!sGvnjST9B1nFDLa_%xMcN@wI_q?p|-1u?m zf0fPsoi$#ntan+v1lJW@qj3#&%pWA*dg*eQ>*dvve1ttH6C;UIJ>q5@^e<%WjyxcZ z66$6gjGoGPGrBzEc=WZ5W6{PLZ$$@YycL=Cuj82f4Bo5KGcqFMtg-#7a*J1%bK4N; zmoc9^GEEYGluib(k<9V9-uB*uWz@%KKfu)WGRL$(GKuTP9n3e4St|@uPQWN*%Y|rE z`X~z`p4Hzb~0(&giH^W%-{v`b~ z!@@XM+qq=$|Md9ybADb;IcCj}eb$VO{U(n_#bk^)Loz z!UT6cW2Cbz^sCDz#>dJlWK4Fu$bIPS2DhyA;u>fzJRY}=`@ck_xjgT0LWel7L|ey+y`{}zEx#?H9e>n&9ytEIWYc|&e;pGU{gGj}8$$9)?p&XXOahr3GJ zdt2c=dnKb}ZDcZWz=R*qr0t;?jdVnnT=Nv3ba=8~2|?-2J$*Bjgbsf_of( zyJQeI7uUK!OAAAEyv&Ri;5b=^M2b=N&C=8DN&L$Ar7~{o$@|>Fo#fvp4a_)k-$qwi ziv`!CZKSl9Ca*YUWT00}9%YPAW{h=aK1}y+k@PGVSmQL14gM+Vo-mbhHduBC^H2lH z@Htc$ZYqt z%rOM>$E|XYmq(sSE#gssk9f3u8BFsg$y9HW+JyZPZ1nCR zk4bVAR>CQG5>|tWw;g*8%!cD|&>JKptvPbUD=tTj9oZ#E+{!XIv9}DyJs9_7b8KvT z61UDLNjvPaF{Ba4hU<-;(4BMkAL9HWY&O@wg_!Sl*sZ0wT~IZ(-cY5C+bNCw4U>3U z1+U0m+ZF4B{wqn;<-bX&QfCo%4~pO8iNGU*6y z2ybuYkQMaD3U8yVh-z7J^|9W?^~IMm$Lc1JSbKZC8$$0twkEp0O-XQ0(74{c#+r;|--i7}-4f=o5X^?T*or*qn zmZ8oqa*JD2zA$+0WIB6BUm1+s%f^_vAS2N45&qLM$xDK3Ws;L5i=CV0E2o?6)VB1r z=gA;Ns zOADL3i25rj7`PY8Ad{!IG7i{XaBK2@UIv*m?8(GmD?^}#RhHw@(m;PM#q3$Qdq_d9 z9}2TKSk}1hT9WQ0%T3JJ>BR5Dvobe1zI3zq$}szL>1wA-bNeXApGyxbN!CL-H~>ZM z)9fo6zC(Zi|5Vqx($T6!+bS~t`bcMchO|M(Y4#v#!xKym>|R{A4w4R*zI?6yZ^pHU z%L4(USYPdt#ZdbHMq2iuyGG|q*T_2TCDNJkpXQd7R_t{&;F_sxLMcg0s4kr&W8}L; zSH4SHE#D;!lllpta1C}4(xra%g4B1$>0~Fbv~$L(2kfG%taCz68{D$;8S~2)r@bt8 zYpUwl&%-XOhHSR$%0Bqo#BqDbGj?HB*SeOwy5@NU`JHD5FEod3&>o(WA{Wvn?}htd zm6W)+M3OG>oZ^LvFkebu+$cpZj*+C_)1}PCQiRXLzgG}nF6ESR7oU_8=U*Yta7jA< zE&fCG13ZWaY7-C3G-18aQY3LK^Iv=}wAK;6lkh{a`H^`gh$}qZX#Nrl%f>84WpTm; zSPDUrG8fYp6~Pg;Fqk?H*!sL+N|OH3ew-}$@N_u zc_48L=h)t|ow@4nB;s)YX>DYgtctdfS?mdJ^lxHq*hMazdogAm>S6K)~u5U z$PTWdhj88XwHLpK;4hQnSre#JxWC>*=27m<=*_a9HCj>D7O!WyhxJAUxh3HSSsq-Q zvc3)1y7qP^okACmNcM|I?WVdaPaj{9{FmkgYjm?NH}^?Qn@xG_@f&|LF9mx5qcdKY z{1@{v?=`26bKRFoq@bh(XO2OJ$aw`_8@-D&KH+sZ)1-Ch&pWLdg>mlq7>y^(a&ls6Rd3V z0%Lvv*GcWFC>!YXX^1-Wp_Sqp|pnM;mYW0^Xm|NGIwCyi~^iPV1=dCt=PWD2s`>70^U z=*fJip_JCO(cM(NZk(4puA`NYm6 zkC}Zp|#`k+w$j%7@M{DIqz} zpXU7hBl&ah+LV1^xL*@JXv^BCoBYmtU?St>ZqsLGO-{d$vm47|`-IHbTV-Y>yZpv} z^Fnm?Q>$#oo7Mv|M;(zNaXMq80~fzFWFIe0qGuQ<+~*C}mcl*y4zV$We{erNsUO!k z9i)jFPn;7sMjG)9gh!fk>{&LHK~`d>xxV45AB@d<%pX1F z8OFsL%6tjEnZxly*7z$7)OR#t8=0>rv+q9>cd(bh{=r(e0(<-s8AW~9qmx^?emsV5 zd|-44)&`VRUN8;@$^FhC^)O>;mX#or?4t4=^%@hi&^ZkVaxnF@=pAjoM~qKQpf5dzfsrUp7EHg&EBKgS21(AnJ;&9y!sKk^^KFN9Oq`0%)BwhZYpM9alAcVp0vlwI>LW- zdMGyxGx-H+Nl$(|IVZhoHC1H;+Q?a}z4C(f3+wtwD$kpws-fur(~R>~!MI9P1>G7d zkNXpA|Ci-WeHZJXZF0y0F~8XeNpVF_%71MnqWW<{3_$j_|Wte!9yX2D9> z2gl$nKiEowl0ZDWJD{uVfQY>SHo$AF2cF*bM#Orq_8 z@tr{3638ooyb|`q3An&&G(S+^EYvFta?A3lND|{PsRodiGnpja1rNj1{GP7})PfE$ z31~-F(r2Z;S&>avWRnfqWJ5OD8UV7%HVmf264(j{fc9p)ERwx2)P(ks4ijKLtcQI- zyd1P8M=H>tIheC^JOMAl`|yKEPShqR^Gr_UowFNI=bY3zCw0zAopT=Hr+Kt5S1Y(p zBsYDLn|3DmfKf0Lmcw>H&dJC*j|S$Jyk&th@_9hp^U?Nvv^`&cmb0vfPN`V-3n8;!qlw@bt^*MiZq5EFbZbCx*XNl23o+X}y zE%27eHOWvBnnQO$&#qYx+uxF zoKoM5ly-o=EsdU*z8xNdHSj#V4j+n?$qJ>QAzTl`;T~8D&%xX9l}K6IT$a8oi`>d0 zw{pm>Tm@(b{oq!Z29Jr9r)}j)SDthgMu=2Ib`_Cb#cDu46_H&5(WI15|@*FrZK3Y1fsaw>0ux8NlFE>fis)PQ!-5AK48;c0jg4#Q6( zRTF?btJ3DGHv+P)`hZBa+)x3o1@fqN3k(IytAF;01UOz7>8d1_huR zw1L5Jhe*BRuo1|+9(mU%@A~9jzYcVQfp9nM6uCA5S^)ie?UN!6azI&V3_V~J%mnnV z0eaWqAfR^*(YuD|UBjx-8v4L^m;-BJ7aWB%!uA>zgSyZe2Ek-l2peI)NTX7KjyDc-ouK?|9O#7NdfH+N%L6do~4)*Z#aQe9^ebkhGZc0BlrJtKV z4SPkJIY3`Fs|56Mvl{_9H+uk(Lo;-t+57Ol@F)}%0p|MVjKSv2_08u4bA9uDaExEJ zmw`rrd|Oa{%eFwjx1`@&Qm2-i;Z67gE{U|t1?8bB5U&;SS`n`mvTKFxS}%j=0Xek( zTBMDFJV1Th&|htO!EG>Gq%CRNlC~}7w%r3Ci?pM??PyCo+R|=|NPF^ZPk*$hKRRfb z2#>%s@G5)-86q7iqa$T>q>PS~(UCGb60aliIuftrC-AFCrz~&{TnpV`C`^GxunFFP z&*7p-=bTUun!rtfTstGzE+a*{=7tK;3~m8r)U5;jAkuv+3-q zcnyw=-0-l-jjiCYNRQ{>ZJf|fpO5MBlL!G zaF*K;Rbe6=fG^=P?+;*(?E4b$HCP15wBH+mO#59FNk^vX$RQn>rr!jVl}=gxivwe7 zKu!2YWZ+oXD>A4CkoRC@Js4RJM%IIGg$LkCcoE)*lOjV3LoIj^Rs-|IkRyPshWd~K zoL`61hM@ys5+L`X^yx4M3IXK}YX|+{F4ztS;grbmYCye*cY(q1n#c&^k0AaC;*TKy z2qBssf}Nbvrx+Yv4EDV9*DS!#R;L*`OpefbM`y z#>|41KznbcKDVMvx26GY97`L=(#Ekhp*^I-bfE09ls$Hz$ZfR$Hu`m3CwLFO6}jC4 z^y+rnbo&&M@r<+alSS@8mUqyOJNCjS@T%QWgTJpwaC?kNS|iOhHyj)>fgEbc`X_fq$nrC|`P1=@aJZYT#$0G+>Y zG~5SIz;5_RNa8u&oWnfWCU5BMg8^umGs*1Jv_@QzEm*h|I16zw%S^1Skr1 zpab-WiSP(K1FynY@SDg(^z9rUkl!4}_uSjzO_6!cMIO!xY48es2tSF;r_J-pdp>#3 z?*s$kZeU!@rydj`j|>IUEI?ihYCteKZSP1J^<~ApN7$02w^G z1>S;_@Vm&u+)x3U0rFdj{1zg=g~)Fqby#>=WKk|C4}>iuY|$a0e-_(N5UN94=nJdh zWq2Pbat=7920pm5#|B1c=A_~m84(! zw#cd)K>Ssl7gwDT9;Ja2KwDO4h^(RPHPxUU^oP4)8SDmhZ4EMATLcBS{!@`>DCe2^A{z=r7g#LvY;i~h+PjhZ zZA70p-VfAq6FR+VDlivrt^nk-nf$kmg5x4v2Lbck)-xi{k@h*#KKHc9wqYXA+b|O@ zi)_CRHi^7&BYY{cgTCKE-|u(=UV!)DTagznC;-)<4bbKnrvUL@+zp?LyktRfXaZ?) z2h4>{@CK02%fxw^I4>U*9`%4{MPBI&Lqv9E1!TI5zT4eLWKS*V0LXvOL_jz8Ad5Z7 zat|`w+Y8nMbMjvLdhc10eMwLf8bEiTz5Axa5+L7w^!L7VBCjR``uu8V7y+|j9qa<+ z_bPE-BhG6}f&PB&XOY(#!><>GI?xFi!>`{Bj{@y@{dM>Z&Wr3vKlhh`Mu2ShkA&|< z-dF(i$(tO%c`q!3=SAM4t#8q;136(V(9Z{!1Lw{I$m+m1B5xzFxAQ|)Xbs5d?eQ=N z)&g~ZoA$j;{_jMAdc9j39v3;-5_-cpcn}yb2Y12|_>q_Q_>cm%;RYbydkbJ29D#Ep zhw?&gxB-yaA@VsyK8IctdA|-E5&3|6eL!D+fV@9=N#rmxJWN{;)7B%nkFvMmS>zby z9J>vW$+2HVKBW&nr9Pit6ghqaF!ny9zMs*zCyE03e4Yfu;jqXTU4V2a$@k>PB446| zUovLD>I!d*oMOD4LJz-2&%T}u=S04tecvWPGm-Cx!3mM?uZ5K&r>ns2B0pgNFh%6Y zLa{NbhaM+#D4i8co;I+%gh7M1MNM3 zC;Oe0ec@U7kiF%_>`_yXOYiV(2{Qei@ZWcEKdn9(`%O3or-Aetv^}FRRD=f59(uws zpdT{m=Zwbz*=Ot&B{P6`JN}Neaq9bD+LS6M(l2C6Pzc*P^oK1>WP6wIeKtUqofI;T9MQ zcfkYj7(4^7z`LTdyHFQsLw4Tkl$~~D$3I7QAg>&E!t;QO{UGsj{@%iO6FZh$;dBHe&`P5nTIm+&?kB6 zqkPCRKmAo86?j8XLE2F8ZBd1gV^>HVbrx zZKBGR2FfXSOjP-sfU?SeBdS6kpnob*euYz_D&~W+K>CUoL{*vqFN>;N5nce~Q)QN@ zs>G{GK2=FqmAeobE2w8p&*b~_3NNB^aaYRPFt!kgv+98 zkWY{j5 zovz;+ZiZnn3DA}LD_|>-raoz|9Rt&WIyRt=4QN*b+SPz|H5d=`;03rSs$qR-54~X& zOat2IXq8j;78fa4!^rPtnQSA4qX2_)3 zL|6(h1Nk-229*GrHAlY9nI~H00Ccj&v+#zfmbASkek~gUaa#T$sug|Q>Mo#etvx6K zHG#fvP2F2>1nS%-FVLZ=t6h&wR;Po-QDj4;&guo z7-!wz1Nx!+Z=$X*0_1o7V3-EWULl&q7^wkZFiyM*ajpTFVb3j==ngVsYsXVlW z<#0&U&7(x!(o0lN^6p9h^~wskd))}gyVvKU*auR*(cRQ{;k>9mRe(Ix3P2Y)E~+ni z^hK8as=_SzSX4T)NJkdw_rgvOOWP+zaG0_N1uW8o(z&{l}pT<2J({Ku>R{+}qOt zy}JDuQRC5*JMsZ_x??a<&Yg7tIo!qgylWCHfZc#hCS(WP6De~d`a0=$QFq@dYBKGb zTneTE`Z$I0KIO2eslDJfQPY?grsW6pdfHq-e$!rn_e4#<78q00-w}0BUf3#X#%N%y z-`fOk0*>#!51xRZMa@M2XO4&aVF_#i#>PzYm`S~6{wV4`fo#CMecyF(15oCD)bD;| zcRzK%pZ>Z36*wpAfr>!*1Jr5OBvG@wiF%O!e~`KC!TRudb}2NfR{xry9F+YT8>^kVM8t`0m$Zw zPerZh3O|W@@?kh5YUNFUPOZEHC~qZsuA)CzbpiZW(Y95{arIC@hU}H7HOOlXdb+k6 z%op_(AK)w5WCEfVQn;Y^)>ybq~QBcmKO;}zyVPk`T+TEcnhe<2GT#904?Dz_*K-#v4HMvM87swf_q^r&@Y?LirS2xZKi#j z>BG&$*?daW7W8Hdb>4#BZ9!&RCWzXa16~vL9RAO}Dr(zapwG6Q6!rY|z?j@l|8K7d z*TED(cH7DO1^Vg*WcLEHdx1XM(Fkzwp#3`-13TUZ>i=SHpbjrp2HNs6{qyoNI0)2t zC;he)9ob2KJ6i)X-#HT&!dlo4#NBxUE{J+13T2@&bOz-0%4Ap$#N8Evj_{(W-Swai zq>9>;ABMw3SPJOV9%R1C-#3W+W+IT!o80EMZJapTlb4PfJ_dw7xlIS*8n>7c0YI! zJ{0v%SNK`fyW@en9i)x#p`VBPih92nyd&y^Dlic42K4R&Wc$GxQHRlw!=H#c;sg47 zg!o79fgSLJs1J+7a3I}>^y!E6>4(3GI*P6ytqauSD0MtaosWJi>LdE;Bjo+jOjrTv z>c_P0<2OWoauXoWPkxGVtc0jz=-07l;1zfezK0A^pOXKlwE0tHbsU)Od!; zKBwvP(~ki4I{m7sAL;{T|EOUxybj-q`Y9{WKK4V@Pt@ZlWc1THQD^WwLw(LH1>*fo z-~W6&AfsQ9LPWyh%7H9 zK?|UrzbC^qQJ0b7D6*d{tpRCHeQ z%3A}PK{x0pI$vR+{rPEo0gekC7G1Cx@RsjFw7*C-=mWotP9g6UWLlIwiVg&1Tom~i z-3cGU&!USZ!gVkPHj6IqLS85f_2H!G5(!WM$h*XyFb|#)&9gT88v5g!kAS>NTCh-b zDf*(+8quW-0cDqN6DJKDofjTeQ!Oo|(X@Hnu5xxr>X>1YB;SeEq!DYN`L<9_Y_j_PIa-w7Drt1#FvOf`8jH$WFci%$tKw)m*ggX9?2{DB)=4pf>KBd zOA%5R{SR`<`9G3Nj=#x;I|)I3iu_xx`sZybmYOG(9P4v zR<5F}Vpi3KF{|k)W_5KIvxYi>SyLUrtfjVN)>bPq>!>+tW2;nF6ELf&L4Ah|?63Ov z9X5QZ>X|+&HBDW|oBfBVx`A0eFe?tbb?7Kndibcm!&J%$4pjcp)I{YPJ#bjMN*X=7 zausD`R+S5w)#OLa>hk62TljJq4X zt%QA5-tKH%H{;TQ>n2?0?fgo5n214a_Ih#N7?__=z*nf&_T=VkiD%1Fh}{gYpB{G31e^};XEz)XJ+Ihk=~ zMwJ;;M39P@wp5bJQcbGk)`9Qf4ujfkZ1r)gt#$0$Cu+Y|V`hzEHM&-vRprYn?^M~w z|JW+stJJKNtCCysor>!#PKLhF6pB?`U*R$wfekPndO(iyJIgOA|6uvL<-RLdKi`FX zQ}YeV*D}xg#QKTRgd6_&A3gmS|2v{<|M1^CS~&7fWW7Jc+vm;j(!Hi`ZRbm;x}9vD zwr;lST6y(l{e@m>oz`=7b)7?9Q1f}8wo#whw;gVla?UT#ug+QLH|Lyl-nrmhbS^o+ zJC~gdS6t<4*K%#wab4GQeK+Dp-2^w$&Eh7xS$Tthb~lHc)6M1Pc9Y#aZeBN^o8K+q z7Iq7|g~-1gUsPzQo9oWHFJDiXspsicdbfT|H>z$cW^DK9Ye9g7M zx6Jh4%W3&Rew3f&jQlLW$ggr%ev@-@UM|Q*xg@{yoOp&}ge$EqWh+Oy%3~a8{`blU zl>CvLV)R~JFQPL|jLP)Wl$S-H(4W)eC-s;5D}73Tt-sOV>hJXT`m|{&vL`QnL?01b zAJv~R3a-x4j5Qm1m+{JZ>3;~}%9oI2r=(}zQxT@ooQrIykW;~{#FOqOMoy=MSJF%U zQ;Y&mIj@2@Ac&FGDe4vXdR`U7yx;b}DW`wlYHKv@cCVIUAcK@Z1|jvvatA}+HBk2~ar`5~qZKYa$$StM=ma&nqp`_A((xoC&gb~n_ z$8dY=DLfQ8Q_qz&bib|)Mf;oZc7`;*5VFF)#=b^21z+vhY&YS}5C`nL?dklEY@xkK zJ`cXjangRteu-av9kdV1<>1R38TLv0Btk!Bf31}LgZ+cD9N+Pk?G$zjD~Inm@b6;ia6z+ z3Qk3*663p)SJ|uL4fFm+GZmHFC5(&U>XF zkp=RoER;pESRRul{2K1@|K_aqPsjK_*IK7QX3NTjZ9{U|V)I&{wb5V(EESB8GQs$$ z5R8wCLI2ha`nL|Vb5?0$=4WZje2~mEEoar( zXffXkGUpr=)?Fr+N<7K@`4ekxl)N5{VHYVjvPT6 z;fn#v#3GIfVU7345W-j^hWV?e()OR7?f!JW`}fXx<}7H=fw?&Q{nZ)q>hSRF7}|y0 zLa{St=J_&|!V+rvy0hPT!+Fzr%Q@h@?Y!f>>l}36a}M$UzVm@|*g4{S=p5z$Bj;o1 z6X%%osdL=<%sJtF?tH=bb-r}Ia!xs4JKs3pI^P9;#^>v}`|rZPcTPJ$I6pd}ea1QC z{OtS`n#i*4KRv6T_``X<`@eN&&wrI(rl3Q`f-!Xs8dS!C5Js9n4uN$w^_v-*Q!q5|Wjf;2+B??@V!~I@6r##LfDb z*CGX-JDfY6i4J=TndO<>{_48rN?gvplvjq|OqF-a^PQI|l#p=M*rF1<7{ha~MBxjMc*m=xZLJvG{`hdJw zI8Qn&omKA3?oRg=cbB`{-Q(_c_qngSueq9A%{W z1R7{0l8OXkvi7ZKxkl||@*)o-O>>pdFrj`zN`f2xE_%?v*>CAr_4B*OkjZ*?p*z*( z4ZUuAx4v7NalGHz=B#xVIy3C@c7EHne&icq`>oB^Vr#NBjO&o=tddq#|Dr$EyYxyu zLpSDHH=8=APN@BAgIb^_s6MKts;cs{*7;5j%685?Q<)Pjx1-z9JeR^%{}nesO^*WWhSX(E`CyC@^VfkveU*_ z5keO~K?!nNf$t6YzLRKN{9wi8!wkPYaTdpoDa+U*wSruh^Trv)YE%Wb@C64`o8I_w z_6Tedqxp&+HTjHkMkO}qnAT;wg?BZW8g)-3AJaOgd)zG&e3K|K8~(J89;+X?g|oED zt%Oq|!JIE>UEC#{!AxG!gk$)d*2P>RZSYqK`|zc8_L;yX(%R(1H_|>%*gy!a3v7{A zCKr28!UBA$RbY#>4Dv8D39UQ>9E!bV{F=o>62-O>`99q_)i>}r->4#m=KE3BaqGBh z8~8Sf`yLZlAB+84`&G>#tZ_VSmpJG(|JHiNzB0KqiifObox+#@ta*4E|LfxZ53-hd z(7KZ~k@0O9_Z`o*Xgb<&{2Ijl(#bnL_Af65Ax8I2J-If~ZOy;LG}CCl@#o8AtQM>D zi(`|I(R<^|J|r0JjA^{_i*nQ_@G-h>vF`eUFMaSOL6ZWEu4{dO5u((IxS!E;B_;7W z5ce@UuJvl(7pMRieQx@8_n==#B32|)G*Z-xMoL9WSqYIckup|d zq(Y>El_gR+Qq@Z0`*F3c?2)>Wx>n9e{YZT)m-&jEl{<1*?zX&Uvx{l>W}~WiyabE)OjorT zL16xZI@@)LyWDQAQ*ecTB?+6Q6U}e7aVd3yG|U-tXK<`-TYZC%O;|_%hs1oX)9Mgo z+w2L{WzR5{awk4ViC2>U#&N%O`0XQBj$nt3*~fjzeLSAWTJ<2IYbncIjcZm?|FimP zG&L>I%f5kL_6zj#wm>7t1sZv0ppg>;jhqo^DtJaSi<=14A$%QCYh_Z z=4@IU*plVx2z+)-|iawd-W)LhQI4R?n-y1PV*l09@2fix!zoz?k)5d z>i*th?=d~VTj4#a2YH*l&3cIWTBaWAec*kdhj~Z5BYL>^k@t}vVZM{8M|v4vh92Xy z<*0A;3EXBEN^|yCQnE zzsz5z*Z5EPtMpp4H=>{6i>uzC=&k+-{s;Ow|3m*Hz0Lo` z|3tswANN1kJ0dBO6umQ2EK*Xx5-A-it@p8`Qck}bsTirGUyoFaRMT&m-4*?2q+X<+ zek*cqp_v$PCV2oz{Z@n(MV@9QpC%^FB^@62`gbEUL6Fu7kE_`DwY7;`rH*zR+g zF7B-2XUQ@4U-vWC)^W|aKxT1WJ)SGUbmA(v#V|T;$>>mGcY?{6=QM`!}P>z z!aD`)D4R1^RoamhXohBXtR85H;A?b66W%)RQzh<`m%XjneI0W>&0YaV%2^Z-P2mn0 zJ9$A`#Z^+JAhn`A6KmF$`eZLDe$tYpl%$j_uVopLWkkYGzF;Z|k0;DexIbZX!nlNC z34IfKBy>z@&RVZ(Lg|FU3AqxY2@*Zas_#VfNc2E-Pjq{9Lv&?yadb{}Msz}SOmtAR zceH!7ZM1Q;cC=!&L^OXiThxtQikxBm9*Z1`?2qh>Y>ljoERQUR%!*8njE{_nq(^R! zbdI!)G~nC0Wtm@+BZ(31pYu=qU$Argj=#^};cxU;`%CIB>o8B&O8(%hF!5sadH{H9_8|4k~dU{>G*4}kqP4-rc zd3n7g&vq}kKe}JKAG-%x!@uNicGtR(yYt=q`RejGzR29yD@p za7XDo_M?ulf3=6z-Ujvr7NZq2oC(etXApY{-JQ1VJJe>6wFEo4*&NrtWS?O#`xxJu z-f!=;x7zFM<@N%5mOa%TZ;!Ck?VIh+c1yc~UEMCrx2}`zL|e1^IBk8wx3k}|_E|fu zjod|AV$HK=T9d4?))1=?E9drH8`rg}T4k+bR(>mo6}7a!pwDn$W9}DK<(^V8onPnDN!r)i-HA^13d}BnnHreg zFfFdFd&ccfaofZ+{wA)mO>ASw;-j0vF}o3QI~Jeag!pkRey4c+Uh(+7;_-V0HL=)_ zh{b1LB1qRO9=}UGewTRsF7fzX;_Xqs0lIcp#bcJb+v|?$Eyh2x)*2paM3)338 z#r%xqLRXm9NH6pY(;5keeqmZ8#h9OwW9SOg8d-*ZVOk^4n4gho=nB&ssfK=GS|i!e zFHCEs8}l>r4P9YcBjeC7OdHDC?2pFM8dof>amCUaS1he@#nKvAtXyQ9nKqQO@e9+2 zayEWp+EC8K%1mo?)YQ-Tg=vkRhJImMqpLB$P|jvAElg`PHVh5Z8m$fe!nC2BsZ(a! zP|n6LOdHDC_=RahIn#>Fv__L-WrT7zp<%h9oM~;my~Y)*vvI}J8dt1bWA&c-inZzyNu7q&N)Gd0Of8_L=Eg=s@M8^2guY8)@uxMJlRSFFy)6-#Se zu{s-9m^PF%t<6ju%GvmZX+t?1zc6hmXXKNaHk7mR3)9lhKwpesn3g)k{X#h-+srzL zayEWp+EC8;WTp+}Z2ZFZhH^H3VcJm6*(}r?3eqq{B&XgKYYg{oo8&@o? zamCteT(Pvq6>Bf`%uE}~+4zNNLpdA2Fl{JjT9%nMl(X>*(}r?3eqq{B&d4G&Z765s z7p4v6Z2ZEsp`4LkX4+8B#xG18%GvmZX+t?aDt~wyLqJttzS#+%3tbT%Nu;!>;NvIm9Y&r)&+@c?)F@cL64|(i8cFf<@+#H+Q#_VqH+TiSHatd8t zGF@S)$uAaaatvKzsL3_vXYvhQu~1URLyapIYFuGxm^1lihMN8|xtO^jma}n%X_0CW zN?1J9xMHEk6^4d6lQJ_j%-Qr(EN9~i)0+M&XDzoDSW~U>Ryt4JbhcVr4Xo;1yQgrc zLF?1(u)m}Cv46FZy8=siqHLxftB2?tbbGGRD|1h*pw6Lvby@wQzEB^lH`N}sS*=sW z$hS53(8{w0NV06M|9|B9sE@h&e@$=Z%74DTUyswn*e~nBPFr*K)_9VXYkeLW=MLKu zb%1=fbDz!V(*0^Gnlwb+th%a}Qd?hQEpdwb8i!a(?9^NJI@S>j^ejD=x_X%fF`|)aoN~ivvxntOXGRmqHl}rhm=h05{d;O!lA9Wx1O18>+S;_M% z^V##5&dS}CZtgBGcAqw-Qxmg>Ssd7%f;yQI5cBW#f0%mSHhZ^HA3Y)o*5U5Q`%OnlKR@kg)32fY$MgFy=I5rbMV7b-P87zxE!+g>F(E`ze(L&L} z(IU~J(PGTj{LM2;Oe|)Y8^g+L7V0>bZp_xr5Y1l8T$ny95zZ2eS~Hn|UH8s>e|qO3=3Do- z|M$2zdj9E+3z%8l(EUHl{XX}fexE?z<@`U`{Yt*O98BD-rP$T`l=AlOx7l5u_KR4l zi&l>|phTvY_VTriXKO@jMr%cDN9$l^vK}*ZI+rSSQs>v_;0sEL5N5^oA}OWduO;8{ z*Yg*wz1E45@6SR%_5~8>MS8Wa_(ORWt2>3H`6nroNy4;cfX+zWBSRQ@@e&{_}tN>hGUV z{cgIyd{u?_pMKGAz4|)t%c^zoTa4>!>5_DZ@u_GG6Xkbrj=%fe zf2I1}f3728{MjS?T-5pEdvov$K9NG_le-hSo8}pQOI&+6SL9r*_a#<=cXY68pgXbb z`R~8++>fKUvM!y+wP{FPa00(93^+hsYfAJTcUn`ram5Zg>{Hf2nzyS>!hZJL+JjhR z%;3%8E#xibt%?pen$gB&?^N$X??LYo?Y zkqcqmzjL*6=W3n1*SW&p$Uxng&sJ)5g@HD~8)j?NXmguTZKs9nw4xtgVO zHFM``rp^^RN$ranJ6GL1S2J|3*yU>Pb?aQQgVLT+hwUnLSDn@&I1ee()&VV%cVy?5 z_D%?HaJaLtacv;Kb-u!K;s2fNk0zed>W4AALhb6H&eibF)yU2j7HRh0u+G(iovQ;n zSNnIa*so$=?Ay6wZ>>GsyK}Wy=W1x@YR}Hq9-XV*J6F4Pu7-53cI{lTkHW%0%do4R zI#)Y(t_F9m26e7>=v-~zxnhs5`Lb>2iXAfc3_CZw+NyK4W#?*(&ei6ftIaxBn|7`? z>0E8xx!S06wPELKgU;3ZovZaaSL=4J=)){lYj>{L%WKcp>|CwUxmvw*wOZ$@-MMOY zuDa}M`Tw^)htt@#&JA=i`a_*Vw-lQ;rvbS%(?d?Jc{46vTc!Jo-Sh7AcaLUxZHCLH ze|P#pR`D(}mertalH}7EiatDr(;36V|5>Pd0Vy z%iG88cpmJv8quPx4_{Y5rQW-~aQGAJy%&XByLH=5S+Di|Tl@o=xjDic&J4xUSahD_ z>@KKz{zOI+6NncU1i?>Sj}Css9Zsy5Mpuw^eNqv;$j_zGGJrT*K2tgDY@H1XsEDuEw1l zT#7q7xEyzEa3yZ#*F{{94=%=?Ogrh~iAK_mHdLOUi#sMb2X{npzPuBhjXNB>k2{#f zxu$j*7OrP8b~z54*28LJnAP0BHk94GgV zqq#mbn1VYoID;qK1V?f`DmV*wOfU&|L~si3QF6KgAyYP_;5go#Avh7Y8~T)=WWn*c zNpKRsjtox2ofJ&Q9UB~rJ1#g1_u$}U+(Uw6a1RQOz#UHi@Q1Rg%@mBmpFzRF{5l~x z1b1>U4tI1w+Z+uG#^O#w)AOUlu@1&(v}jA)RQU*K6Zv`%+{pp0BHz*a5f@rRzLWO! z!+fZ?rF@j}`?#X<_hzwudy)vUJLF6|N@)E4wGt zmgN#W86PZ;J0@5RcSNux?qn>m%GA|xOW99{)`Xi=K79cX09g&J-Oa4=+5=1U|z1b3g+i} zOwbK?L@+1rgkUb7_Xy_WdUBB9j>fuHN_keUM+OU%Q(p%&a6L8NU0v~rm5a3Ssf5#mb)Nv;< zn8k1ZH{9Xq>(YiL{I?0@5a`BM$_-xQx^+`)VQa__x{I}B?`{PbVP9p}G_ zJAB&u=0D@UdYb2x{U>mT`A@nxpK@=ydhb8P^;rL5c}^?!ry5pCp)YlOyf1CUDF0U6 zG5*!KBm7HoNBfr%PU1_;GSa^mcP#eE5+i9%4)$-sJ;c8TcWR2IEt%rqh&vG*PvZCI zHpjov#r<4@kN#0ykM)nm z9p@j7doXr<5*ulu59ewE=TiJHq!WAV1Ndr+e-Q3?e^1MLQJHa1@JK5g}ceKA3?nwTE7;@hM^fb|C)Br%i~z^he-+;qSxq z!~LPS<9ulg4)*uPJ;ay#|EHeB-^%6M7W^{7-x7DSzcubKe;eFM{^q#j{vaXi@MMC& zHttw|P29u%b>$s@E!?T4)pEWLxur1xTE|TaL33=HRNfAJHe;UCq4Y>xSs60dhXL+ zBs2IiPe%HY%U`LHV}0r$IZGWSXMLBmt}c4i&iE}X(IscQ;~wHsJL7+Ozv8~`{fzsX z_ao2$l-J(Zk}KZl{4&A&3U{*iCGJ@73*2$uXSl-|rLWD-`c<*&oTf+h-r%?K-Y2*d zy;pEYc~Ymxcv7cFcv6oic(3D5_Fl#v?Y)FM)_V~bnG#*Xdz$MB-ZS#+A9V@uA3Pi3 zJ>hdoEzTj{)wl+5dJvcJsuuT`|}sgfju)4lL@>%!8;UpvNsNQ zq&Eh4m^T)8oHri#5bqG&s!UxaL0Jtm!!KWww%(cZ?6hkKjCqwsq( z$HP4=wArIL%3B|n^4OPscLJjUC~@d$5A$A8<0drK4Ic&~8z-r#zK*TkLR<+zi* zWpRgjCGI3|IoxsHGPs>K(p!YP3ErZ(lf8xAFMrVSy?Mo7nOWqmdE8rb;STfW!=2>K ziTlSAqXne=XL4_LcW=&!JI?Fj-lXSZ=AZmyPH`0by!Ni`#_rT@+1=2h+AwMm23m z9ws+O6YoEyw00qHOkgcm{E~V-n!n^KzFdGi4vG4kJ{yftVssqtgxc}A!;m@o<^HvN{JDO#A$cj!x@iA%yz;(n7o%fk=ivJZPrO`(*FBh)Th zwDjM!XW~;zxJR(|CwV;`?kL&WKpxa_N3fD2@e!S2GMcdDwaE5J+GI)147lSs+s2RI zBCe9lQWp*(){?Rr$vx^jXN$S|&N$lDcg_~mT%N=62xLTad0zNnLhk8!1p5W#UZjcC z6T_8i|J5A%K0jG4pT1hz#ZxJq`G?RI`1lP5dDsvY_;fr_%CHC@9TeA z;bgxX{mfw;Om$a$7w*0By|_=rPvAZiKZE;P{4d?PYIoNkb8mu!c7U_vP*Ba#ugcO>l1PVP#GXL4^sJd+2K2XTK)e#HGH zVJ#%}Q`XngBxS~xodtxO&ct8p_SkJu;;xdeiaQ`(9e2%?m7sL}bbs7oDQ6|7x23n? z-jNbY`ndb63s0vnaQ#900Xas^U~T(i+$-3L7O@lUs#?ZQv>R(NmiM zrp$10@=9<~a87U<`vHz-zuLH96noc(vJSL8XZmc+X(nCR7WEApSQjlE%p1(X-hgh{ z2L0y$fNjt}k(2BEbNne-*bMcz#k!{LuZn$5&bd-*Wu&VsV#o8E*x1PL-hKKz);5=6 zZF3qnJx8-5Iu47Q{k@^yAZ*XpMDADi$hq1&|Gzp%;}BbOI=g;u{XACKzKrNm>t9Fn za!SH^^{+Uqq!(5Sb$;a+Y#`+HgtO&$EFxOGIi`LnF7HuN+dB5^Uqo~B?DL3Tx&B#1 ze_a1Gq7~uf4*4bE3=jFO&RGilifzSeTzAPkSX!|Aobzhlk9uH>FlT+a`X^W)1e^u- zaWoq|d;OzmR(_d{-6Q{wX5q;!^$(+&c``Gn_Iwb{#MMlkv?1RI>@9gOnvo~nIZNc- zs5@6PaIVNZ5$&P#*LQyS?z_Og^4*)hdn@5Ipe5u@>?I1UHa4imoJ~SZu%O7X<5-{j z#Uw`9R5Y>dSdSf0^Kya-F~iQHfwjlFys?PH5X+0@u>V+xH+r(~g_vTEu`D(rYx86t z&ORZ=SZFMRoyb~zv!KKrn~kNh99fe$=H|o_Qh*)DQdpC$!IQZ-RfLpaTd^b-CTNQF zwI}*ufG!2*|EQ=W551# zM6XkSDPoT)C-J-(`S6|f7b5C${dpQqpEGEFXaDKjj(tw0`Hg4K)_>)_J2} z|BU-o{U_Wf>p$W?QU3w=@%s0;kJZ1!{YU*@&Y|S& z92IPz{>DZpI_tl(h+^l~GM#g)c41Ffb#|3sTZ|S|+E6*o&U2?`O;?kX<$AJiy(%a6 z9nHvUY41no36^oEL9OA=!&{5?@P*pi?o6ol+?i182kl_B+UD*|s4ZzzcdhN{PEp$_ z7|HDG&Tbd{F3u`oH?a$=?e2EL50#YG4&bbc!)n7=={~kLs(yU^_}UoOx=*W(byiu2 zIUAyh>@z>McC53|I?nBsKZD(93)Rk%v$ksIaoX16wF@|LYbpMI`!?~mwTtBJt=c7= zzBRaZ8RsDGT)W(*lcfIEsNDnoi5i39KoX!fJCF?2DK48eWq# zSqf|{dwIRRKG?ubRY~%Vca^ zk3tfT@uqmkVmp02{n&}#N#4ocDcCfe=AG`H;hl-a>e=2o-nsO1=VSMCA-1s>W5;?a zJ>TWnnqG-cbu|{V*J9mzJu5jk(kI^R-QwMf9qsMdyx!^E<=ySwpe&R`n>mo_ac_KFJm?PDn0J&Shl|5z3IJ$b;CRK z!S8wRdmmu$`fu+ePR00yQ!zgCKF2!gORQkO#v1rrEFr$fUg<|p!2B88*k7>`{++7e z`Mw|cpgjtKL@p8E`M(H)1FvZ%;(Sl zf7PC>f=1CFtKETqm)}BvSPeVjHP~;s7TU%-STwJPE%F9f4{zje>~DgF?`GIJZ-IsK zR@fA8gHE!YzrDW$yA%gwx4aXU#=H2t`a`e=-W`kRJ<(eB!v1(4b~5gVjqm~3Ne{zL z~cGf3i zX>u}l&8M`Jt=tNm;IYtf>v zNBh1J%jla~)w>mq?RGTqJJH+jMsvHD-Iw>HYdwfn_rs#YVMYCz|G58z|D^vEw%*TR zqx~GM&-4BZ{)@CfFVp(Giskm}SX{s1zv;jApHF`DKgY`ZORTfM=G>%j{qOwm(d>T2 z_WNi57ynoEyx-~Kyuc5FAPnk3#Hox)kg`8?I`qKlu@mne%oy}QE1Wr)C73msEtnl0 zaZdJ-&K=AX^h9HvFPJ}AAXqS12>o%9V9{W)VDVrHw8^EgGhZfHHdqebvdPZV0t@zD zLGPds+GaoYqOK6E7_5Zuxe6BP{W*1KAev}P+Ec9E*T7DFEn3xe*tfb~uzs)sHt-vv zt#0z4Pxj+nh8=^Qu$SM3c6bPV&hG4d-4jiBuVC+BA6n)8(0dPHKkTqzcyJJw^&`=Q zM+XN7hp)Eo?=(; zGr_aLbHP7@=Yto57lW6AmxEV=SA*Ar*Et{S4Ne()D|kD2haJH01@8wR1Rn>kb-_Tb#3nZsGaS=nzqdpJipC#Q4G9nKT>4Cf8!V;AxQ;ez2p z;liAOu_&i^E*>ty-sGh?!)qB%Qd%x-gv~Gy3wA8`3VVlr!oFd@aQSeBaK&&X_A### zt{V0a2XNkJSJ(>M;cDz|UL#yHT#FN$)(O`Q*9+GVH(<~6M&ZWcCgG;xX5r@H7U7oR zR_uh{CfqjMF5EucAsiGA4tET9Vt@25;jZD3aJO*xaF1}$aA>#}yQcRE_YL<8_YV&U z4-AKe!^4BvOFc3i6^;%M4i5>(gk!^T;dpjf9~vGOP7DtZCxu6Zlfxs!qu6(SOgJSx zHaspoK0F~jF+3?encdi@%88`m8JtLZR(N)JPIxYRw9gMO2rp#){^IbG@Y3+I@N#x; zUm0E%UL9T&UK?H)ULW2N-pGFLo5NeeTf^JJ+rvA;J2}ntZdU#84etx@4<8603?B*~ z4j&00W$*W6;p5>G;gjK0;nU$WoOk*hJHnq2UkG0eUkYCiUkP93e682nC;mqGX82b4 zcKA;CZunmKe)xf$gc^PnejI)hej0wpiKt(MU$UqC>+qZK+wi;a`|yYGM{Es#W~ceD z;cwyZ^;+Gl`}Lq6*6a1C9&>tXTF>g!)w|WFH+#Jva?&NEi&+_K%cVqt^x z`EpL^E3xhCUGKwg_kQ)|?KF;+IWK5c^rQjxfq$}&UyGgb>u^rfdiC|O2iy?-X=5zw zH${WmyuL+!%lcOJt?S!3OZ)AywIB3{6ZwX)w|@8f9`!xzL+g9h_pa~5sc8GLH5ntk}3v{4_6E;e3IJgiS-cmAaM5%tOSBkM;wJH#pVV;L77FQ+bx zH6qp;r*cN!e?0TAehKG~T~@zb&L68^Rlk~D|JP#Uaee)U`i=FQ>Nj)7-K}!Ar`W@D zuFu`|d+PVr@2lU>2>}n*AF4lGf8;-&dpYf?m;aM9FF&<&EWdOoSAO&V@d?-SxU)Ow z`x|@uCH{8jK*{L2x7$C^?{9Vi42-(i1<+Gh)6>y2oH_Aa^v~$|=mk!E zdMSE2dL??5lPF&29K|=HH>0pW=h)!|31G7JVFj5`7wd7JbgC6<lN(@t*O}c&~WxcpuL6*e~8cJ|I3Y9u^Oe4~j>`BeBF9%{f_z#AD*I@wj+=JRv@m z^FJnXg8ZcThiSbGC$?+-ishkyZx}4@D=V`^~#OKE6 zai-P<@rCh4@x}2a@ul%)@#XOq@s*q_a&>%7d~JMPd_5;V-5B4*nL@Y3x5l@{x5szH zcQR{wcYF`CruT6I*8}l`oL~QN{7C$0{EzrCP9}LGelmV4ewvxoXXEGOBx}wqd69FX zUXEYkoT%60*W-W1Z*YpqTk+fRJIt=W7r!5W!2IgJIossp_!CZ%`YisOnbt4kui~#c z@#I^XZ;gM5e~f=(&h-~&Tz`vyPdFwh@sog=*E(lSG4qB`YVZB&#OeC$zLUyJ|H~2wfvt zGg&KHoAbKYWtNwdtdb3rjbx@b*_0ElHcz(TM60bhOLUuLTV{K=Pj=vpm%+)7oN%=> z=UeTX43RUwIr(MJWN5NivUjpivM*;{?VlXLtnjd8I47Kq;MA*8$>`)@&b=DLsaNBY z@yUeb(B!aWB362nI6G!?a%6H;a&&S`G9@`SIW9S#6J<_JPD)NrPDxHpPD@Tt&PdMW zoSCzeb2usMJkH6wAh|HPD7l!^XD&@HOD<2YNUlt-O0MSYtZO-w=KACY&d<7u)3a_# zZcT1WZf8FFPG+O;PVQkg`o83TnT_WBnun7|l1Gz&$oX2y6P&O06sOuelRTR|CnvIT z(iSJOancs2lyfTE>zv8<24`)(mAsw2!wER=CGRI6Bp)XKPCiOL#^Uf(&c*pW`6Br; z`6~H3`6l@``7ZgM({g@HeoB63#{1Xgx8(Pftwb{KorY;WjnY_Vztb$8j`{ED(;3q4 z>5OR)X2EApXGv$}yq($8Inp`Pxzf4QdD5QgyqpI&f4V@rV7gGcaJopkXu23DeJvs9 ze5FfsCLAYyVg1-lb58pz(_U$BIU9~Mzn163uN67(Yh{^JPx~{cJ}~V{TWLF8jnjSB zV0L}2bnSGVblr44=GZsj%%6?YjnhriP1DWN&C@NgsoaW_fVN4uO}9(8Pj^TMrGwKQ z)15dUXqR-?bV#~ex_i1ux@S5x-HTI$_DT0m_e=Lr4@eJWu70?jFvf{=qd1T5U{0eO zBWJs(<2hmI(Dbl$VtP0yjUACrPLE8F;@qKQ(kbb&>2aJpc0zh$dQy5arxBgX`D3T2 zXQXGQXQgMS=cMOyM$!4{1?h$9Md`)qCF!NY3bMWxAganZD*OE1zDKYvnY#MbV;);n=b2? zO`pw>b>~#39@$LU%-Jm2tl4bY?AaXIoSfA(cQ#MfGn+S?FPlGGAX_k7h!dO^$rjBP z%NEa;$d=5O%9hTS;asQXvPRa-@~p_ptXI}M>%(bJ{j%k=6|xnxm9mwyRkBsH{+t0d zFzd=%Svy-TTRmGNTQggWlcCnh*3H(-*3UM`Hq184HqJKTyr|8x&9g1CEwin%t+Q>i zZL{sN?Xw-SLD}GJ$84u;=WLg3*K7!9OYNTRk?olc&GyRn&i2Xn&GzHOsRObDvtilr z?4WE!HZmKPjpiJxL$Wd1*lb)jKAVsonjMx+?C9*6Y)W=4XI34b zosgZFos^xNosylJotB->NmgfOXJuz+=Va$*=Vj+-7i1T5zSYIqCE2C?b&|`oE3zxI ztFo)H0=_o8F1tRvA-gfVDZ4qlCA*cgux`)p$nMPU%I?nY$?nbW%kJldtOv7)vWK%r zvPZLjWRGQ!XHRf$)>GNj*)!R**>l-Hv*)uHvKKi`>*ef~?A7eG?Dgzl*&ErL*;|~k z^-lI~_FndW_CfYx_V4VY>|;*e`jo$&@_F_}_GR`}e8A8ljYip29#|R|#tq}@_uTG# zIc~Q53%6Pgeco*7`_0b1`qv!TrSEsOlw0~JbHwM_f z`rmH2^fcQI4X52`>+b{X`vLa-0QY?(FU+3-&L6T{(_eN~tnq92weS1d_kHcVz7~F8 z3%{?0-`B$LTZQj_CtVs&W1yz9*|PF!>+fZkm2+wNqWMq0TmCfkyS!96X!g~7Dx2z0 z(NDS2`Mr;%ztI?|+_dkTnxBoP<|C}}Z`t#_(0DdA{~JZyr5kzF_%${Cd}rlp<P|K+?(Bf11)3kUrEgzfuU9)NBs`=H( ztNhBf{95`Q@lm;I>37^~dA6FC4<;`yl@sK(dT!|&X!1MI%1P^Ivt{L)mliLT1Ik^~ zS5$Ij;kKJ5PZoZ=Y4T+8Xg5usG+&x+%a^jL{*_iw%ZAB8mxkM@!q<94`dqy8W>Lw9 z$wSNXv7gD4hTCZB`;BI<^`Mzsd9^HEZIeg+oo2!P4m*Ef_dD$33A^uL7cT6|19s_$ zUH-#XKT0bvEjQw!@ys<|R2$28ea^k}AJ+13>V2a$xi7Vy;$G#d)bkAMpDrG7m0$W^v+}2~a##PU zNBVwV)pL`_metQ@zbYR!UWK&}g|+|f!qQz>x~q0q+nHv&aN)z2?!wYtSh~CH`!4&w z%kr(u^4IEl*^w{jAM)hJ4o2+cf#rc7o?7zuI1KZ}O}4mwOi< z*u@8S@qsOTEqCrM{HBFp)tlVHS9zwpw(wQ1xwr6Dp1HU1wfwlZ@UtspZ^g zR{e;TYfHnyzbYK}9ryN~={vc;Pd2*ukav}fmdQn{wDwo~NrF}RF0}s8Uuk?wYtI^` z%6+3t+sS6tKU%-jEVceO+ZHeF=b9~TN8##um2M5MY581Q|5K{Gp+~rKAy{oUOKWG# zs$TS|>Wlef?L?#0@@Z7G4V8byOzUN%OZ{zhX}jGpy`fp67$gTaztv$#qc~Jk!5BGkvrT)X#9&39;KWM+J9@T7Vd|@X?uuDH| z`D*pK)#c*FbNgQP(PpcoCuuwjZ4VnorFU8Rw6$GqwzXVfC*QF8+cr6BYdIq)8lSf5 zH>LG^W!2AFIHlGL%G2^s(@Xbea@fn#)l18@w0^&7{Y=r{$z8K;`QGTIa@a6`n)*G> zjn%_mD)+hRqq(+EIzQCGKxyeJLSE2P%zatzi|E7M|X!ce) z$t!(G@0+dOR<6A*eZ8&RdTabj?cb40SAUuUaTvEgf3#8-?X(qnFl;X8)?bXnkv_9MSAsJE-zRJT$&d4VQaMzlKY*ZsGQ^ z_*%VcTK#KwS^J>Z6pG#m~kyEv;8{51JpP zjZX?KXWrNRZVphnYIIpUX6;&2(@S?&gSJ#0R?%O}x2W{z{#K7Q z+-AF1b??IE-pK*=OViPAx%hFf`Q2{0_Zbgce5-oU$I{V9<)zt2{cH8JeADq1a;@^5 zn;zO6VDVGECm(42YNNN+>z4I18Xn_cjbCek)sq3*9<((77+;t?n|{{N_Kxq|bJ*fl z)wBMZzLw?-?ROQf)w?dO7rE*Sd~flwcr~hawZG;^Zu!zQf0|maNw>>C)F+EyyUItC zqfWTykM%dD>5rxLJ7v{RRqbj^-*2{6Zc43Z=r2y5VfP$%as#{cP<*ajV3!`)$rJ4S zgI&B}7hl-bFWBWf?BoM>`3Jl7!J4jy>LJ`)_}cDpZ{e%n!EoHdSN(%~3t#Ie_ZGhD z58PY$+D~zB;hX-@sM<-buZ?EkDnA`F{;$~NLG@gQRrX$`KUsawt$l2?tUa*zn>yY? z{WW>F`I44BFKk?1R`X8QZZ}m=Mjh4uDX-cYYbSEmWAWGI+~#Fk9sljQ`onlshEyT-UOBrIyYkQJ<~84zP3&bn=2;WaX&y9^7mB zlq#=?jkfcp=?7(}-|6bM-QGLwyZ^E~Z#RfPA?`A*QFX>PXl&UavZYEuBiBX(A<;l` z>*SkNW!A`(87`8Hfvl0xK?q|O6P~sSo&Da>&Xhr>W@4$0F_Cwbv5{-MVEf)CKXNO) zyz11g^KNP*Mfg?-8Xx?(%+lxFJO5xO3^YzEjHON9HF{g2YU6+qSmtZvf&cDzzPHM4 zgP+`#gGQyCwcPJ~ubpbs235_@ccwg4{@P?=Zj~sngkL8cC}e9~RQaS+wDQnS3n6y# zqEXQB%1Vi>Dw#HJl%q9PHb}^Il7K;$<{Pt~PA&?oRHZ4A&1y2Ow^e$beBe7PAL}ez znr{roEZ@!Fyi)2arO5_eP3s(T^EdCU`Ig&zxeXed+GrA}JDAO9RhBfjHlaq!jV~wWCXVc`XX^l|R2Ai~MPQDnO zInHgcn`@)r$gQ5_T2HvQe5>TD8pNyr&6fHPyL_UaIDcWwUsWCm&VE-VfqQEQY%-{& z$~e#MdsTi=qFs7n_dSz+8lOTNW%_zmp4&E=(6;hy+vIy&%ay^SDm!f}hqfuVrIl~q zN9$i{gOsvrH*L^Wnv&VDK}M;I0+ff9tI93;p!Kn|`qHT6&j$T@B}bLgpmK!#T6t9M zi-nh)Qk$D{n(H8e_pM#422oWzV@f@vM=f9NJc*adn| zo z^@EiXq3tK(oBV1$ru#MdwaMv*$yvh&W6i3+)5SFA&Nbe-EwVJKMH`z8YpC+h;MeN0 zwR25tH<~7I&8pq1CY5Y5s##4!*&w@VgX`RstGrT@^n2oO`P;|ptI8$MUHH^X`(5h` z_az0 zt0t$cpDC^WmYOfj8ESnkD`naS&86utrRfEww)+f%HU15qj9|{%l=@2lvi2v}K`@ge z)^BTl=H9g*#JiGDOHZZe+2U=(7L^NITq9iy3LEUU zO@51NQPuR&w$=mIa$G!Nm9Mr7Y?lD(5@COs!0c1yl&ed zysi2x?`!$BtNN&edd7~b2NyQzEvkBC=`XE)EiHe`&SbS~4;fpUUR&w6HfSkz@{F-# zrLVYr=Y6furRf!=^~a^@@uf{#l+~h`$!BSLcWLEc>Y^u;K3d+T4H8RREGjE~-zJGm z>+egOEG|v|Ep1V`G(DiSN#xS>fwIa6E9cS{YfCHdQWsm9^Vjk(%_yO?cDFR6goep= zqiu3j<$qOPW~|WGNea|sS1z#1Yugsp+cw$J)Q3 zwk^uGZQRzj#o4xv-`ciF+qQ9B+a@X7Hrdv;_M~l-Zf$KhP=ihX()NXW%U@gUY}+Dy z+XmNdTa0h(WCDw@t{liuYfp5r&K!`9muwtbRExH@*wHqZBiE8!27BkwWm$q%PxvhF)vu%^uZJR`F zo1WdaNz1lPYPU@fE^Jb#u*vko7WE1nmln2I)V4*3w&`hYTYPAnzSg!yh_>l%ZJYmS zoBr0e$?&%JC$!I&e`ciA*8YX(CQqh+x6Np&ZIi2Q?I#&7SblUCiA?UaUuJ$o^S!kB zhEnB(xj=hv{a|VRR#`2gnx0siURT;Uywu6bMydJ+{#ZL~%XeSQybTmm3~#_tBprWo2)Nwd{b8QB&J`LrgxOKI8oZ-Q)%;G zrL~u(PRcRO;^cxkS<{28e{7hMNW=1_QB6u}d&IPkD-YP|lT1pwba3zV2H3SPJa_F4 z_bwdntM~1_YEo14k@uWD@}83~?p?djy?w9o=e~OG+6nHR{sFsmz*YP#UfQ4HU-iDq zrOjXP-1JkMthY&ZYH6E?TsnvK`#|_xN zX@5Y)cH>`GD}`AbQF-l@hsm)m3gkAq4{QHo`O0@%?q+0$jg|iE=?WW%}H@yZ-d($<|O`mCh=`-ywWy8H@NmdbQRO_tP zlr&8BHxXt1&$7f+ypD*gD#3D;iK?m;+?$B1ihyQfqOL<4%uHRlB;7<;t9st6e}7Bm z)EMJg(MgzuH0@0}%}qYdF9bNvFXglz4Wi>3fmNhp`-ImReFstb*!DOpR zR$z}TZm|?()l8dJ?oAvk_0Og?3avgw&YCsrt~zTqo#w+bN2kXy zCD!JyS`MhHNwqv-HcTujX*1L?HK}3UZq=;jRdwsrQW+_xmK}*|O)W@5oc5+y=Z4p& zDPkfp%`f@X3L{aO=9jKM)7-SDy&2H#{K87{w6(O4Mn@}|88_Ix8Kvaf9oP!Q^mZ0- zO!%jk8itath~a+G0ZmkR?E`FKi->B)Gs8{pwGG1%%e~&)NHvQ_HFKmr2Qx_SdCPhf zxGMUpy6Q-?>fy{BGbiedqh^1<`UAItB`TtGE6es}qR6}^)q*rgYC`3t-F!PZ3UNRNA!XEXEX-r}Jn zEbguRtCdJy`QW*W2WA87=ND{K{-YN3=Y*e9)O2?kyj5#+Z92 z2e9RXuGnyI;a4;5IwA2zScYLEqoghR~mWKR$MHfsdvs_CaASMZDoM_>bc6L ztsL;&#fyH_%wL-i^_b& zX66brD=o~ds4%mN!e#~wo3SiRBQ9(vvM_bBuo=U`W-trW$O{{(6{gn|Hc~075sdbv zeKEey>wsewwhWES-*3|#%mhgKJDK6n%>&_EU#&-%ov~7 zHP+24G;6J!s^Iay{jRl{dyA#^4t#H^&|ZN~-27LiTw*;{-687kW;%`k)E`L1)EiPV z^@ik3y&+BRM!%ot2U0ifTT@3ngg=d1M`EVFhT<^whGe-Lr=j$*0ZJd8Q)kN5)p%I* zvX{2J+-qL+vaxlu1!i_GtucfC#0dTGmvW}}kOt9ou@_+B=4A7BHc0Tz#5TH{$l z)*iN(&Q-EeK_#NMjy+LL?Ox}`FtJey?PJPxZP194@$i-?VcHQbv zp<`d{HLH6~Utv99)AGaS1b9!=X*H93d*AZG=Jawil!Q%|Oml16+=#7}5kIYYO>NQh zruGQ1*5F>c)|C%XgMLg8tOvFCYz>1Ya*cb}Q!z(qsQo}1XJRPr) z3e{(tW;SXTQ0zXm+%U6I+lIn(%T=8T;@)yq$3@(0m*1@X*O^nETdwJ}3HMH#U<+Tz zLzIe>BG|$=3o6r>cy8hAj6e4lzK(;qxA4t^%JeCoTllIsac|+<2)1dK8dkelsdnKo z%j3SoBFDuC3q%(`M&qvZF@M$HO}csC)iS1A^u5x?tJWi7p`p*4Ha^32!0A6t(|1bk zIGNaUtvoAc7QX2Zxmk9UW?4|!%5`Zof@QT$z*ds1T=BC4TZrp+i@ zEoP!n-z#l8t<-TH&o%zJg_qm5-n?3QvlY;$Sq_zEfl*YJ7-n%<+RQ@J^vtrdRI*8f z(#HEu?d_O`a^+09m|j@#3G#H7Ag+6sPI<&(COtk@2mVLPX^4&HaK{VKJ# z)l_w_)igCS*G7){WG()pv%u{d85XoPTT4^tN}Cudb#kLon)+9odRdyfS=ufpYb4Ry zHM^~|VwOzBD6baIv|8|7!_94>C9kT9sjInG7iK3-e6-PJ)=smpunF##k2HQjjg4xu$i;M7S;=`4h%b7b`x&(o%yHJj^wBF7q;qIsikJXVVxPptLZLn z*k`+Oh@Vw+&2KsZO;2uC`?*!CLX{Qrv)9an_u6yM9d;Nzc&DNJ?>l6dUH7-q3E!Fs z*&<6(?ToQmz(N%t;%a%V$|-TMrl&EW`{0B29kRzBLk91^!;n4jcZSaWkipd;sH|*y zsv2%ze_Pqc z6t?!2o6T+6u?@52+D7`OwOn~MQ=xhyEl8CuDq{M6opgOB*@oW}A`Q+G11nBBmm%meWMU)~IvU+o(b+qPeZb z6_pK!#M3O5C$uhY608Y zo1zjPTi9t<2A8I^R=W`LYQaklbX#Vai%`1os0%L9JXfKu4ES!Q`G{irjvF`yW7GR zj%`puCRg3PepgiOr^T~rLewuR@@H5R$ad0x$s+3ujcGR(I6 z(bPs5|1~|iExtlcXr zLp(FgF08#Steq}wI8m6PKvC(}RsUdyl!dhug_Uz*VSyTp=R-UEh zQ)w%~r5V7NW_Vs!yN685cuxnpo*RQ~? zU4UKw!>+tx*RH{?Uc*jlf?c}`yY?G)^%ZvQ4s7A8-rMXl!@Vvu-0QN9C|x>X%I_Aw z8T55&e)HVI*Zk(*!q@hcdkbHcP3|px?bn$5vh-KWnANhRDnI;g>DTs-drQ9=(s$V| z=q@v;@3LLcU1nI{WxLC}%)q`&m1+F3^lN*;+?(aU8N_v&L0p#^#C540@t&ne<%N4o zkCki7PP1v*DK;%Lyl$zSq3i1RE&IM@-?!}hw$=lhTP^>#>NDJHdAGIS;aNB=+h<K zMl4*FGY(O3`GkI{zuPW+?lpa;PjfhhrqfP6<6hHgyQR6;_*lQrz3E%F4BWJ3;6A38 zcWHU{@2zs#zmMJb)8!}ZSzUOr%U9Ti2fKWQU3jp|SJ;IIyY#~@ov>?%V3)tJ%NN+C z7dE}YPKU{D!$4_<$z?TJuHmAOxNsPBx$m(nbN-4j zW?Dz}pVIV=Qsox0RR3)9o9Ue{_vc9DZ;J63t2USimg|MN<1gWGAMlssi8E^|j!I72#*_B8q5hcu_^Y0WYSg?*T6kmZ;V0 zE5J)C>Q}-`De5P{ODpOl;bj!{4d7)J{Ee4dZ8=4K9azH1@l*b~d;xlKJrmp;^y7Lq zczH$r5Lm(n^>Ofuiu%#;N{ae%@XCt%G4LviI{wyHRn!N<{SERLZw46TnfxYL14u~- zHU=%jc5vG;30}=`6ui3OTv)yrJP6iQcquIT4m?Tk+6r$DSn>jRQawrSn_m3-X9Hbr0^!g5?A1z3U8wDE`&E#coLt@6y787<_hmAcngL1JiMjC`xM?v zQI|Xx`2cl^%QlL-1=B9L_KuLy(>Pz2*)DKijU01s0Hm%zgn!L{%~ir^-A zgd%tX9;v8HxKe*WU1UVc9@IsC4_5HEl4`Yc6p_>gkws9Kx^bJs@FQ9%3d>y!+>-XRr6p_frjf!9*EO`g&(jMNdsLS(P6p@sP_zUXq z!V*_dza2KzkK+0cMYJ(|ry`O#i@zY+1io8Q?+f1p?gMpjzafMlFa+>}h6H}duoC>R zVJ-L(Aac4rcpN+l{sEpc$ahaG;>qwc3U6unS@2KlehYqH!Cwom@t0;D_wYL=f-R@fLZH4c_?V?O;BOT{3V){vBtG9O>LuQ^A=M0 z;^)E&X&3qH(hmOFFy$(cHqKj2;hzOBuBbf$FQM=+hnG}Hy_No3;9mzXt&n=`Eu-+S zhnH1Io#roHJMh;}YhFVk^_#zp?ciSm=ZaX;RVe)X;L;%F-%H^?1ot*b+4fQR66d~( zWKFoALCRryh5stNf5~{}s5uLCR!+!k2bx zph5DZOW{+Wr2TS`ylE?Z>Xx^fLGo#JML^Mbk_LgKbuESe6TG%T-d#r#NItA9 z5zGj$ZxFvWPy{{T4Gjmt8z} z1fyUH8^j{d5*`Rfz!HW)o{PUAI27K^a0R@(B9OG~VYm|BQxQm7h8nJd_fiCsmc0#E z!}}-#Nz1;5YvBD9!4!CZ!=td24G1J|2O3_2hbe;F;o*jt;e!mH!ICx*JPS*{2tEgr z7a({J9&PvnK3EZm3`^Mq{VF$>Z>0 z3a8&sOzR05FJ4hl}@*0Sa=}G>A_!3z1 z6vPtFv5K1bEo}`5zk-if)a1Jp6v5B%i3-(N-UG3ezr^D<;z$y=$< zAUGC&-f$f(c@2W&;1>;24lgN!*A@PF_+N@zclZs3 zpTch{YBR!bDg18m+X|WI@ZM4QJ>hp1H7Vcs6uy+ZloO~)d_GY4lEx1W;{U%DzU1Xc zhPC036~WB#Cx&(4PZhx|@MntnDEM#keFf`yF6@dr;q^L%letI>ay!1+|&rz(Cpgp+e>%{JLQ;78*A`L7F4uLx#^XHbYP<4Zh1FdIy{x-kcNE@KHnus$sD2GSSF7)%gs0Fy^9 zpKgN1Ul5!Gi(f$65*f=0f|KDn6w+t-b1DK!<6H`9zx}xt!Dx6MfSe}J!{oa_<{kX` z4Clb}E0PysWXNGNctNlb-%{uNg%u(%{vwLtDR@yuP13ZOLGp5Oh0Fu_OBnWnmsE(} z=Sz8mfVBBbD?|tMmr(?g)@2o<5Bkd~0!ep6A-bX8R0NU-xkB0lzfc5sz@>pU!|!E4 zPW|4BU>MxTAn*4D{Ybm`v%I1vaalo8lX$LZSPfoDA>$r@Wrg&6GS?;uc7j(`1W&{L z!2tY!4IZedwcsv=_W&&SAo&;ER@4rHB|O2-V0DEXbFRU);4ZMHA`t)9QUnqX?TZ_; z9s#eT2*fXuZ{WQNucruZg{7PXQWlbC5KA4A@&NG*u#|y-^!OVqlKtRK3=*eJfyk8n zzPTb1KetdM7rp`>YBMJRr5XSfsI-Y^;7L6L|Y4N}BY;K7RU zMtDa>{1Pl>BRCyMp6&up0lONmf`=%=J>cCG@$vBP2FVBcO(1^mX?PJHsz@Y#dx5>d zS70B*m+-!ZUtq~Q!H-~nMSKQ)fFcl?Jx~#!35)E4M8X`dNJhdUDk+M5fk@SQQQzUc4 z6BU8P@o+^TX_}-61()GsMNkTl`*6iES}Z;(16Wg{2_B##6;0Er(+o`f$} zBsasCC<2k4OAS&ElBXb91ilbX~8g zzXD6yfJD+EbrK|t!8a*liLb;D)Zc(_QPd^hZUwjTT;%6=Mf?kVhoZhae5WG*3BF5_ zh`ijbNJOUYQ6##DKcPsZyri5!vOFx|fmq@zaRTwT@H2||8(888lB4106p7T8 ze=1VR!{-&r%e$BKiHkB9T1)K#@qkeyB(!zyGaB zq)a{npW=`B@tGp2!=EdX&EYS=@4UlzK}`{jfIUS-y$F0oG#2J1K{Or?711ade+9`f zI8sCh!?7Zo04IuQG@L3T@;}HF(V_5kiU`@3IdnlZ4xV0-Yy!`qNH&JME25F`jEb1N zlX)~jbO=0?BK{So>;>_6@GOe>XLwdc{5?FIB3S{RT@l|0&jIEnjn~0*DPm+cm|GDY z2G65Nj)8kBk{jT86$x!aumD&Pe^!DQQbd#Cg~1}k`6zf%MRX**m?AnHUR)7PgqKhx zo5D*f;&))`l^}i+M&<_FQEUk))+iB-F8>R3!Jq zy%aI^MEYhyOuY&ED3UATzKY}uxSt}Cu$EWEZ^M$;Ah{Y|QIT8%OCEt#;=i&Yc>rET zksJuGsz}7|{)+fscz_}ic^;@p)`PngNes6XiEvwy{0Oh6NTmE%2Yi?O1h21%pMf_3 z+YvV(-d>U11Mi@S-+(0__v4)&@c!Tc{Mi+jcmtW&7X4e0iY!Q6K`QleBpA)L$c5A; zP?xe3nFg}HBI`qfXct)O4~Qfjkws8j5T2;09}XL8QfI|4P`d^`LQ#{lJ5u583?HqK zIRKd(b$Az+@&n80`PH)n&jE>-~{jrI8jlPG@Yc7akh->1T`u5Qw*=crz&bM z!KW!?Ehji#A+{L7846h&3C>h_A|q!RUWdKfQAZ)=`DZ-6mNk0gO!cra} zl=8V&5iSNxyK^JY`@=VZo4MW)z6IRM_3rR(ibV4Nc14KX$T(1tNIu-DNJM7tQiLK? zcN><5?*aGX=NR}t@F3TR!Vf7zDU*i{#7Xqd;8EU@GWmxh+zWn85sG|0Zde9>LJ>}e zpHzfWZciyvN$=B&_*M8BMIvdHHc0aR2k^Wi6uEdokw{uz1juqKc`oGvVksZ-3nY@q zuPI{cPav`ak{Mx<4-kvYicElHZTL+^d@(HL4HA)^FBHid@Ry3@aQG{Qj3I-s6`~sj z-za2VBKQ`Nj&v#bM@4NT_$P(81pKoiT@L<55lWnY1;6ucgM6<659cu0H!KVXidf2q zmmKDW>k64W4qWPLB3K@n5tVRwW0N1h65 z5>NRaNIJrq6t&ghnHBN<@GJ^RTR5wthU|s286>R|CxN7O4u#hTo>L)fjNx1c$%DBK zlGb??vUVEwRMc*VC0~HIH#{F$5E*y?UI<8DN`5S&h$%-|gLja;SRU*?a(E412doF)0qX<8_s75+DrDRlQa1#NT)BJBeoWq1QVS|Mw^;V}x)VZ$j3 zX{W-cY0x z|2GW_!Xh_Z+Z9~MbZVotMFEU-%}(5;P(~YKJW($8T*DGDm-aZMeaee8~l;N z+aDJB0LkvKgpFLJ^6h5|r&~*0fz!pm;2Mao9g2Ja(al3iClI|m{8}M;diaeZ9s_@? zh{f;k!1shDY5YMEOI`UacE5!GPb_U8!KeFY3MvpdOuT zz{wWf@579Fm;$Q-&K0zp;FL{=P zcwGg0{^LPK6W9cBuL3ilBiB+Iy3!XRy z_9}S10zGH&)Kg#-CqaRplX&VYusPrj6zDmG=K=)=KlfayK+h694Hei1@QW1ad4nfW zfm7XItUzbqo<<6s+TjufEerfo1x{^pnF5`QdoEX?cUV1FDA3uor?CR3y1Y_B+Y6qg zz^PuZQqXe1n<#LqV9~omYA& z4}ebxC%XWhU3$nCz+VEV^nl0!r+yCbAozm{VmNqT1-=~oAq6@w^z>8UZ-YOqKxc=Z z{tEQYnTOg2pmRje00nvn%`;Ge&J;a^6!f4_WdT32h?T&oo{-mod7z6^ibOX^q!E1 z+5^z&zNrlWjp~DZ3vj62$e#du$J0YT1UQ4h$!`F54*1Io+8N+86j)90nF?A}@L3A1 z7C4m^&@^yrV}R8Lr*;K29h}B@fSn6Y?F48B_&f!69{6htnh8#A53uvWsl5S>#xZJ3 zfYkw~_5=7I;8ZUFs|)_70{;_ykpe9+Jk)*w&j(+kz`WpZDbPD*o}~)R2fj>!p8#L3 zz#asDTY=u6@T^c^eZf~M(EAjgRSN7O@OKn6s{hprjQZcZ3iO_ZXN>}T82mj2df&pc zR)O^ge_w&#zwoS6U{r<=6tqXd*DEk8!v+OyDELMNwjKOK1$rLtq5cN29pKc*0D4C5 zp?(GM_Tbc)06}%NS%KdH{;7hXy2?`E9l$?Rpyzd-EeiZj@U03W3VfRa?+8w10z@=8 zl>^|Nz;`N$81P*RyfgUc3L+LfTY+~0->pE;06kwQ@O1Dm6+}Gv9tGYNe6IpM8}#HT z@NVF_3iO=Nlc&J%0^g@V&kQ~L6*#r+0R?)N;yI|mshz)4pyw){LkgVQ{A&ez#^U)# zfv*AoRzU>8zf<7k3*Rfyvlq`{1-=&i2L&+${D=a*+w1vJfu7HJjw*1fkDnCid4=a^ z1x|JIi-Mps98=&_ProYA^9;{#3Y_ZfcLjRB;W-Yt7(?KzUItj$!=T>0HgF~s(csm9 zbD+Nkyf#o5`bWWi0NRAkAiZbx<3Uof?rMd&0G2j^hxZVhSEbt`i>Jsow;92N9gFgr0{@5z;AOIV5w&W$e zfil3SybFOP&?kW}1(rcZy?d7fE0DGU_(}zacJh)ffL#Ut4georr@*s-EwD*-wpGD- z8XRMWcPI2zPrHEKu(=QXO9hAO6FyCFrhxBNaHwu_fIOsq2At9W&Qx&nA@~BFk9x^( zzJg5g4*}?_oH+U^fm6QU13w_`3*bkApAnzx^%(FgDe(Kje^=lSfFD;7WaAG7 zL1j6iAjrm_3J&>dzJh}>!G~M*oq;_#%I~YDV59APXDQg%fuF5lv;nWKV6+CW0i1*V zep~RG3J&u1)l#rO1FsF7i#TXU-+2nggW%^Y*zj9l9l(P)eZaj6HvHU&!ukBr&jXKA zFm4BrRxmn%$0*ojGgiSE3Ld9mz}J283U)I1MG7X`-IoYljC=0{jy~YK6nXUpzYMqn za)0o~3KrVZcO{Sn{dn-J6ztL9O%x2WakYX$aj#LZ9|os71?;WhR1UyG+xw_~0Si9j zYpP)F1ixOvxC6YIf{C%wcY}gKwwo&$Wba0x1V3F0M7u%pJBi-&TIubr}Mq4K<9tHISPgYK39Rx{Cx8i3=8}<1??_ys&|0S z6n(EN(0QS60q_R$(!m!hIB$W!sX*t8zC{WK178fFKJ-7qDIQ=@y)6Znp{|H8SD^Ds z-`fgwe(77GK7f>8;a{0}gyfbRyrKwf0~OJEQB0@W49 zM}kAPk0>~>?MJ!&sC%;;IO?5Xq8dzmo;N*eFDF~A50}YTb{J`H(!9<(;F-8y= zeA<7Nf`NMW-=<)80Y@JsIH*5=YXy^d2L-bo_?-$S-AhLWlXRUFOp4oC!E6ssb^#N8 z*iZEW*w2GgeF1h5yqkhO9sDi@dkT1W1$#31-3s;#;5`)Vso?i0*yxM?o(lGJ;P)!n z)4+Qv*ptBTQ?OqG@2y}z4Sv6Z{VaGN1^XHB2NdiV!7nv zsU7+$*a_edE7<5y{{9N~Jn%;p>>A($6l}V`feJRY(I5r8Ciq|l`%~~C0DQz*4W6lB z&H<;o0L&HObkBhKIyl`YU{X1$P63nb(|rOa`S}z8?PD$ip9`RjCi%lc;7!PXf-hDu zPk=8`FkSGs6wE)sDR1Os{tQla1ekR1TNF&Pw@txB|Ml+y_M#7J;QN6Ckm0WWuN2I0 z!M{;3zr(9;h(|Eif}{Ttj1A!Ee*}8(C+bWEV;%Te3dZ~3XDb-E=cw}(jP>9i1>-&N z1`5Up;4Ksk)JqinmtdeCqu`%WcSFv^mO&_(hrv-6g82h@Z3Xjt@K^=&NANfx9&vsJ zM_vT;7X<_>VQH9_jp=CRc7 zq=!EdOynI4A0n7r!Ph95pMj&U3FdZiv=c$=+v~h#80hG`D61IJT62Z zCO986))0P6Fp?OX{gQ%%dwdn)1PAvxx1oZAy2fovn0eqDa0V35f>#C_K>iy10^nwx z)%d_~QJ~*g=RbUQev{???Dd#oF zXt$jC0Pe#;d*qx0G}b)sIMF9Oz?aKhuYLta3&T0c^>9G51A`C)4|~b1SbeC6fD@tMZFNLcfsL{1e;{| zEWvibEdbp58XR>;u(pGrpd&6_ys{jeIJHj5X8rf9eZEFe1x%l)Jgt@@T)9vSHU^L z_>UJ!Fyl?|MBpZr=X&s763kc*exC$0mNEWYnglcFfwz)i<{Nl5H6LXeg@Rga6dTH0 z@b|SJG*@`UjUrW~i7uk6ct|`VhKcdwaq+Uq)nC+I`MxuJ@xCs;2Ymy5!+hg>6MfTs@A~%m z4*8DwxnKBAzvHj&ujP;S$N3xh8~PjhukzpKPxZI<5B87sKjVMiKhOWB|1JMYf0loX zf17`=|A7B1|2I)ulo@qq)Y(zzMR}qcM74-YkGeZrL>tkyqvN9+L}x^giJlPsX-srX z&zMhRzKNX?J1=%|?6TN*V&9A15c^T=r?CfPe~81p8P_DPYuw#&!T9R&wc^{wcaI+% z|3m!o24;im4eDGl6nwAb8k+soQ#|)Ig4}N z$vKd7Ft<)_{oE^Zug>k9+x@U{?EU-;^IaD$%zP}!Z{{CpM+AONBU+#pT8ebhP4p9k z#3;1FL@`qw(Srr8a3fkF6|K+?tyEJx1?3&nhv6~88!6?xR8EA!H&6FtIt#Dt?(>br?EXi4&b1>(pTu*L;+{U@r z`!ic{#@y$ReR60tV~0inj{zfriw-qB6#wn8ZwE4VAR+hs16SqVec-a(aR-ufXYMSA_WtJkG2%iqn@0Zqs~J0pS&2Re9s)31 zsn4OUhdw^g?Z8XWP5r7l>GD<`7<6FZ-VXZ*A2|C^p99bwYKqW02WlL+4LoW8?)`iA z?>`U&jebDew+6?qZvpf7&D=M2U(0=$?7Lv!xBI@?w;j5V_67Fcx34GipOE){UaP#u zxk-C5_l7^Y&fdPc=j80q*_ZQb&ZwN>Ialmmv3J?t@q0(^otcYKfA{{~AMO77^WobE z?EYkD)Ljj`ewzMrT%PY4--=m$FH)1eK#@-j(J9Zq|j^lAgoR_3Cmz=S% z(vOVuQChOd)KRnMHVd;EeXMo_tE1HeJYY?+&vtsNkV-KaUNP=VV4M$qNPntN0f0?m7!HeMe0k+RnU56f2yDkt8@&7S3xQ1QzcMkZGp6{ z${r=5=ASYyHtsiW(GQy)jYOljah1`;c-@$63^rOCLyX&us>Yc{HREifx>3WZY1A@m z8|NCsj1k5}W0LWtahY*F)7W+FCf0^^VdK~n>}B==cX(A^n@95oJel|BkMf~>0)L*r z!av{}`KNq4|K7OTNHeZA<{NX(9{e}$TCKU(O6#sYrj6GoYp-hWYaeM_wIkZE!V*`B z>%E{u&M#Vj#LyeXE7PmJq~6r-sz)tqEpqW_@(XxyqFF;a~+W=~_GvBG%Vm}9gu z-Z1Ys-Zq{y4j2c`?qZCw+8AR#Z0t8y8c&#Q%vNSwqcJm>iFr|Hg4yh9b_+{qU0FAF z7u&=>Vjr{h)&zb5zkxUBH}a#p@;cWd{t9$Ig9k9I%nsr6x*+7s+4Z6ceb zJ;|QdGTBV+B{o-^&OXszW1F=_>{D$q%hKLrpJ{WfN!nUoNn6j))IPCq=I3g=`FYwG z{Cw?8>v=7k`?PKRLM@*+)LecM{%G>$+Hu}OoXKwz)%eZgEdH>#k`EKN@eGl|hl^DH zxah&35clwjq9=b++{>qm!Tbd=#ClB(;;)Iv__*N(dx-t0JrsX`sk4@DJ;$T8P1Xzi zT4A!P8e?0urTi9gHh)t*#TSW5e6e_%FA>> z2UssHz_x13*fwoBPZ8(vR8f7ye42RF-fr(;v$UYSQ@h>X zWq;0p7N4@}S|xU$_8?CawRlTWo3|3@^48)!o-I~spKE`JN3>OTw!ND*WG%HDxu4Gz zcZ)3h3;RoU17C-~QZi8M!OzfEi)P|_K3?3&bHv+PZEKsgLu+b3q}`;o(c0Rz?OFD# z`i*)E{bv0p?Hz4`eW8`9zh&*xUeKP?p4S%Wy{)IU9ojB!r`sGZP$x2B29 ztrzY4?ZKjj{j#`8+#zlkw}_jqS=K9}yM3O0qg~fNUknue#aL&Lb3nWz=828g67iYX zW&7+XJJD`zUuwDLY&%D9Zarn^Y9DA@tf``@eX)Is)ZD+57A` zZJPF?k!3eAwiwy=3_ISMZR|C2je*7>>x6Nib=-c!o?u^QUtwigTdb|tr)DqnA-lC* z&z@^HaQ53>?IdfB^^5hhJ<)#L*=tv~GwkkWA2VP+X!bYnGw-&?*(2=>jBUnlBgekn zUT<%-H`yQB8|(x2LHjHFkZsuQ%|Ye>bGSLu9AZCW4mC%akD3|gW9C3}gx%I|V-B|V zo5QR>tz*_7*01(e)>?a!z1aH19Bn^oFR|aWuePr-Czwx|6V1oXvE~@Nowd)}Y<*>p zGsjywW~SZEeA3=xzi(w*pWCn7^X*J4&wj(6<9ubWv-{guTJPC|>{Q#bZ?J#2YuRh8 zy>?IgUVgO`?R@RTII&KgF^*R@?=kz~pm8i4!WOd6d7jvhU*Pyz3z3b}#=-m;djr2R z+{J6LCcGZMMtsTd7JK+$v6s){xgv*e6S+8{&*uB|dio7|8@-P{PLJ2G)0^to>&^65 zdTaeYy|>*$A8Oxi-=hx`7w8%KaQ!iTv_3{3t4|eg>C>>=ct9U7F4QOJ)17#0x4m5a zCVm&k^%v}6PCX~Vsc+4*7h0q2YSuIMt=6mdO#3E#td^#2e>2k{Y!n1{)N6z-;c#v zhBjP#*1kwTBm&wR?LF;7Jy*}urr5VQmxy)x4(lbmkM*&hV~w`Yv6eaCS<9X8t+$+S ztfkJk*0Xk+HParhTjDZ3TL0dfY&W+Sh$Jg$KVZFV2do)(KdhNWPm^n*Ir-?83y4)b&L_jO%g$7|>xu-EjD+3Wfz zdR_f1-K&3XjkC|S=G$*sZ#X&DLMNAR(YNW9^>6g5`Y!!U{d2vVHe2`U-&(`0@9lxs zO6N!2(AQdH^bKsDzM0L}KedKiKk#^cllB9F|N+gjxu zwN^Mk=u!H2Jjrgxud|fLu#@CmWi56N ziF|zp->PqQnmAV*n~aZ*PmHa`c4L?Eh4H0v!Zb|VbXX0%#okoAo?WjsW6iW1Sell~ zZrAQ$?X?c<4((3XLF>rw)H<==T3>d*_7Ll%^M}Gpv~iFX`k}5wJcs;`;6Do_VBveUhdIyxL3>NG1|{OR{Mp= zX~+1*LgS5u;Fk!UUn&gVMx4*viaNZVsLO8`9{z~9h7SA{e@wLIqeUA&MzrNm ziTn5@(VIUl?&p(5AO4JZfWIh)^66q2e@SHUpcu}Vi|6>;;(5M8Oyw)Z3w)KB#@CD4 ze1mwEZxZwQN8)w*Gk-+Z~_4zyEMZQ{0=kJP__!<%9?}?ZBS}}vaFJ|&D z#Jl`Uv4-yv@A182tuxpe;ymgMb%r?^`o+$0y`?ik@8pcs2RNg|rOspeWM{PgsxwBv zR!?RP*ahrDb`iVE8S9L5#yb<7$MqiiJ$g_5Ui@xxBu-A=W-Hh_=LzRY=P7-lK1d(z zJnc+&rZ~^(&*)S1XPv3~2z{jfoc=sN#J}d>@NfAL=LKh)^P;|3U&8O_4~Xx@K5@)> z$$8nn*1pbYW3)Ef8tt5Y_GiYuMla(*`!S=B@qiJqM;Y^s*NoeZ4)%k_P~%ZM*?ijU zWOg?C8V?!$jQ++W#sKSpG2WP9k2V?^SK1HTTdnV`gVs*t4l}{H#z;0UH?A-)b!Hmx z8h08Uomuu6=M`tR^Qtq)nd{7RUNatc<~y%D3!FEch0dGKB6G5_&-l#v(Ku@SWPEQN zHg=eG%(|w>tZkla{A~PYYUUZv65|ge-*8Q4a#NV5Y1tlw8^Sn4KVg`kKZEHU0P7CU)nJM#|nPP2pA-n`v@-VWN+?J4$T`vrTd{gnNjJ#{ra#bOxzWCD8L%scX!`DtnvL_``*W{ zk!d(f#J-5qH)RfXM;cN$LVWs=O`^m(LO7nm8>|{~p)1yKhvHXu2d~XLAm_$q)GCCt>eY-jmv%Yr6H4*2tP^&D1Wn zUbPl$msxLFtF)%p`_{+W&GudPU0NG^pgj<)|=J?yR`OLXMdq}u=m(|v^yQI zIq^=s)){M@1g#6!F&Ap-Siv;Xx;j@ljkWHW-;%T*nAMtS_h2j=to6ib z_NaC*#TE8r#m8a?KAu0zGqCRt@`>0DZRb)eI|B_X;^n=(Lv;H?(^Z-(mmKQXIzWw3j%h_tqc9N@ln|3Tejb&+9Q*kuK3M$NFxC zo`Ut=dwNT(jo#O9*FVrV>g}=i*`{~Is_t{W6V`Nl^mMH1_UT=*mO7|+)4#=O#9cT) z*Yutk19iQ(afVSvzu)X`cGm-D53`5;?wv{mdEWZ2e)&w*2}a z>w2rBJ{fDN;raq=q%~51(;9=d)FNw~HBMh_O|YKSmylm#4L8}Etgo=1v!2&il6PVy zH`ki0ueM&Z=IifTZ&(ZU_pHU%V*P#VZEKaj4nF$6z7eb2kMs|*v)iU;S>Ibf=$~N^ z@~6JdKG!~1-;Vv3U*CaUaDN9U+f*{GV3 zlF){+qBN>KY3NrBMfD|P{{Nbj)d1ciUy2bWL>GqSxczb8-~_h>^{k?i*|U~@*AN+s zc9=tHBPso6p{PcM7SS&V#YyOpkPge+=$8dbE)Vs#^1>59ac1sq<;jt<()`o(){5ul zIY_@R@K2Y&4*1QJ4-2}t5@Rac%wk;c^iUW>P3rcf`&v(_15y$}7=e}O;lWR%{9^_Dw)5B=q&C5moZZXuW`c z5K0p8x04jlYzj3>k2)!)QF>5+H+nl%h2jbtP{c2kl_rw*3&mHd;^X4sV`Wo+28H?` zKUtiUTlnWfRjE`7RWAO~;c|w{?4RU+4mC2}KMQo8eCKnie--4l{*9oUcO33&~~Gk3T<3r`oQEQ3bn@N)d83si_&EsS~mmRWGU`V%Lj`l2pm%rI$t} zAyslzbBxam;?N)C7DU||mX)SrG^!QFueZEj*6GoxUf8R#LfTo%?IScQw0j9nWU7Bo zRwYrTDqfQQw1x?-8?nnQkfSDJhsg@*SSe48&=iIyY)ROKR41kNM%06adLwAZ8j_VJ zl437gEEGH2BATd0*y9#xqE<((LwPnuWr6O9`T{gB>QE?DSySWN5dJFCb}}U zb#&!ulcuRotDV_2XzI9CIFp z7Na$aY2soKQ^k*@F^ysxhx9Sm#B?K>en}7+rz}~m!(*Do+>E^Bn!JFf#k7N_BUy{- zL)MCfM#hYg)jGU>v-+@B8ja~!R3B>Pm`Si7(c%U2pqLEok!LASh{dX)SR9O9#WaOJ zqxAK)`ZjXZ5@?i@G-i6t<0LD6%yT4D?jeoR{}-q#l`3K6U672snDuv-nd&EIRm@t@ zc`*wM>P zv4@bVDE*>@revIxXkzu)N_h7#Dz;7`trlCeP>$4}O0I`lYI*Ffk~R#{*v_%tVeQh` zB&kW36#icrQ^o(+Xl!TNS)){~B&D)-j%{Bk2V(m}4$)qP^2FH5kSE3tkyOcwj*yzM zCG-eQ*ponGZvlq(kOqS~g--p-1Bz$(ZvXH;&&7I$i3oiEjpZVf<3io8!}9L9bUy#%u>o$M|lbJ?R{^z)lW@ zDj6aDD1Q8RkOswPfaa4;Wuaa*Da+jJ)s%9b2u;I!mxk=bkB)!5uxyj!pMxD$wpsC1 zT3I&avMOX5y0ySYc^BK_vkUDME!#ngFUxi`{x`(0XxWmeOt6tGDMn!Rv`CH8s@0SR zaazeZinb@2#^Hn>Bq5YW;HFaQUauFf15)l^ZwTbbQ?i2d9C>;(vEF1EYpSF{NoPws zpJ>4hvPjB>o}V3TCzE`lzj>5#`Z*m@igRMTvkr7@rCp$#NzXG#uh%~V)Vfa6ODV11nDhp< zH8(a$OG(O1f?h>8xBi?~P9E)**6k@``1kB5tyQm#dMeILnsD#g_MNzFj~&meBr zAsIi_gG_%f2J}yECMKTi~IA`%@WW&9=z@-lgMNs?A4ji^bo(U4># zQQq%vlJz}O{#DAyWgO~F-0(>~`4ZPVlPpG%EXc38=uR5`xXkf6Nf!~-yUX}JWZKK6 z+?ZsO#v*REm9imaOUknT&19)*N*Y79l+jJfqe*X!C0U;YgB(V(OPm`En`O zrBGwGr0+_)h?&qVlA#W1#1E35AZjL3j;8c0<5`joSrRLiWGj_YSx2RORLU~GrQ&av z@i&v+SSsbEB#V{O{#?=s)uW{^iAza?H)@D}Lt~McB;yZ|^f9S>SnAb>pi;OS5Q5#Ac{)N;$AVcr_b170iOtR5EpDgqy z%Y3jbc^`_&2g_76Z*sh6O!Og1Wt;MhKgU3GzoIg2;-4#^87fPd_9xy36c0%K6Vm4O z(oP0h&=1KR6J=<&)Mrb}thWUek_z9eJ5By+!C z%IRi4(%vsaTT7bmN{tQ5$N#w*p&!ZkvIY5YsaZ=Jqo0&7AsKI^QyJu(qKzawT7Rh@ zO)?)&q1r%c$0uV}mGlf5Cp|wCagLMB58}U4a!rmi{9q->qK_<<^e(YjTIeb@gCy-E zHNB+#h@{fT#3NFFrPN$0^SY8W`s<|8gOaY0bT)YY>G~dW_elF=wnd)~b@0av^Di5C`0y@AZD0crGW@ZK!fnr zVid{RDyfm9qV}WItRebGN22&W4=DbZBxY?}_8svdY3RQZ5hWSF+90}`G}a`FX}u{m zvfo+LX~uM}mYNB8r<7YyNqHN^H_wyuCP~*x3p1pQH6CJ)k+Sp<^Qe@kN&Re@%Lh`k zlDCrf_+7(jnK_jgu%P;PfX?se2GbyJN&loTrA_GxT(&QNob(0;exfqYEz&}ojCqUHL`gY{^n3)#T>8J>LWa_x zwBRB|%Ad>ob)s}qJr9NJmDwMh$yj{(crE1l=WxJNW+tp0l zRr1@eN4uJl-|n^B)lAJv&FR*!Q~OB$Ddov2qfBPr(MmqjizR&j6P-B znyFJm-!=!^cv?4X-LQ>EeMxG6ut&=6L+{>oZ%V;;SC5Td=d@c}%*MgqSyJg?A zu4nU}&F@-J);D!dY2TL3N`99{k#0`ok|8adb*WTLTeaZ2YD@V|J5llrKZRD&lA)2B zRxRk8UPtk=dO*9H_l+2o316%n_JP*D=zHgCDn*y>sw}6XFEvAq=OSaJ*GZc}-bL4iU2c64nD&&TM-T9$Vd=r^mn?b2QG5S_pD&EBawA)gz$q;30< zTpoV=t?HY0qWzrKx3-_teopGrqF>Ub&FHz2c#-b~;j6S6NR63+KvaD@cEfkcxP_Ca zx0;_iqWkF75u<~*A5H1mtzWl(DZ6@gqtO$sKjN+ht=6aPYFCr$4CC^yRxR4qRJBTT z5WM7Q>#=m5x~}5il|OkC~62Abw!kV0DQC= zELBBF)%J5z*4}ZfLz9-6@6vY3`F?HciPXcbXSX_@RVS6TJd%1Mtx{^Gl*cEGPp$Dt z{*VFPs;1RWi%VIXc4?|7wVwPoN^No%T4{K-)_JY-S~df%(P4CI^VH_V+sFA5GH?4Drl<6t6TGeSYqg9=hS!v(=-QSdXZPumCE6r-F zI+5S@z33`sVQL@HrL7u8-bd(;XdVuaWYnYE)!aETcZlrUSb5Q`+qnbHDXAkS+1>il zoJXrcnisqEqq|L6)vX`NZ9FvYP&-pv}vKjhmXK28w-7%ZU)yC~dZ$H|yU~CQX zb~V+E1n=62aSA@tss*h3S~j9S-Le_ea<J3ab2HsTNRd%gThS{ws8YC}5YJ!cW~ytV?!vIFB)6rz z!OeC9ZqQv>Jggwb?$Y#b4y>h>7V=khZn~lgs^y^rCVn3Ptp} zA+L%HsnD*6;ZyW%hPmHHXnzXH?k_S-(vYrH-b}^|kG>j zm0TZ2&sSXCeTe#UcwBa0Crh$-7n%%@JMKai(_O)t91VhnkqU)yN%J#9-ju(vFu0h& zWiKtJJpIdbX+qIJspis|3N1D8uPO82!)QDbwV9E>E5e5|+}Y?^M=)w)u0Hukj=*Up zs7xe3p7$oo=Nl+pFn{h&=ZLwAJ}NG6yX{;EkDH^ zg|cN9l(aUZvwsHP-AcUp2f3@-tIcYM!rb%%Nu~^GVIz$thOd-VtfcA1!^79*AJIxL zDJ*4#t({UzFBwDit#B=ujPYO5gh!Wuy+rB%dX5npy0g`2s#Na%5kXRfPp^R=Vm0ID z6b~!w+WlUIxGUVkxvs3Zk@}LW7k5QuILc6Jk3yV`qVZ08m0mLR@AXqRt?1lTN`A+2 zFAIQgN`{rKDO_We9i@UH1#9FoQ>j@MBUS}J?jfwg0u@YDEP5!t8a=|Rc8V4X3nwYq z8K{vptS*;SIQo_=cF9O?c7d*XDPd)KtcsdmGQ~fmap`GtiBH8_wuFg)Nl~)JBQmCE zsQ-hHd$44t?rSA=k(wf7Tt;NbKQEVmJy4=7|5{1uET`nz19Uw~>-8ndSuRCrJ>t?^ zNPqc5RzfEzSeN2TecaK|2O+0}|Dbe{v~Z{wF$ZJp;`hQqW>$iwc!JY%VlTRYFrzwW~^fb-L zr{O3{Do@`J7Ekn7uQ8@xqS9iOv{8(?-v#(RASuc!a`+*1vT%x)v@=1S>9kqrIpCPHd%Nkco%d@OiJoaJ(3akY~cU0^QC8RDFcUz+F z&^O$tU3$O1@FVxgY2kCo!hqt!5o-OyRX{{&*ek;KlD{S*LIp*)1J)%^V2?M|?GTx? zprk?4h4$)^;bECdSy~&ETGFg=x{6AwJx{f3KAF|OlJ+m9*+iv4y+)2wc&$>6S?=a= z84Kj|!Wxpeue6q@kZ_xaM}hLMp-POB0kT=-lSxgye!x*g{weg%#x) zMKAw5SMCR)vV=#B()>9Tt76=Jj^gA0S!IROm3$VRpXF|ryP5&v77oWJsbrc^I6aa4 zzw>c-|6eKV$woc*tKxUzepN6#Wzx)#ryFbB??X=_ipLFIhy5+2Azplb3x$Pyd`NS8 zD->nrbY{8y#BfO>CHX`xBT^HV|9XDm`6O(uyi!?d^D|K2!P2dur0J!Hl&!7US+=y} zE8E)tG$g$scR7CjPfPMIXI_>+{MBNd++JBTeR*;#$2zh+W(wk{)A8~oa2pnl<<8IF z7uMuQJRQaff5`fpaE#NHPF|zsweHeyeTsch-i%_Za$n+!&N__9NRM-qOqR?pRc(tW zTxrlGD?=x1@BE-ln?^As%aK10*YZgZ|08T$0U{&6Rl%rbIpC>eTkjof7%A-`7R2*nP+&qKOXJ@GhIpK$3nd=>n- zS*J>%ydpoVtd$%_-XkcxG;^{sR^?OFiW-|~^ez6Wh%XkkS=`deuk+I>yyUrPKF;5Z z-%Y5Tr<32wOLOv2chAYg%L#YfoxYB^Q8BF52j6x98# zwD$|jk+75~_$9?(`h?%jEt=fjTlD(BclGzx-9LYCCp)kF=W{Q24yC;RR-UxQMy+s? zjIele39Ewi;xX{+fi%+nuV(tPdPebb7G75?lqxK^`zxH}lnElwdQKVne-)uNYk?Nd z_+MpTcE0X!WrtND@I8@s}E*hpc~z6EFPTVitg=7ILAOBqx#{f5UPg=r?%(g`06WL*-_I zi@!x}#^DSF7AQW_rc0W^G~-@3+316Pi6&f@jvN+3LT>sPSfkK1gr-Sd213^`%`#b% zW#PY!Ym_@I!ir^T)htV^MpC}dvhscSD}LkI9Bl*6ZAf<&bXUo=cOvbbNLwA2sl=39 z8tx#OLfst8!m|O5&1C_EW-<+>uVLPbznq~VPKN#~>5SWCzL`wWouE7nHkrCY814e~ zA;S#Zg)tH37kq}B#%C7fDG-bFnZ_KHK*;+YimO_51)CY76Y63jo?!@Mu$yfR0Ukwf zqL@L%+9>au!h#43B21-Qq2;i2(G9grRsuz?GQwB5_YAssSV=|>BuOhcFBURvqFW6m zOJ;iLPH~TkxW`0jDE45KbqMe%YD1^;;yyD_-gILDT0_@fMBb#OI-ZNxCp(4r3r&#e z`t@$6{upfB3-pn8rn7WPr7g!j;QpD8yUoz6xLZ;4+16|LZKlp&a1&9JiKxj$x0i+5t198%EUl|4W1z#)B1|siP zX(MZ_u=S0|lF)s~(iow-kS!XjkI1;PrnC=GZ-%Vx!RQY|fJXuHBO|iSky~4|LtCk3 zI-Vht=fWcbMr|rD{5C_+VCni8+)Z^i-MkupX~2zoAzhZil=Yx| zsv6xba_o&9doz>&=5CkwMZS5PJFn1xLm>fqk3~XI_B6c}TKYa<3`%(!O0WPWH4Dlf zl=qC^M;Z?TG&-1KuN%~BJ)v4^HE3hktPFaT-3x$_@C<4X+~q@ za~u5G(&j0zDro;?ct(IqV7!M?So#Om@>yiiU>zv8+oqzKo?iLJvtVyx)+&7rkGbZDi@(FKZ-S+XlX! z1;kj4VIzSF=yNu;FlsRf9}l1wsePs!X{>g^NR}vL1Wq2q*yrvu4!SwUSMJlsA@_UZ zYg~WBVvTRz1IBmQ;n}9wJ!nR``^;!}x*6mCV8-G)jzyXA?jf@tP9vRyb}RKhFis!A zIDG`MXv}yMSOhEvmI4uDh*1kOmc!Pw9JT?{hZvXMk}+s(%+PY>XoA*`s5O^7w0n7wuVf|YfI18ZNM~s_c{^(|4rq8hE0~;`|ki|?`%!I{ESj>dQ zOjyi>#Y|YtgvCr)l&cn4%!I{ESj>dQOjyi>Ma)OQd|*RC8G~}|^8&`WX+ZHc(96)x z0A>QSFr!rl&H`!xF>VkRX*Cjr#ULyOsf_tY_*CEpU>fiuFdcXa2m&tyGk}@Eto$Q- zW#BBJ1`v~f#QZV;2+f(+d|(6S&Kj8cGW6ca?|z^U@Bk119t8RV4*~svhk^dUBftP) zATS6(kJGWv)v2TK4t46Fyl(&t(e^b_uK|=d0RIfYn*#8r0Q@rm{|vxC1MtrPyeR;0 z3c#BJp*>&*_Rf_# zWMQpB>lK9Z4ZtVB<^qefE}M^a%Ob2_76Weq%b2pb9&%2>svh$cjpBm#!bgCkz#npc z5B%j^)GF|w&Lv&ePPud8AE3{z2Qbd^jlhS%Cg3CBW8f2Dvm3;C$>^j*j|Q4z%u564 zbgdV-Iu{6H9ZTbOvW@Y^o(y1=v0p$RK3A@UaN4Hbjq?&4aDY(&PH+THDa115uo-d| z@ENefeM0O6@OSmFVojDOCbzjhtd<|bI7Roq5B+KJwu%7rVFeq^mw`Rr(DvEN3ph`lZJ7SC+6p1J)D6RE$#U; zY0q!Z!Y=td?qE$^2{;3&3}BzeKVY@tbG6}fwfRQiLtqo|5%4ka39y;frg2~V!D{Q# z*cH>xIN~(Seu~w$Cj(P~7jWWP(R&K~<$F3ma@A9~;tBPKg7uLx554U*0DZ?;0jva8 z0q?MYc_quh>OKRj`wXn^Gt8@jYk+HkWZ*iWDUgPp^!XwOtB0l-nKR%|W6;7a-K|C| zpffNA7!SXC9Kh+PF&Wp-0M7zbftP_9z%1ZZU=D!&lKHy3)m#9)0jvW)0M_G;m^zXE zC+q)oeQ+>JrcSwnrTSu>zc><=zxUpNJ?M?VO>!?9V0BB(-7Vcm3u{#EFnblN$zaKv z%s&>n`z)(Q3wKGLQgRI-*Y#+}^#%LdPRMmV+HXDDZ@pZ%zYIPDm<7BF%*p@8z$ay{5ay{B|J=$_T+HyVGa{Wnj9*LZ@k#lxI&H?0{jhwTQb2f6Gg8R)z&e_O0 z8#!kq=Rc8i5IF}6a?V7~*~mE?IcFp1Y~-AcoU;pa_M!J@qW5Q__h+K_XQKCKp7yvC zF$$b={Gk#AQGy^!5JU-rC_%6SB`AHAi1g`Gjew_Hg3`y{ij=@F&nBM7YGEqy0x%7D z5tt6V1Ox%B3iu3QCNPU-6+63-=Lh(oSXug6Kn);=_4@}1O zGXTxM&w^tuf!>>h-kXHpn}pt*R4^}RpvNYm$0ni2CZWeBp~ohn$0o7Z$Z@~Sb;l=I zZ_wJ~Qy{ed*aCSgunpJ_(E5BQP}+KAFxDeO09uy}!(GwZWH>MaD7Hqial*r5<=ik{ zo>XA>Qm`@&ovh%=Ax;nj8fMv2&T8n?O|4vup4muG)*{bsFe~G%A|TIi-UG)O4$dtC zSThH3ZV|w_MF8g(0i1pWW}5y2Lub}`tW|BwcHOBo%6Fx&iR=43-%0U&GoGQDc5hI77hCy^^nq9H&nNg zts9iPwBoHxen~A{boUl0^h30EiQQ;4maRL%jy$U&I+epv*IXP(7Dkw`KL50Q@%Gb3*+-)Ptz+t6o%METr>?(E16bPea|Oq3+XA z_i3fneTCLjsQWZ_aj~%_Jz{K0Kjqj`bY%SNWB4kJjB1q=C>S9FSZC0i9Vc7qglF*L zcTwIEGID$`Yvq_;uyQQER?DDgsKsXa$dzMgt#+~zQ_b|DQ`k!i*0<>eYqqjZV^4Q| zqRvYG$|^Iw&XaG7Ma-`yXRXlP1WvgE4b48`Fmb?Tf`)n`6{zr$YG2Oq*m@F{!-Uncq!OYU!C$pPkkD?>W44$Z`tn-dF6#+G$l zSFkJ_GeD0zwenN#F+J+g}F1mULnk#g}JjZcNXT(!rU2B2&-WY5XI%r zqC~!i*RQV z?#!&&lY%jYl@{Dtm^%xbS)vB~-^|RHhFJruqvuiXEXiJj&_tqiCsqf}i0RI0(POZ*T~Tp#Owte2#ugIw1KwJ4%$Np=m^=+2|7a; z(Ngp*_gZcf5n?&aY{Lpz3Hfjb#9$SyhBdGj4^OW{Io!kfpZ8NMvtBYCYC?0s?j=SP zAx0D-M#S?J5ix)`cbI1wm4g%S${{cmj)M>!55wRD7!D&~B#eR_7!48n1~Vn{I%cz( zPnXQlOJ?XLGxU-fddUpEWQJa{u2AY3`a5AA+y$)0k*pk$_W-l>l39Am`Xb4EhP)p( z!Y0@Z55R-S7xN;j0dVbdFY7wCkHWM14?U_u!q)4UL4pDoeBcM>Qv~xVg83A|e2QQ` zMO1}qP#w}C16ZFaYCEyx!U~a@&2+WT-i(oO_2vK0}&AAzF z0p{SGrLYW^!>w=|5KD8orh_awtSxX@pX#ta)rr9>SPg5SY-a8sw62d}(N)Zr9ECM4 zj;F1n@=8X65h+^FW3KNaNR7?vb=p57nLokL@CzJ-U*R`61jSGSaYzu$7hr)64oFbo zf)D%#LM9dK+_OMGi$=JQKHx= zQEZebwn@}KG~xNrg_{zSu~8;tqfEv|nH<=g@B;f-Q!@@N&$}cbL4gZC@B_0}X!#gg zK8BW$q2*&}`50P0hL(?^1PUDQ(d@`F)W}EqI^rO*@sk7!&c*fH~&z>)4|DVsA$B2V!{aJ|q zEJS}6qCX4KpM~hpLiA@L`m+%IS&05DM1K~dKMT>Hh3L;h^k*UZvk?7Ri2f`@e-@%Y z3(=p2=+8p*XCeBt5dB$*{wzd)7NS23(VvCr&qDNPA^Nir{aJ|qEJS}6qCX4KpM~hp zLiA@L`m+%IS&05DM1K~dKMT>Hh3L;h^k*UZvk?7Ri2f`@e-{2D`V&j#$g2g;6vy-J z1H<417!D&~B#eR_7!6}!EG&Y>a3e(FCb$`HfhDjMmcjDGZmT~GfPpXw2Ez~-3dcbR zxVFW$Ev{{GZHsGLT-)N>7T318w#BtAu5FzNhupTzRPTJ`#ES)gDB8L^hF-go#K8%c_C5%;pHc)7Q()B=k z)yO(5)OBhCc=3(uBACMpp36b6(dM@lv&rci?W|?;`##P6+zS zI%XT!G1It?nZ|X@8LU&QVJ+MRcf)#C1N}&>@F(~geu0DVEBpqBpcqOZ4hdG<;tSGO zBJ`CAeI-I)iO^Rf^pyyGB|=|`&{rb#l?Z($LSKo{S0eP42z@0&Uy0CHBJ`CAeI-I) ziO^Rf^pyyGB|=|`&{rb#l?Z($LSKo{S0eP42z@0&Uy0CHBJ`CAeI-I)iO^Rf^c6j8 zx{g`XbN0H9Gk9`m zV56Raje3T2JuHM9U=b{a8zBle!Od_BEPo?XUt?LO$F9F<1qwVGU>- z^~koxKQkg+G21i;>AM`R03;OYN{tNv(`KM}3dyMQEJoBQBPwquf&v$Oz*`-Rs8L4L zC?jf=5jDz)8f8R{GNMKqQKO8gQASi&$pbU-jHppY)F>lrlo2(`h#F-?jWVJ}8BwE* zs8L4LC?jf=5jDz)8f8R{GNMKqQJK4jme2}<&>Gr6TWAOEp#yY;Z0H1?p$l|{ZqOZi zKuK8~Q+B=m-6=wYWcv`?I(|i~F;_MwXoVLw&Ga>B%MJnXA5wv>l0rR}INx+jM2iJ^P;qI>qDd-h^G zRm69aaUBnv$-`#yu$eq@*?-|qa=4Qm?j#4xGm7OI#qx||c}B53qt3*i3;m!!41j@<1F28*e%5(!G;6)X zSi~_b;uscj4o^3Sr<=pm&A}p$VG+l~g8yGz#Efn9-w6FTLjR4>eCO2GoF>Pz!299jFWS zpguH!hR_HaLlfYQWwd-QT0R#opNp2yMa$=+<#W;UxoG)Zw0tgFJ{K*YiNrbabYBmw*i410Z3dJi3=lfVI(e$ z#D$SKR>=cVWF#((#D$T#FcKF=;=)K=7>NrbabYAbjKqbJxG)kIM&iOqTo{Q9BXMCQ zE{w#5k+?7t7e?a3NL(0+3nOu1Brc4^g^{>05*J3|!bn^gi3=lfVI(e$#D$T#FcKF= z;=)!SzR^m9N>CZ9@a6#al#N|v|7Y(g(6VN&;LF$suRz6`f;)4|6gB0L{6ySpt;DZ$4gB0L{6ySpt;DZ$4gB0L{6u8;Y2|7a;z;bXm z0i(W4G(1}DI97y%<;6y(5Y7(+iiA1+{f8cc@^!Gnw7VweG!z)YA0v*A*>4E_dl;BvSE zuB1*^VY@`A*VX(#pSp2Ras}HfAs_C57_5TTum;w`ov;q>0^Sjq>){@_7w&@s*Z}v# zM%V#>K zuo~9FU2r#$Gp1CEi;&_Xq__wvE<%cnkm4ewxCkjOLW+x!;v%HD2q`W?ii?oqBBZzo zDK0{ai;&_Xq__wvE<%cnkm4ewxCkjOLW+x!;v%HD2q`W?ii?oqBBZzoDK0{ai;&_X zq__wvE<%cnkm4ewxCkjOLW+x!;v%HD2q`W?ii?oqBBZzoDK0{ai;&_Xq__xAx&TkQ z08hHWeHwPa&P0J(?Q4shgl)bN;drr3^b@PZ3u2LYk)Ov{QSgo^6nl7o`DyX7_=G*5 z@$-@uu&!Xe`fc`DYluD0KFJpLczc3v+q}hO2kgoAJiD?z-(F$2v-9mY?ZNij_Cfm! z`;cAC|8XbHjyaW`fp&p2#0lB^ong+!_NUGz&P*rWneD81YB={g8=axf!_F>exbuSZ zo^z)2cW0l&TS-zlGo&M>bD4Cd&zU0wvXXO!tRky85m{X}aITikJYQbpJRz@@ zTb#G#lk!zrRlXtj$foiGep<_q8PyrQ?y;N0IRUWHqsG733s;%nFzN(RGA_u8#)kzLjT~rqtQr%QHdA#bWddgwy zSaqyCLG@96r}3ss;*ag z@&dI|t(I4)wQ8fBr#7nxWK=z-o|HGMZEBmmO}(q$m3itT^^v??9Z(143iY}AQm#}# zy7gqtZRj?UJKdIUOZl7|bc6DFw~gCHzTh6?4wP@YC%7lbz3wPCNA7b^c2AZcxu?6Q z%l+=%?tSuO_epoV{M>!p{Xl->e&>EKe|8VL2jxMZ>+{K9eRF+t zTn2OC8ki5)!gY`f3t%Cvg4M7F*20~z4p{vl?gmyIvED5#Sfww>?;yzUz`M0!!TYo1 zLkkPup%tv|6=b*(tnL*L0l6LoS%=8g5=Ik+(L-TDz6Ze?Ho+P;u@#;KR{IK8ABm@6 zJ3I|L;8}PMo(Il_ESL?K0?*C*8}RI`%i&763Lz0hPVcR&nQ!D?6oYvE2nHkc&}+dLne=VQMByWvH633y&M z&&z%dUI(6;{U*Ex@4&mT2i}AC;REsA$$b;;bY(#+n)l@+5Q~9fG^=I_!_=p zCiG&M0i56A{0`@IilKy+;tohq;D<_poJeFuA|n#{khP&M)Q5(EOh}%&3P5G30wdu` zR^ZSkF4u6m2bX(rxd)f)xd+M4!gKJ^o<7>ow;i5_9q=sBUj9>oXX~fk{j|BCHutXt z+T2fj2eceD{!7!)tM7vX*Z}v#M%VeE(ONHe};{dqItZ3q2|$V zDE#|tpZ}{iPm{lF9yG;YHqZYl?+VRh*32>6^RLuA|6W?>47{o%d0U5wn*U$bKJEX~ zK7VPSzhXPYQgm#m>`lWXy%T@>^Sk9jnYc{GoCG>>^Sk9jmttbw&~C#(a;Q|8e;LGCT)(LCnSJUl&* z=(b06+atQ|5#9EPZhJ(xJ)+wl(QS|Dwnuc^Bf9Mo-S(JA^O#5Tm`C%NNAs9R^N2Bd z#F#u{Odj)S9`k6P;4OaU(LCnSJe^sdc{GoCG@W6>^S&sqT2!>y3&=`oi?oXKNe&0}88vj@Ro7y@(Hw}ih-VHqq3KF{2m$K0A{-YUO? zzcE+^t6>eSg*yRx!T$R1YBG;`Igfcck9j$dc{z`HIgfcck9j$dc{z`HIgfcck9j$d zc{z`HIgfcck9j%Ieh=P<58&^x7xux2@Dc2Xj{%usUe2?T8|LLa=H)#5OZW=DhHpyq zoL$V{8NfA|oAa2PV=ajB7Cq+YJm%*-=I1=-=RD@;Jm%*-=I1=-=RD@;Jm%*-=I1=- z=RD@;Jm%*-=I1=-=S*%n>@QDMhAJ=;o+Mi=ZOa^;#~hu<9G%A;oyQ!V#~hu<9G%A; zoyQ!V#~hu<9G%A;oyQ!V#~hu<9G%A;oyQ!V#~hu<9G%A;oyQ!V#~hu<9G#ZI0qC89 zFbD?25Eu%_K?qKSac~lx4CCPxU5u_6peEFU+E54TLOrMt4WJ=3g2vDUG9e3^LNjO%EubZ|f*`bpHqaK@L3`)`9U&V! zL1*X!U7;IvhaS)qj)7iqEcAvx&=>lF{u#hk2Erg13`1Zj90wsd5yrtua59XCQ{YrM z4NiwMU;>;8ylI119>gmT;*|&S%7b|2LA>%HUU?9&Jcw5w#48Wtl?U<4gLvgZyz(Gk zIsPGB1Q){$xCCaxESL?K!euZAu7UY*EnEk@SB6&}#Fh)Inm&kk9>hBj;++Ta&VzX8LA>)I-gyx3JcxH5#5)h-od@yG zgLvmbyz?O5c@XbBh<6^uI}hTW2l38>c;`X9^B~@N5br#QcOJw$58|B%t)|cnnnMd{ z39TRqt)UIHg?7*$IzUIrhEC8Kx*3~c<<^j(a?>vZi9>hBj;++RAo-f{c5br#QmJi~M2kn6{2nNFt zSOQC787v2V>}`+-`EUosU=^%}HLw=$1Z1TAdrEjlXyhOsbr6p_h({g7qYmOx2l1$b zc+^2W>L4C<5RW>DM;*kY4&qS<@u-7%)ImJzARcuPk2;7)9YiAs?GNE2*bg5A&l!(8 zX!ES`sDpUaK|Jap9(53pI*3OdbSCo6G8glA2J903@v4J()j_=KAoH(5G;$D+I*3Od z#G?-4Q3quuKxXi$gLu?IJnA4Gbr6p_h({g7qYmOx2l1$bXyPE=bP#Vki1rPtr1lNs zQ3vs;gLu?IJnA4Gbr6p_h({g7qYmOx2l1$bc+^2W>L4C<5RW>DM;*kY4&qS<@u-7% z)ImJzARcuPk2;7)9mJ#7@^CzF8`B@}oq_j}j$6N|gL4QSzfi$&V5xKT4GRC{gmGM9Gg5B|l1({3ucK zqeRJ%5+y%Ml>8`B@}oq_j}j$6N|gL4QSzfi$&V5xKT4GRC{gmGM9Gg5B|l1({3ucK zqeRJ%5+y%Ml>8`B@}oq_j}j$6N|gL4QSzfiEe|e&i(v*_0yE(X_(!u--pOay!Ci1S ztcQExUbqhmU<2F_8(|Y{h6mt5cnBVbN8nL-40!+D;{A7v_unnvf48>6lTZZP;3?P+ zPs0x0yxs}VBr@%~MC2i^Z0!v^iEQ956E8GUO zCGRvw`9>rvI>FRKjx@}OwuJ544162#ugI zG=WUWf~L?6nnMd{39TRqt)UIHg?7*$IzUIrhEC8KxAN8zmr9NCyV?}Rxyy@$s)g#MSdrn91%A8 zoopM(?_`tT$yVTk56JIilLNyh2Zl`!44WJnHaReCB*rGclU*Is0m-q+?_?u6Hu;@w zq=$FWBR0}wBRzHlKzeL)JlW)UvXLS?lQnHw&=kl?WAh!Cb_-|;tsn@kp$)W!cF-O= zKu6#k+U-uz8M;7M=my=P2lRwvpcfnqy`c~E1@Zve$3X~=hhcC642Kag5=H?za%{fg z+8zUA;Y1h*C&9@u9!`N%;WRiM&VUIJhO=NIOoGY4yZQDxKn_CtJeUGg;e5CNrU5zd z>K93O9{`yl{nPzfqS6{rf;pgN>O2Gjtww^IvhLmj9K z^`Jg9fQHZr8bcF6E*#{-K`tER!a*(^&!CG>#mK>}l2W!be z<2hJM4%U)`wdCxIzwGQ`q@s>|6Qd`opQL`0`bp|1sh^~NlKM&NC#j#LevL;n6 zq<)h6N$Mx5pQL`0`bp$gBDWH`mB_8^2mN6X42B_qEX(5{1joZLI01&k2p9>YAO}Xn z7&sp;fN3xtE(8xQf{S4WAa4?RlgOJy-X!uSkvECFN#so;ZxVTv$e5fD*FqlL4l5xa z?tmDqg4M7F*20~z4(@`xVLjXf_riTp02||SMzoh1(N1SX+s}yhx~e03GOE4JsJ5R`?RC{qNJXw?)tI~#*^F!_ zm|R#Mxv)HPVa3RW6(bi`><^jJuIDp1fX=-*#Pp$29QTKfIPAR^k8A*WWCO?}8$ce}0P@HNkViIv zJhB1gkqsb^Yyf#=1IQyAKpxou^2i2|M>c>wvH|3g4Iqzf0C{8s$Ris-9@zl$$Oe!{ zHh?^`0pyVlAdhSSd1M2~BO5>-*#Pp$29QTKfIPAR^k8A*WWCO?}8$h1V6^&>z2serubjBb2;sORU|`FVB$p1VCq*omiw0}>Rt-~&GdAPp)(WvBvGp&C?& zbjW}jP!noFZKwlvp&rzS2G9^1L1SnFnUDodp&2xX7SIw}K@eI)8)ysdpgnYej*tzV zpfhxVuFws-Ll5W)$3QPQ7J5S;=nMUzKMWvlH4p~DU>E{J;W*Gg$0zdfH}k~_FdRm} zNEih$pNP&M%_QL_*cgAh@(5K*%bQL_+Hvk+0U5K*%bQL_+H zvqy=Vg@~GktOn2!8bM=d0-2BnO`%!*L#sJ|TR=-_1wm*HZJ=%94WectqGlnYW+9?x zA);m>qGlnYW+9?xA);m>qGlnYW+9?xA);m>qGlnYW+9?xA);m>t1t9}{)v2I7x~04 z@`+vK6T8SKc9Bo)BA?hrKCz2@Vi)>{7oMLw~Md}0^*#4hrQ zUE~wH$R~D@PwXO}*hN0Ei+o}i`NS^riCyFqyT~VYkx%R*pV&n{v5S0S7x~04@`+vK z6T8SKc9Bo)BA?hrKCz2@YYI$-^Wg%R2Gij}@Zci27-qmFFcW5RZ?ge;CK?zb8W^&W zX`+E4;u`tZmHfR5B5*a#g?WI?6A=s%5eyL#3=t6w5fKa#5e!+#y>$aDg2iwnMByg5 z8E%0kuoRZTa<~<46TPiGxE)r&O2~&hAO@>oHLQWPaA)EGF_Z(uP!147IY12M05OyU z#83_pLpeYUC7 zUVz>3BD|FN(RvwPfmh)*cpctI?BUIoJ>)6dL!Pod)6dW9@}~@F9EzpTcMGC441%Szp69@GX1?-@^~^Bm4wE!!M#2k=l?w00zP!7z{&z z=Ru@4M5H!Eq&7sPHbkU0M5H!Eq&7sPHbkU0M5H!Eq&7sPHe{~_bQF==5UV#sL})`q zXhTG3LquppL})`qXhTG3LquppL})`qXhTG3LquppL})`qXhTG3LquppL})`qXhTG3 zL&S|jL})`qXhTG3L-v077|=6BXhTG3LquppL})`qXhTG3LquppL})`qXG271L*!(8 zn&@nZ=xm5sO1{IniKA>GN*f|d8zN8Jk3?!iQi1|sBA;k&h`eokh_U1owGGM2qBoJ- zkWA+?NNlZipyuh$wD|I7~iqm@Tq7$Dy0#!y;2sH)0C; z#1!(0DdZF74H4xH5#W5J#A!r~L&P7psL|FGH3r67J=KXYEtxn{R@f;TBjTdaI@EUk*f#6;WfA$2O5;MdVl!ZB|5& z)hfzX!&)G6uZY~MyV$-PHgc~|iV)H3kXv9)aW}yIu#w31CU~0d9k3Ig;s0Imb|RnH zNIuc-5Yg@s(e4n@?vTs#bH5Y4-Gd@T#5?3$kjN+M9U|%-@~vn4UeTLxW$EqP!1n!# zJ-&_bc;ZLj7TC@)Ps0w_$^K_JZWrax@;|amggiuqJVY#I3wiZ^B%ZQ`XnBZed5CCv zh}g;&Vk=w7vG*g9^AM5q5V`h#BzhhqdLAO@-j9D-dw*GbSaC;h?QQwX+GEs5bN*%R zVQKwk?fqr#{blX_W$pcC?fsvy_Jl32hUG$tRpJ@3j7Z66;t4BYj}af(C-M^{v*$^6 zYm?ivjUBenvOAgFo?Xc8`KvwFqtA%$}{**ksCdh&LrIU7vg&W+^l%y2fznq=>MP&Ss0oh{_)97Oicp>nA6 zcX@%l!r3dYCZFf`GFLw2{45`lg|fNaLMG3k+(#zQ6XYjk^2{NR=Qrff6lCliZ!&hC zrtnC}oSC6&$g@-(a&=B3CubirWa@037m|&0p!C#WvT_F$=(1HTjTwgDjm})O+eZ`IP!V zeJHo9kJTq~7r8pWkk6~H)K_x1$=LZK89N)xAKffBOa9_EbDPP7CVS_vZfo*({-*PG zD&^+5IjWk@*r}@PT%9Ui=jv3ob*@g;KKm&)LD`=gcNQ=VPj~$R@^khx`8oTW{G5YK ze$K%rKj#pWpL3{R=jRNW{G4RxBtPeHlb>^h$_x z(ZK3X)XuW{TQh~UW)aP@tShW5*uIhom1Qj?=2X+Vm8g?t-9{{_inYUfMl`f`Suctv z)=SpwqK5T`^^vG-eQJHi?=P({`TZ3UlzP@dyN>YLby+pz*!AotY-ieig>CmEwqn@> zh^AQfP1-fBO| z@kOk~$*{NC+t~Y*{S@2V?d|N{X+O*F=ZM5u_N(@*qLKX?5g3ci!f*4bcZjT5_5u3< z+n*3YvFvYIujAO?+dojxA6c8@kbAh8GnBCQ#&LX3FJU{!vfjpV1~>!R9>lsEhkV4x z@%sd4BEKg&7m0M|V&X6sxryhBG-sZ(M);kz&RP*b-`&OUyPfr-vCdY^?@i8wqLK5E z^9<#?SXZaegD1O{V>x@AJ)#eK@jW4(4~XViT0e?@=*L5%p;Jsu$I@C- z)Idurwq5CpPSPiRLP|f89Sgk~5S3+`OrxX{@f}N6Cc;w%9a^33bfP>}WCk%F3w>IX z?OMcmELlg^;XHMT^;oi=tjA~T6YsHPL!v#F*1424lg&g!^lEcH)k3xqwrol4$C9mN zf3^p(9>aZI5s6lwBt`M79_W`9C7B5U*0l<$x`M3&qs zcTxT<>tG!DihPBVSLLgm^ELT8N4~+j7)QP(-w{6fF6&|(`M!LgW61R^G8iHD@!1bq zC*#QdtdwyWF+LXQ@&K!49CAQ^#(BPwUvTv=<(GVle9+YGYvNrs8Be|uwjNQKMI;Bb zuozLQ@S9A~qP41~s)-(|I#I7Nj4>HP=Z3B!x{w>XHhb$6?P{$Ws0JLMGHo<>o`NM;+r)X&#o6;)k3vUbW=B|8`xf?7O@>A z%2r)1QA;^;nOerRmaFA#-%6ydy2?{|Y_BB3R$Z-9tJz+o)^N;PwU+HWiLzB!cd5JC zzDM0lWbi&!Alj-8Y6HjIukL3icca=!%Wqbj*?vGhz%h@h$2g`?J;C-?wUst}lIWbp z*!isJubxw^6;;ox-J-dAQN1VzsF&1BY`?5tru-H43Ngu7)vMw-^_pU}t$Itn#oj$? z5AjIGS}}^T_5)&ue^-AOW7S@@SDdK!seP2}SNp~BI$yRJtv*qoh(YRW^|ctL$6(>= zF__<(ZYJ@)rfyS_qeo&fQ0LC3oH1C`*JCihR}n|FTr#nXs_sVOht=Ju-JNVdL)@@B z27Y6IJx6EG#`L^P5pwNS!rX^wr}rCFILy$p-nd*(P5$d&!qAs`xhe zHn2_BY*AT{$D#(~G2@hPr*9|a&k#GT;@johMftPD4lO-43rCO5!uDtSvqTnSa|e;; z@5rhxM~~3_CWE#J=nc1l+GSFm>_aY@U6hyMqq}ez-KR3T_hxk0Z!GxC z7@xryKbp5H#_%HixqBx!HGnj#`#|-Rc965)XP#+`zLeYisewk>-n7-RBCF?G0E89<6 z+u45FVrJgh1Z|8>(AL-ljj##6#8%LDKyzaUSjG!EQStP49`*iJXS(eV9Pb=Y$uMUa+uFjYW-N@_#=^+Z-+q9tFw2?6F|(c7Y+veJ%9$_2 z@(38q!!edeRbzQnHI_$fV|lbTmPZiFgC4?nCOjglI*&S!QlH1LMXDNGq`k34s$z@0 zBM z>m;MpF3}cAl~RkOI`&7>@~~xXtPMNG+Bn|W8N=}Hnu?Cb+GvBd(UN1dg;CvD7#YUG z7;7wy5!(L~eq&qIG`7Vb?TPWmo=7+LL{%(_M?`J;D3(Ohh6u{7a;rESOM($X7P0C! zAh*eFqN#j}mAAIsj&0Et+hQkspTWWiU|~GV_H(Sm4anzNiEGIhSc@BwyIGCfQohJ~ zTuZ*hirj#F8C%3Mwn)nqTO^1r@&7ZTU9a??@~^zI$R1+wWnQWE;DrGIq&_ zY=4ABVjGLZ!i)Wcl27HQ*j1llm-yx9@^e0=trNeoOR5^Xq@l4(YGIcM(M(xbCv}Z= zQrlQ38OAy})>tP4jdgOSu}(S~>!c5Ua2;`~s;lZU((_#j*d^LV8E9;jj>bmmV{DW& zjEyqR*eKnNjndQDDBX>X($m-|-HnaXQ~S_ZIeeo9zxhTBervl#8M~y0_MsV}wMA0H z*djxWEz;ZAB3+FwGQ`*-y^Sq0*w`YyjV;nk`_@<|e8&a9wMA0HSR`GIMbgh$B>jy= z($82V{f$LZ$5Tp#C+v@RL}&et9O4vXe@rm;$53N`Of>e#Bx8RJRUfJk#bjatAB(e$71G35 zA)|>0d@fE`U#Krc6CD*0Cm&{!5EUS+ytYMhbW}i`MpU4+=$m4fG%ePr`+vqC+!mA1j1)*k-EkfscUQz>AS&qgUHZv0#V7>B^jl5NrgpH z$=D)Q^f!12<$KKcnCNKil1A7ij8?uKSSPKFbyC+@CzXtK(g^G1S@u4MjnY`h5`;}G z;Va?yeeJ`?GgeD2W3|-M5e3mwM-=$2?G?+|D^-oXV!rW1)Jm~es+QU-+EO{jSR`$X zMbZX~<^3h znzEXeMAD|DMX(fn*bLP~4Iu`kXQf-er&(a=&xMCm60t>G`1|YMjCTC~#r#fg3!Bwx z!uPYEUz}N-m1XIlW>!{umR%#BjsMKJ7|$+AR4>^lLx&#qi-W>#SNv-n6EXSGv?=DJ zbue!Z`*@9}ExUE?-lcQxS~cCQlzx^vV+uN}C4qxfigIN0gT@Dlb1rJkKKbvg0etCtK4~%C9UxeyZi?gk^We%K zeO`k-?9ME6H~QA}y}7MAckkAsOS&pITn&f%4-&urA;YjI!%5C@ri{D+Jc64>8DLaqmNDvVEM7-rGeGoacq2# z(H%}%O#+KczSn0?1WkF_(Z0aa_~l5dOw>-6n{JgZ8vd?Zb*qt8%W`T}wSBF+ckj{d zhP4~#QaX(rkqUX>bkYP!vucCec@b!)ZKO02QnrE_xJj82%gjI z!ege;aCawbRop)`!DCRon0uCN=|Myc zK+_v_U#jrkhl`(z|K{{7o_GYsACNyCO!NO-TyZO9m-jCzlb}HCmQ)EkOwQ8&qsmV~ z9-Y$uJU*pAw+bvEb}K}=1eP3eZTy=9VE_E}$rL>}?erIJa**Dl}RO6%0*wYB(^ zm+OJ1;=D$T_}q(ne_$Lf&^q;ViMz|o5C2^G13m1#rPm{>KPV}#h-LYZ^SgeKd;rOT zJ8d%~fH4PV=n=d8rvL1d%_ZA(rKo(ee4)F@h}!0Oz0`95L>Aj=(e2BfNBu&!;&{%9!5U9o7axj6 zFiD62{a92XQAS(Qjoy>h)OG9B%Iem#d-EtI9FHfXc9+h5?H zuiHN|?jNY+M-Tjbl@o~HZOM+_S@#`Hm1)GqC9`y+AxOs?0h`HthH+i48`JcTWcg&i z*HSlnvRvB&$?~aImy~jC<0Q*HVpT^ven#2x`nu)kZ{?cn(mTy{bW@_zw;7e*x=f+} z=_9p$PCrW(KgAcP9_^!z7pM7uI_UN|n$|+Z=F=*VCPi#)R%3^;GoxEqo2Sdz-lBU3 zk2_Olq*u3PR@3G!?fKS2Rff%2eoFpVbFcYg#Ysq5_4o-H*M4aA+F@l__y1ZP&xwD( zIsW1oOYGgI0#@5M_E>F_61LcqNLaj0d~>!XsI>#8+xmgVG@w6Wh~`gH4e-^Kfttg&hoS-$!6%hI5doyO|iAFSMkf@`y-}^2$Ix$&J647KiW-4ug2qw!Hx=Ax0otRpV zPJA<|KT5pRa(A}vl$IABR=&Xfmg_r-Wu^ z=c%a8jMCcNubUy|uI9LBrJP^;XUX$i<-TbAv&|)!>Sil1pJ|P*IDe)0%F6v`D#rh^ z`${Q4O+AtDU`PdgM4be7V>;5uCM*T zzStgLvuX-VN2~FYJukZ+CNN|f0sDL_=oyDvyFe4 zEdO3?HU6PFf2GXw<9`qxjen?(k@}{i>f`Yb^>g4pOnuSio8!f9eWS~bao)_b%0)9P zU0qYsaKF93IHN*HD@^hVlMd-#O|{aJ(mf#M1a8`IE1U;01urNL>E2_V&Ek%;t9^mvcoE z)6E|K3p`c2=Pt8nd16l4Rs1cJdu;kOSIOV3ud;+Yas5k7y}mG?h$W_)Pn2qb@_SB- zg*J4} zoENnH)=;OfNi8+?_=`rhSrLEh%{Sw(ubfgeuZlI4!@iGS z@k+va%NqQvb)8jx@!5}-+?uo){cWg;Bid0HjBe}b>f>)y%sY5TT_<~4UY`B>KUS|m zcmE55x%Vd^~m+y<-T*UM|suA^q$c;brh7tH&5)w0(w8dLJMbAJ5odX>(N zf6_2j>>eq(EwvS=ZI7f|Lk~Ur`4tOFrLnJ(#tunobdI)4{=UUs8~sDI(jr+h@*k;M zV7L)Tyz)N^`>|?ie-h zo10QTK?NiUc(3e>@)N!7v<;PFqo$!{XKHna8{PjfcZGI**XkN>W zIVMbqx~)+@6lJCRul?nN_1xlgYg2qw@y+ha@4x?bQtFLzg3TqXOv}^|O|%EVz($-w z4{U@P=%X!CPN!bAHr5*!{j?x^LbW=_*XuW9*l&9)8gNpt-0QqSercUz`5KQpVOZ*Q z^bN!_0<{_SOB>YhxLcDqT=KC0t(0=xy(FGFFi&nzv^H|5b~x}5V@8d_TZv?*V{MwhR~r=AcPr_W=*XUcD` zqXX8ue15XrG4&7JX3D8g;GX1p?4UV5|6P5aEtFqx%(PWDtxSDlH|z4!E{2hoY?m`j z#s{*JpXc3p6Okovn`wvlOgpeYwH=7qO3cuT_9z*DSbMPF#YAL(X}hpLwO#c7fo6Yc z`>;Q?ee`~F{Xl6uu|Kt)^!{ti=S$nGWc*?6#eTKI>@RIM_NTU+-v5-@pKQO)#EnyW zIC1JC_8OPgrW4X*jbPi8;-iu-G7dQ=pmQVBw7NGVzFP2GrA){kHaW}ZPCn9HtY5rZ zHvL-m7taW3bpBT9GxW+1YT@(yo%^)(YLCg8WAvOU_r>FXC(BDB@nFdw=ede**prOnHOIT>#CsWQfT!<_PAQ)pe_xj;##3Ho28iVGQ{%JE@i+-`e%ffHafkR? z*T_9TQD{DKC!d&MRCw|e)8ZGIa%9MvV}_Ju`Ske5=1c=ip0ekc*VJ`qJ*TA+>9vy~ zmE_T0;(K$J-`8hGvOaNooRgJO|2gtnb9^4vK=yE9X?oUHe1xKkcQZfZoFA+3#|l#YT(lu-cmTI5$o&r3Fi6 zf+KgDBYBcC!}O~i7P==@uQ*?omJ=qb=tpe&j9%HniuRQLgM;x<@_6z~>hf~EqFyO2 z=P6NMu23tnE=PB1i@>rvXc35wl@^U?t+Op;CS1S4LdGXs(bB-Q41$RgljT*1 zu9jEDZ;Ov|Z@13YBaHr??4~>{^U*ZzXMV7ZGJkt-i^irkA zyT15Ax|o<;vPV~-{47y7TyeA!#pKz~NsKjup1i6y#FOQd6F;Yv>!4AxoHS=C@dmmR9tsj;`)^1wIh){etIIFEH8OVsg!!ovWKPAQ#%;R<2_8C^1C%%K3Prz zT3w#_Qa5=&C+HIj)UsfOYP9rFv zSw<22NAA-D4d-!Zm6qS4pBM3tGs-^Uzr}Qo&v>;%?^#?L37Ldhl^h&Cb0)Hf&hbd; zz4^x{&&5Jc{fTH|Wcj(SF5QEOvuAmN;U;-~U(9rb&v*gGbdY!Tz)QV+J4?$yGUd0G zmD5f~cn+rhj`-Z%Pm))*r8!Ujt@^qQrtUMQgM4P~H#LeSa>{CCTF})ko~#L1tdQsP z5)aZvEHQxOYB$qG^dcr>Gd07W>XBup*t>Ug$X&B3zVqeB;;(JAto!YL7Y@(4u$N!_ zcEQg0d-?OMDld$l(PzlD6S)8OCGN;?7I5+ z-~XQ+Lw%TjqH;2D(+;Ff<`DWr`wetKiR6EEHBx9*m)MZ&n3?jZ!vVQ&_jY= zhnkGS)6ULxzxWlUm^@s)qB}NuvGmiO9DlpCg*^SS^77fbTb3Q~$Hz$??>op_V5Yoe z+hNBqbVIs45!2<`A~46dA__}6*O?Z-AbFj5z0}V!9kR6ae1)my?gDoMpR@J+zuSu2 zadhBsKrO4(XL5EGpQZhoX{zm43Gu}typrS%Y9lH2L}f-2qEzHxLzR=IJ)8{F9Sg$=OEBD*}QHd30 z=Qq!o^ZeQWrBbHNRy^nd>E>4W-6h>ODSmzN{AxI3mphkWmT(V&-!Kz?JE;80v-&3K z0Dh@abG}tRVM4hUnWV8Z**c?4WPI8zDl4CD-%wUNj@Jq#dHf9VOId3icAj&DF(QpK zGRd@3@_3T3mY#pxVdr1y%SfJ|8MTz_(rM2uZN0+Oa(97`SUBDM(UKzHEwo0uo;UkL zIM_;QpbxE0r`@)7Qp-6l2ne4TaW|#5S87<;e@1HCm3rp7#j7WmUzvp&<(_%B)N81( ztXa$A-#ye~Y_rBAgHz^Ovr;cIX8VE3X_c&jKK~gL{o@b2NK$!}KGv~D9VJC|v$ZkZ znQ6_5kE&LDZG1uUc_u$v{#5nT>tST`@K$H!DlMOGot^TO^ixe9KTUj>QqH(jT0VvJ zDrTCEn7|`?1T^J(c^v0Ky~|cubkFctE{Ttbe;5BIKC-yj+H9p;)vO0f z;>Tb8`O1}_U!D9dg_+8(ST^ws)7zWgvD)P2#ov7Ao%ox1c~%>iq?ili*XawlHA^Y} zhDQd))rpB#TLzV*GAi%&X=DwVgH?j6ZCJ4YNc(w=O~it@=;eoDF4 zZOP-AB}ggPy(U>c&FY*|u6swae0r%dl{`N$0F;)WZ4a}nm)ED_{4@0V^)oDay1X}Z z{qz2SNVaOpYEQ*lDp$wRdem{41(dp7y^g2OhpUN@g0}aVt5#(EpwIc0pnqq z7Sqe2ljSUvCLmYVVwL_@UcSxuqCL2*+>9#8miKsNt^D|u^Q8N5c*~C0{$T0(pKu93 zl$V#+)4!GTw<|AadcO4dGhL#eM<_qdU70K|*`}Xh+3_r29-DGJ)9I!68}a>QJSTm> zjrFv7vfTHrUCAt~zFg}?J#AiE{+;M+rp-^Z0gH_8+n=jV& zF{89@AEwQXr0HeN74>?_jQWGkb4%?3spY9X<|XX`TFK*6@8cz7RV2&Lw-zOz1J_3x zlpkMlU9^?C?w~(hSGS+5?+-)sL)zgc9faZk`R2%TDhEp1OGDquG#Z7pOK||4w^m75h(bCEBu2f57x23B;(bDeU zf7|1Z`E#WxZ-{?t)xF{9G~!@dZzP^5ax_riQ!G(m*ZlvZ?K{AtJf8n=-}mml!wv|< z8W02%OH>4n1;sAd0I`dTfQo`3_6AWgDvH>z63x1Bm2nE_Z|C`RO^lu&f zFs!%EkM?=Ew2>Q%STC%z{uD{0J>Cbymw%Y6Bb8ELn?K<_|M&w}Yl~^U?MX#1mOPt# zD?RXUrwLrP!TuvNY27>!T<}FlGI5r2 zX!oeq?y6UP^{3Sev-GewOQc@Mk^EOoH`<=YF?B&ObNpnH~ZO^JgW|~ z51%jKo!d}at#X|CPh1xnNqmsmb9P=>28kqE9xYj7XNWNOFmMtZ5Q6X$7UL*34=h3i zWttTC?qWl8*aBXlMh(DQJ$jM+@Crju{fMP}yq|UBLm!M)-*~;~E9W0xyVRQSUV{vKe8_;*d|6;Ctl5V8zA15&< zdT|ni*8#G9kh>U7E_>jEsD!+3+=vKZRqMY>(utXdDwbtylqlY&hUIG^@RF~0*cTJl zOS!Z2)#c5R7J~$0!LMQgRMdIX(Ow9@rWuVsYQEIF`uL!C`fHEs z`JA=iH1hJ~K9*pWnFr4cYdt3silmd_q-6lE4z0J;K4g5N&9{_)ycRoQ^h z^q3x#+aRd9${ee%LcgBqx0Y>z)4>J0MI^BovBYWM?0a6HU9ieUzMJp8Z~2jZfkhs< z9*Z1fHgjKIQu%|m%DeCn!)4gne$-Cmv=oRgZTa3>WyQ;@vg)Nl!@(68V0Q #OJ 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ȇ@(g~$ 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 literal 0 HcmV?d00001 diff --git a/bskyogcard/src/bin.ts b/bskyogcard/src/bin.ts new file mode 100644 index 0000000000..ff550809db --- /dev/null +++ b/bskyogcard/src/bin.ts @@ -0,0 +1,48 @@ +import cluster, {Worker} from 'node:cluster' + +import {envInt} from '@atproto/common' + +import {CardService, envToCfg, httpLogger, readEnv} from './index.js' + +async function main() { + const env = readEnv() + const cfg = envToCfg(env) + const card = await CardService.create(cfg) + await card.start() + httpLogger.info('card service is running') + process.on('SIGTERM', async () => { + httpLogger.info('card service is stopping') + await card.destroy() + httpLogger.info('card service is stopped') + if (cluster.isWorker) process.exit(0) + }) +} + +const workerCount = envInt('CARD_CLUSTER_WORKER_COUNT') + +if (workerCount) { + if (cluster.isPrimary) { + httpLogger.info(`primary ${process.pid} is running`) + const workers = new Set() + for (let i = 0; i < workerCount; ++i) { + workers.add(cluster.fork()) + } + let teardown = false + cluster.on('exit', worker => { + workers.delete(worker) + if (!teardown) { + workers.add(cluster.fork()) // restart on crash + } + }) + process.on('SIGTERM', () => { + teardown = true + httpLogger.info('disconnecting workers') + workers.forEach(w => w.kill('SIGTERM')) + }) + } else { + httpLogger.info(`worker ${process.pid} is running`) + main() + } +} else { + main() // non-clustering +} diff --git a/bskyogcard/src/components/Butterfly.tsx b/bskyogcard/src/components/Butterfly.tsx new file mode 100644 index 0000000000..5a4124975c --- /dev/null +++ b/bskyogcard/src/components/Butterfly.tsx @@ -0,0 +1,16 @@ +import React from 'react' + +export function Butterfly(props: React.SVGAttributes) { + return ( + + + + ) +} diff --git a/bskyogcard/src/components/Img.tsx b/bskyogcard/src/components/Img.tsx new file mode 100644 index 0000000000..dac223180c --- /dev/null +++ b/bskyogcard/src/components/Img.tsx @@ -0,0 +1,10 @@ +import React from 'react' + +export function Img( + props: Omit, 'src'> & {src: Buffer}, +) { + const {src, ...others} = props + return ( + + ) +} diff --git a/bskyogcard/src/components/StarterPack.tsx b/bskyogcard/src/components/StarterPack.tsx new file mode 100644 index 0000000000..f73442190c --- /dev/null +++ b/bskyogcard/src/components/StarterPack.tsx @@ -0,0 +1,149 @@ +/* eslint-disable bsky-internal/avoid-unwrapped-text */ +import React from 'react' +import {AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api' + +import {Butterfly} from './Butterfly.js' +import {Img} from './Img.js' + +export const STARTERPACK_HEIGHT = 630 +export const STARTERPACK_WIDTH = 1200 +export const TILE_SIZE = STARTERPACK_HEIGHT / 3 + +const GRADIENT_TOP = '#0A7AFF' +const GRADIENT_BOTTOM = '#59B9FF' +const IMAGE_STROKE = '#359CFF' + +export function StarterPack(props: { + starterPack: AppBskyGraphDefs.StarterPackView + images: Map +}) { + const {starterPack, images} = props + const record = AppBskyGraphStarterpack.isRecord(starterPack.record) + ? starterPack.record + : null + const imagesArray = [...images.values()] + const imageOfCreator = images.get(starterPack.creator.did) + const imagesExceptCreator = [...images.entries()] + .filter(([did]) => did !== starterPack.creator.did) + .map(([, image]) => image) + const imagesAcross: Buffer[] = [] + if (imageOfCreator) { + if (imagesExceptCreator.length >= 6) { + imagesAcross.push(...imagesExceptCreator.slice(0, 3)) + imagesAcross.push(imageOfCreator) + imagesAcross.push(...imagesExceptCreator.slice(3, 6)) + } else { + const firstHalf = Math.floor(imagesExceptCreator.length / 2) + imagesAcross.push(...imagesExceptCreator.slice(0, firstHalf)) + imagesAcross.push(imageOfCreator) + imagesAcross.push( + ...imagesExceptCreator.slice(firstHalf, imagesExceptCreator.length), + ) + } + } else { + imagesAcross.push(...imagesExceptCreator.slice(0, 7)) + } + return ( +

+ {/* image tiles */} +
+ {[...Array(18)].map((_, i) => { + const image = imagesArray.at(i % imagesArray.length) + return ( +
+ {image && } +
+ ) + })} + {/* background overlay */} +
+
+ {/* foreground text & images */} +
+
+ JOIN THE CONVERSATION +
+
+ {imagesAcross.map((image, i) => { + return ( +
+ +
+ ) + })} +
+
+ {record?.name || 'Starter Pack'} +
+
+ on Bluesky +
+
+
+ ) +} diff --git a/bskyogcard/src/config.ts b/bskyogcard/src/config.ts new file mode 100644 index 0000000000..fafa18e743 --- /dev/null +++ b/bskyogcard/src/config.ts @@ -0,0 +1,40 @@ +import {envInt, envStr} from '@atproto/common' + +export type Config = { + service: ServiceConfig +} + +export type ServiceConfig = { + port: number + version?: string + appviewUrl: string + originVerify?: string +} + +export type Environment = { + port?: number + version?: string + appviewUrl?: string + originVerify?: string +} + +export const readEnv = (): Environment => { + return { + port: envInt('CARD_PORT'), + version: envStr('CARD_VERSION'), + appviewUrl: envStr('CARD_APPVIEW_URL'), + originVerify: envStr('CARD_ORIGIN_VERIFY'), + } +} + +export const envToCfg = (env: Environment): Config => { + const serviceCfg: ServiceConfig = { + port: env.port ?? 3000, + version: env.version, + appviewUrl: env.appviewUrl ?? 'https://api.bsky.app', + originVerify: env.originVerify, + } + return { + service: serviceCfg, + } +} diff --git a/bskyogcard/src/context.ts b/bskyogcard/src/context.ts new file mode 100644 index 0000000000..f92651cafb --- /dev/null +++ b/bskyogcard/src/context.ts @@ -0,0 +1,44 @@ +import {readFileSync} from 'node:fs' + +import {AtpAgent} from '@atproto/api' +import * as path from 'path' +import {fileURLToPath} from 'url' + +import {Config} from './config.js' + +const __DIRNAME = path.dirname(fileURLToPath(import.meta.url)) + +export type AppContextOptions = { + cfg: Config + appviewAgent: AtpAgent + fonts: {name: string; data: Buffer}[] +} + +export class AppContext { + cfg: Config + appviewAgent: AtpAgent + fonts: {name: string; data: Buffer}[] + abortController = new AbortController() + + constructor(private opts: AppContextOptions) { + this.cfg = this.opts.cfg + this.appviewAgent = this.opts.appviewAgent + this.fonts = this.opts.fonts + } + + 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')), + }, + ] + return new AppContext({ + cfg, + appviewAgent, + fonts, + ...overrides, + }) + } +} diff --git a/bskyogcard/src/index.ts b/bskyogcard/src/index.ts new file mode 100644 index 0000000000..ef8d48494d --- /dev/null +++ b/bskyogcard/src/index.ts @@ -0,0 +1,41 @@ +import events from 'node:events' +import http from 'node:http' + +import express from 'express' +import {createHttpTerminator, HttpTerminator} from 'http-terminator' + +import {Config} from './config.js' +import {AppContext} from './context.js' +import {default as routes, errorHandler} from './routes/index.js' + +export * from './config.js' +export * from './logger.js' + +export class CardService { + public server?: http.Server + private terminator?: HttpTerminator + + constructor(public app: express.Application, public ctx: AppContext) {} + + static async create(cfg: Config): Promise { + let app = express() + + const ctx = await AppContext.fromConfig(cfg) + app = routes(ctx, app) + app.use(errorHandler) + + return new CardService(app, ctx) + } + + async start() { + this.server = this.app.listen(this.ctx.cfg.service.port) + this.server.keepAliveTimeout = 90000 + this.terminator = createHttpTerminator({server: this.server}) + await events.once(this.server, 'listening') + } + + async destroy() { + this.ctx.abortController.abort() + await this.terminator?.terminate() + } +} diff --git a/bskyogcard/src/logger.ts b/bskyogcard/src/logger.ts new file mode 100644 index 0000000000..04b5d90469 --- /dev/null +++ b/bskyogcard/src/logger.ts @@ -0,0 +1,3 @@ +import {subsystemLogger} from '@atproto/common' + +export const httpLogger = subsystemLogger('bskyogcard') diff --git a/bskyogcard/src/routes/health.ts b/bskyogcard/src/routes/health.ts new file mode 100644 index 0000000000..0cc69515eb --- /dev/null +++ b/bskyogcard/src/routes/health.ts @@ -0,0 +1,14 @@ +import {Express} from 'express' + +import {AppContext} from '../context.js' +import {handler} from './util.js' + +export default function (ctx: AppContext, app: Express) { + return app.get( + '/_health', + handler(async (_req, res) => { + const {version} = ctx.cfg.service + return res.send({version}) + }), + ) +} diff --git a/bskyogcard/src/routes/index.ts b/bskyogcard/src/routes/index.ts new file mode 100644 index 0000000000..0c40f89d3b --- /dev/null +++ b/bskyogcard/src/routes/index.ts @@ -0,0 +1,13 @@ +import {Express} from 'express' + +import {AppContext} from '../context.js' +import {default as health} from './health.js' +import {default as starterPack} from './starter-pack.js' + +export * from './util.js' + +export default function (ctx: AppContext, app: Express) { + app = health(ctx, app) // GET /_health + app = starterPack(ctx, app) // GET /start/:actor/:rkey + return app +} diff --git a/bskyogcard/src/routes/starter-pack.tsx b/bskyogcard/src/routes/starter-pack.tsx new file mode 100644 index 0000000000..cb3a553272 --- /dev/null +++ b/bskyogcard/src/routes/starter-pack.tsx @@ -0,0 +1,102 @@ +import assert from 'node:assert' + +import React from 'react' +import {AppBskyGraphDefs, AtUri} from '@atproto/api' +import resvg from '@resvg/resvg-js' +import {Express} from 'express' +import satori from 'satori' + +import { + StarterPack, + STARTERPACK_HEIGHT, + STARTERPACK_WIDTH, +} from '../components/StarterPack.js' +import {AppContext} from '../context.js' +import {httpLogger} from '../logger.js' +import {handler, originVerifyMiddleware} from './util.js' + +export default function (ctx: AppContext, app: Express) { + return app.get( + '/start/:actor/:rkey', + originVerifyMiddleware(ctx), + handler(async (req, res) => { + const {actor, rkey} = req.params + const uri = AtUri.make(actor, 'app.bsky.graph.starterpack', rkey) + let starterPack: AppBskyGraphDefs.StarterPackView + try { + const result = await ctx.appviewAgent.api.app.bsky.graph.getStarterPack( + {starterPack: uri.toString()}, + ) + starterPack = result.data.starterPack + } catch (err) { + httpLogger.warn( + {err, uri: uri.toString()}, + 'could not fetch starter pack', + ) + return res.status(404).end('not found') + } + const imageEntries = await Promise.all( + [starterPack.creator] + .concat(starterPack.listItemsSample.map(li => li.subject)) + // has avatar + .filter(p => p.avatar) + // no sensitive labels + .filter(p => !p.labels.some(l => hideAvatarLabels.has(l.val))) + .map(async p => { + try { + assert(p.avatar) + const image = await getImage(p.avatar) + return [p.did, image] as const + } catch (err) { + httpLogger.warn( + {err, uri: uri.toString(), did: p.did}, + 'could not fetch image', + ) + return [p.did, null] as const + } + }), + ) + const images = new Map( + imageEntries.filter(([_, image]) => image !== null).slice(0, 7), + ) + const svg = await satori( + , + { + fonts: ctx.fonts, + height: STARTERPACK_HEIGHT, + width: STARTERPACK_WIDTH, + }, + ) + const output = await resvg.renderAsync(svg) + res.statusCode = 200 + res.setHeader('content-type', 'image/png') + res.setHeader('cdn-tag', [...images.keys()].join(',')) + return res.end(output.asPng()) + }), + ) +} + +async function getImage(url: string) { + const response = await fetch(url) + const arrayBuf = await response.arrayBuffer() // must drain body even if it will be discarded + if (response.status !== 200) return null + return Buffer.from(arrayBuf) +} + +const hideAvatarLabels = new Set([ + '!hide', + '!warn', + 'porn', + 'sexual', + 'nudity', + 'sexual-figurative', + 'graphic-media', + 'self-harm', + 'sensitive', + 'security', + 'impersonation', + 'scam', + 'spam', + 'misleading', + 'inauthentic', +]) diff --git a/bskyogcard/src/routes/util.ts b/bskyogcard/src/routes/util.ts new file mode 100644 index 0000000000..718ed592a1 --- /dev/null +++ b/bskyogcard/src/routes/util.ts @@ -0,0 +1,36 @@ +import {ErrorRequestHandler, Request, RequestHandler, Response} from 'express' + +import {AppContext} from '../context.js' +import {httpLogger} from '../logger.js' + +export type Handler = (req: Request, res: Response) => Awaited + +export const handler = (runHandler: Handler): RequestHandler => { + return async (req, res, next) => { + try { + await runHandler(req, res) + } catch (err) { + next(err) + } + } +} + +export function originVerifyMiddleware(ctx: AppContext): RequestHandler { + const {originVerify} = ctx.cfg.service + if (!originVerify) return (_req, _res, next) => next() + return (req, res, next) => { + const verifyHeader = req.headers['x-origin-verify'] + if (verifyHeader !== originVerify) { + return res.status(404).end('not found') + } + next() + } +} + +export const errorHandler: ErrorRequestHandler = (err, req, res, next) => { + httpLogger.error({err}, 'request error') + if (res.headersSent) { + return next(err) + } + return res.status(500).end('server error') +} diff --git a/bskyogcard/tsconfig.json b/bskyogcard/tsconfig.json new file mode 100644 index 0000000000..a5c3beecb1 --- /dev/null +++ b/bskyogcard/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "NodeNext", + "esModuleInterop": true, + "moduleResolution": "NodeNext", + "jsx": "react-jsx", + "outDir": "dist" + }, + "include": ["./src/index.ts", "./src/bin.ts"] +} diff --git a/bskyogcard/yarn.lock b/bskyogcard/yarn.lock new file mode 100644 index 0000000000..0403efb84e --- /dev/null +++ b/bskyogcard/yarn.lock @@ -0,0 +1,1113 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@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" + integrity sha512-wyWr4uIabTgDTBY99y3QyrFxcIx1Mh4DkURgSv8sd/b+w0lfrZAJh0Gg9BXdg/iIjcf/M2lCTL04r0vASfkMVg== + dependencies: + "@atproto/common-web" "^0.3.0" + "@atproto/lexicon" "^0.4.0" + "@atproto/syntax" "^0.3.0" + "@atproto/xrpc" "^0.5.0" + multiformats "^9.9.0" + tlds "^1.234.0" + +"@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" + integrity sha512-67VnV6JJyX+ZWyjV7xFQMypAgDmjVaR9ZCuU/QW+mqlqI7fex2uL4Fv+7/jHadgzhuJHVd6OHOvNn0wR5WZYtA== + dependencies: + graphemer "^1.4.0" + multiformats "^9.9.0" + uint8arrays "3.0.0" + zod "^3.21.4" + +"@atproto/common@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.4.0.tgz#d77696c7eb545426df727837d9ee333b429fe7ef" + integrity sha512-yOXuPlCjT/OK9j+neIGYn9wkxx/AlxQSucysAF0xgwu0Ji8jAtKBf9Jv6R5ObYAjAD/kVUvEYumle+Yq/R9/7g== + dependencies: + "@atproto/common-web" "^0.3.0" + "@ipld/dag-cbor" "^7.0.3" + cbor-x "^1.5.1" + iso-datestring-validator "^2.2.2" + multiformats "^9.9.0" + pino "^8.15.0" + +"@atproto/lexicon@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.4.0.tgz#63e8829945d80c25524882caa8ed27b1151cc576" + integrity sha512-RvCBKdSI4M8qWm5uTNz1z3R2yIvIhmOsMuleOj8YR6BwRD+QbtUBy3l+xQ7iXf4M5fdfJFxaUNa6Ty0iRwdKqQ== + dependencies: + "@atproto/common-web" "^0.3.0" + "@atproto/syntax" "^0.3.0" + iso-datestring-validator "^2.2.2" + multiformats "^9.9.0" + zod "^3.21.4" + +"@atproto/syntax@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@atproto/syntax/-/syntax-0.3.0.tgz#fafa2dbea9add37253005cb663e7373e05e618b3" + 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" + integrity sha512-swu+wyOLvYW4l3n+VAuJbHcPcES+tin2Lsrp8Bw5aIXIICiuFn1YMFlwK9JwVUzTH21Py1s1nHEjr4CJeElJog== + dependencies: + "@atproto/lexicon" "^0.4.0" + zod "^3.21.4" + +"@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" + integrity sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w== + +"@cbor-extract/cbor-extract-darwin-x64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@cbor-extract/cbor-extract-darwin-x64/-/cbor-extract-darwin-x64-2.2.0.tgz#9fbec199c888c5ec485a1839f4fad0485ab6c40a" + integrity sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w== + +"@cbor-extract/cbor-extract-linux-arm64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@cbor-extract/cbor-extract-linux-arm64/-/cbor-extract-linux-arm64-2.2.0.tgz#bf77e0db4a1d2200a5aa072e02210d5043e953ae" + integrity sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ== + +"@cbor-extract/cbor-extract-linux-arm@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@cbor-extract/cbor-extract-linux-arm/-/cbor-extract-linux-arm-2.2.0.tgz#491335037eb8533ed8e21b139c59f6df04e39709" + integrity sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q== + +"@cbor-extract/cbor-extract-linux-x64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@cbor-extract/cbor-extract-linux-x64/-/cbor-extract-linux-x64-2.2.0.tgz#672574485ccd24759bf8fb8eab9dbca517d35b97" + integrity sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw== + +"@cbor-extract/cbor-extract-win32-x64@2.2.0": + version "2.2.0" + 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== + +"@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" + integrity sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA== + dependencies: + cborg "^1.6.0" + multiformats "^9.5.4" + +"@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" + integrity sha512-FrJibrAk6v29eabIPgcTUMPXiEz8ssrAk7TXxsiZzww9UTQ1Z5KAbFJs+Z0Ez+VZTYgnE5IQJqBcoSiMebtPHA== + +"@resvg/resvg-js-android-arm64@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-android-arm64/-/resvg-js-android-arm64-2.6.2.tgz#b8cb564d7f6b3f37d9b43129f5dc5fe171e249e4" + integrity sha512-VcOKezEhm2VqzXpcIJoITuvUS/fcjIw5NA/w3tjzWyzmvoCdd+QXIqy3FBGulWdClvp4g+IfUemigrkLThSjAQ== + +"@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" + integrity sha512-nmok2LnAd6nLUKI16aEB9ydMC6Lidiiq2m1nEBDR1LaaP7FGs4AJ90qDraxX+CWlVuRlvNjyYJTNv8qFjtL9+A== + +"@resvg/resvg-js-darwin-x64@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-darwin-x64/-/resvg-js-darwin-x64-2.6.2.tgz#e1344173aa27bfb4d880ab576d1acf1c1648faca" + integrity sha512-GInyZLjgWDfsVT6+SHxQVRwNzV0AuA1uqGsOAW+0th56J7Nh6bHHKXHBWzUrihxMetcFDmQMAX1tZ1fZDYSRsw== + +"@resvg/resvg-js-linux-arm-gnueabihf@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-arm-gnueabihf/-/resvg-js-linux-arm-gnueabihf-2.6.2.tgz#34c445eba45efd68f6130b2ab426d76a7424253d" + integrity sha512-YIV3u/R9zJbpqTTNwTZM5/ocWetDKGsro0SWp70eGEM9eV2MerWyBRZnQIgzU3YBnSBQ1RcxRZvY/UxwESfZIw== + +"@resvg/resvg-js-linux-arm64-gnu@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-arm64-gnu/-/resvg-js-linux-arm64-gnu-2.6.2.tgz#30da47087dd8153182198b94fe9f8d994890dae5" + integrity sha512-zc2BlJSim7YR4FZDQ8OUoJg5holYzdiYMeobb9pJuGDidGL9KZUv7SbiD4E8oZogtYY42UZEap7dqkkYuA91pg== + +"@resvg/resvg-js-linux-arm64-musl@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-arm64-musl/-/resvg-js-linux-arm64-musl-2.6.2.tgz#5d75b8ff5c83103729c1ca3779987302753c50d4" + integrity sha512-3h3dLPWNgSsD4lQBJPb4f+kvdOSJHa5PjTYVsWHxLUzH4IFTJUAnmuWpw4KqyQ3NA5QCyhw4TWgxk3jRkQxEKg== + +"@resvg/resvg-js-linux-x64-gnu@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-x64-gnu/-/resvg-js-linux-x64-gnu-2.6.2.tgz#411abedfaee5edc57cbb7701736cecba522e26f3" + integrity sha512-IVUe+ckIerA7xMZ50duAZzwf1U7khQe2E0QpUxu5MBJNao5RqC0zwV/Zm965vw6D3gGFUl7j4m+oJjubBVoftw== + +"@resvg/resvg-js-linux-x64-musl@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-x64-musl/-/resvg-js-linux-x64-musl-2.6.2.tgz#fe4984038f0372f279e3ff570b72934dd7eb2a5c" + integrity sha512-UOf83vqTzoYQO9SZ0fPl2ZIFtNIz/Rr/y+7X8XRX1ZnBYsQ/tTb+cj9TE+KHOdmlTFBxhYzVkP2lRByCzqi4jQ== + +"@resvg/resvg-js-win32-arm64-msvc@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-win32-arm64-msvc/-/resvg-js-win32-arm64-msvc-2.6.2.tgz#d3a053cf7ff687087a2106330c0fdaae706254d1" + integrity sha512-7C/RSgCa+7vqZ7qAbItfiaAWhyRSoD4l4BQAbVDqRRsRgY+S+hgS3in0Rxr7IorKUpGE69X48q6/nOAuTJQxeQ== + +"@resvg/resvg-js-win32-ia32-msvc@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-win32-ia32-msvc/-/resvg-js-win32-ia32-msvc-2.6.2.tgz#7cdda1ce29ef7209e28191d917fa5bef0624a4ad" + integrity sha512-har4aPAlvjnLcil40AC77YDIk6loMawuJwFINEM7n0pZviwMkMvjb2W5ZirsNOZY4aDbo5tLx0wNMREp5Brk+w== + +"@resvg/resvg-js-win32-x64-msvc@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@resvg/resvg-js-win32-x64-msvc/-/resvg-js-win32-x64-msvc-2.6.2.tgz#cb0ad04525d65f3def4c8d346157a57976d5b388" + integrity sha512-ZXtYhtUr5SSaBrUDq7DiyjOFJqBVL/dOBN7N/qmi/pO0IgiWW/f/ue3nbvu9joWE5aAKDoIzy/CxsY0suwGosQ== + +"@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" + integrity sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q== + optionalDependencies: + "@resvg/resvg-js-android-arm-eabi" "2.6.2" + "@resvg/resvg-js-android-arm64" "2.6.2" + "@resvg/resvg-js-darwin-arm64" "2.6.2" + "@resvg/resvg-js-darwin-x64" "2.6.2" + "@resvg/resvg-js-linux-arm-gnueabihf" "2.6.2" + "@resvg/resvg-js-linux-arm64-gnu" "2.6.2" + "@resvg/resvg-js-linux-arm64-musl" "2.6.2" + "@resvg/resvg-js-linux-x64-gnu" "2.6.2" + "@resvg/resvg-js-linux-x64-musl" "2.6.2" + "@resvg/resvg-js-win32-arm64-msvc" "2.6.2" + "@resvg/resvg-js-win32-ia32-msvc" "2.6.2" + "@resvg/resvg-js-win32-x64-msvc" "2.6.2" + +"@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" + integrity sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA== + dependencies: + fflate "^0.7.3" + string.prototype.codepointat "^0.2.1" + +"@types/node@^20.14.3": + version "20.14.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.3.tgz#7a9a5d009b0861e7f337166dc435dbfd758db92d" + 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" + 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" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + 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" + 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" + 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" + 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" + integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== + dependencies: + bytes "3.1.2" + content-type "~1.0.5" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.2" + type-is "~1.6.18" + unpipe "1.0.0" + +boolean@^3.1.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" + 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" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + 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" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +camelize@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3" + 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" + integrity sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA== + dependencies: + node-gyp-build-optional-packages "5.1.1" + optionalDependencies: + "@cbor-extract/cbor-extract-darwin-arm64" "2.2.0" + "@cbor-extract/cbor-extract-darwin-x64" "2.2.0" + "@cbor-extract/cbor-extract-linux-arm" "2.2.0" + "@cbor-extract/cbor-extract-linux-arm64" "2.2.0" + "@cbor-extract/cbor-extract-linux-x64" "2.2.0" + "@cbor-extract/cbor-extract-win32-x64" "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" + 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" + 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" + 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" + 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" + 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" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== + +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" + 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" + 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" + 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" + integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ== + dependencies: + camelize "^1.0.0" + css-color-keywords "^1.0.0" + postcss-value-parser "^4.0.2" + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + 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" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + 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" + 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" + 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" + integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.2" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.6.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +fast-printf@^1.6.9: + version "1.6.9" + resolved "https://registry.yarnpkg.com/fast-printf/-/fast-printf-1.6.9.tgz#212f56570d2dc8ccdd057ee93d50dd414d07d676" + 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" + 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" + 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" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + 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" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + 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" + 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" + 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" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +hasown@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + 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" + 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" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-terminator@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/http-terminator/-/http-terminator-3.2.0.tgz#bc158d2694b733ca4fbf22a35065a81a609fb3e9" + integrity sha512-JLjck1EzPaWjsmIf8bziM3p9fgR1Y3JoUKAkyYEbZmFrIvJM6I8vVJfBGWlEtV9IWOvzNnaTtjuwZeBY2kwB4g== + dependencies: + delay "^5.0.0" + p-wait-for "^3.2.0" + roarr "^7.0.4" + type-fest "^2.3.3" + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + 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" + 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" + 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" + 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" + 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" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +linebreak@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/linebreak/-/linebreak-1.1.0.tgz#831cf378d98bced381d8ab118f852bd50d81e46b" + integrity sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ== + dependencies: + base64-js "0.0.8" + unicode-trie "^2.0.0" + +loose-envify@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + 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" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + 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" + 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" + 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" + 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" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + integrity sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg== + dependencies: + color-name "^1.1.4" + hex-rgb "^4.1.0" + +parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + 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" + 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" + integrity sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q== + dependencies: + readable-stream "^4.0.0" + split2 "^4.0.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" + 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" + 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" + integrity sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q== + dependencies: + atomic-sleep "^1.0.0" + fast-redact "^3.1.1" + on-exit-leak-free "^2.1.0" + pino-abstract-transport "^1.2.0" + pino-std-serializers "^6.0.0" + process-warning "^3.0.0" + quick-format-unescaped "^4.0.3" + real-require "^0.2.0" + safe-stable-stringify "^2.3.1" + sonic-boom "^3.7.0" + thread-stream "^2.6.0" + +pino@^9.2.0: + version "9.2.0" + resolved "https://registry.yarnpkg.com/pino/-/pino-9.2.0.tgz#e77a9516f3a3e5550d9b76d9f65ac6118ef02bdd" + integrity sha512-g3/hpwfujK5a4oVbaefoJxezLzsDgLcNJeITvC6yrfwYeT9la+edCK42j5QpEQSQCZgTKapXvnQIdgZwvRaZug== + dependencies: + atomic-sleep "^1.0.0" + fast-redact "^3.1.1" + on-exit-leak-free "^2.1.0" + pino-abstract-transport "^1.2.0" + pino-std-serializers "^7.0.0" + process-warning "^3.0.0" + quick-format-unescaped "^4.0.3" + real-require "^0.2.0" + safe-stable-stringify "^2.3.1" + sonic-boom "^4.0.1" + thread-stream "^3.0.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" + 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" + 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" + 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" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + 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" + 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" + 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" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +react@^18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" + 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" + integrity sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g== + dependencies: + abort-controller "^3.0.0" + buffer "^6.0.3" + events "^3.3.0" + process "^0.11.10" + string_decoder "^1.3.0" + +real-require@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/real-require/-/real-require-0.2.0.tgz#209632dea1810be2ae063a6ac084fee7e33fba78" + 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" + integrity sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ== + dependencies: + fast-printf "^1.6.9" + safe-stable-stringify "^2.4.3" + semver-compare "^1.0.0" + +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" + 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" + 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" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +satori@^0.10.13: + version "0.10.13" + resolved "https://registry.yarnpkg.com/satori/-/satori-0.10.13.tgz#658a9920f55268d2002819387a80a0b6d4bdc262" + integrity sha512-klCwkVYMQ/ZN5inJLHzrUmGwoRfsdP7idB5hfpJ1jfiJk1ErDitK8Hkc6Kll1+Ox2WtqEuGecSZLnmup3CGzvQ== + dependencies: + "@shuding/opentype.js" "1.4.0-beta.0" + css-background-parser "^0.1.0" + css-box-shadow "1.0.0-3" + css-to-react-native "^3.0.0" + emoji-regex "^10.2.1" + escape-html "^1.0.3" + linebreak "^1.1.0" + parse-css-color "^0.2.1" + postcss-value-parser "^4.2.0" + yoga-wasm-web "^0.3.3" + +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + 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" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.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" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + 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" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +sonic-boom@^3.7.0: + version "3.8.1" + resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-3.8.1.tgz#d5ba8c4e26d6176c9a1d14d549d9ff579a163422" + 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" + 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" + integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + 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" + 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" + 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" + 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" + 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" + 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" + 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" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +type-fest@^2.3.3: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + 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" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typescript@^5.4.5: + version "5.4.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" + 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" + 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" + 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" + integrity sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ== + dependencies: + pako "^0.2.5" + tiny-inflate "^1.0.0" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + 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" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +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" + 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" + integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== From 5d98b4b06c272d1a3a0b91f4f509c6e733c89d4f Mon Sep 17 00:00:00 2001 From: dan Date: Fri, 21 Jun 2024 00:54:30 +0300 Subject: [PATCH 80/86] Wait for AppView when posting (#4584) --- src/view/com/composer/Composer.tsx | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 80bce5351c..9e2f77d4df 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -24,12 +24,18 @@ import Animated, { } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {LinearGradient} from 'expo-linear-gradient' +import { + AppBskyFeedDefs, + AppBskyFeedGetPostThread, + BskyAgent, +} from '@atproto/api' import {RichText} from '@atproto/api' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {observer} from 'mobx-react-lite' +import {until} from '#/lib/async/until' import { createGIFDescription, parseAltFromGIFDescription, @@ -299,6 +305,17 @@ export const ComposePost = observer(function ComposePost({ langs: toPostLanguages(langPrefs.postLanguage), }) ).uri + try { + await whenAppViewReady(agent, postUri, res => { + const thread = res.data.thread + return AppBskyFeedDefs.isThreadViewPost(thread) + }) + } catch (waitErr: any) { + logger.error(waitErr, { + message: `Waiting for app view failed`, + }) + // Keep going because the post *was* published. + } } catch (e: any) { logger.error(e, { message: `Composer: create post failed`, @@ -756,6 +773,23 @@ function useKeyboardVerticalOffset() { return top + 10 } +async function whenAppViewReady( + agent: BskyAgent, + uri: string, + fn: (res: AppBskyFeedGetPostThread.Response) => boolean, +) { + await until( + 5, // 5 tries + 1e3, // 1s delay between tries + fn, + () => + agent.app.bsky.feed.getPostThread({ + uri, + depth: 0, + }), + ) +} + const styles = StyleSheet.create({ topbarInner: { flexDirection: 'row', From 4d8537bcd46866c9c613cdb8a1ff9ae77ed52dfa Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 20 Jun 2024 15:01:58 -0700 Subject: [PATCH 81/86] center pill text in label pill (#4579) * center pill text * undo --- src/view/com/profile/ProfileCard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/view/com/profile/ProfileCard.tsx b/src/view/com/profile/ProfileCard.tsx index 2b0790002d..a3cd5ca1b9 100644 --- a/src/view/com/profile/ProfileCard.tsx +++ b/src/view/com/profile/ProfileCard.tsx @@ -328,6 +328,7 @@ const styles = StyleSheet.create({ borderRadius: 4, paddingHorizontal: 6, paddingVertical: 2, + justifyContent: 'center', }, btn: { paddingVertical: 7, From 4bba59790a04d9c708dd3cbecf96fdab7f306d94 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 20 Jun 2024 17:06:57 -0500 Subject: [PATCH 82/86] Add a11y context (#4586) * Add a11y context * Feedback --- src/App.native.tsx | 45 +++++++++++++++++--------------- src/App.web.tsx | 41 +++++++++++++++-------------- src/state/a11y.tsx | 65 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 111 insertions(+), 40 deletions(-) create mode 100644 src/state/a11y.tsx diff --git a/src/App.native.tsx b/src/App.native.tsx index 18461fdd05..4c73d87525 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -24,6 +24,7 @@ import { import {s} from '#/lib/styles' import {ThemeProvider} from '#/lib/ThemeContext' 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 {Provider as InvitesStateProvider} from '#/state/invites' @@ -152,27 +153,29 @@ function App() { * that is set up in the InnerApp component above. */ return ( - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + ) } diff --git a/src/App.web.tsx b/src/App.web.tsx index 6af3c7d6fb..00939c9eb4 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -13,6 +13,7 @@ import {QueryProvider} from '#/lib/react-query' import {Provider as StatsigProvider} from '#/lib/statsig/statsig' import {ThemeProvider} from '#/lib/ThemeContext' 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 {Provider as InvitesStateProvider} from '#/state/invites' @@ -135,25 +136,27 @@ function App() { * that is set up in the InnerApp component above. */ return ( - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + ) } diff --git a/src/state/a11y.tsx b/src/state/a11y.tsx new file mode 100644 index 0000000000..aefcfd1ec4 --- /dev/null +++ b/src/state/a11y.tsx @@ -0,0 +1,65 @@ +import React from 'react' +import {AccessibilityInfo} from 'react-native' +import {isReducedMotion} from 'react-native-reanimated' + +import {isWeb} from '#/platform/detection' + +const Context = React.createContext({ + reduceMotionEnabled: false, + screenReaderEnabled: false, +}) + +export function useA11y() { + return React.useContext(Context) +} + +export function Provider({children}: React.PropsWithChildren<{}>) { + const [reduceMotionEnabled, setReduceMotionEnabled] = React.useState(() => + isReducedMotion(), + ) + const [screenReaderEnabled, setScreenReaderEnabled] = React.useState(false) + + React.useEffect(() => { + const reduceMotionChangedSubscription = AccessibilityInfo.addEventListener( + 'reduceMotionChanged', + enabled => { + setReduceMotionEnabled(enabled) + }, + ) + const screenReaderChangedSubscription = AccessibilityInfo.addEventListener( + 'screenReaderChanged', + enabled => { + setScreenReaderEnabled(enabled) + }, + ) + + ;(async () => { + const [_reduceMotionEnabled, _screenReaderEnabled] = await Promise.all([ + AccessibilityInfo.isReduceMotionEnabled(), + AccessibilityInfo.isScreenReaderEnabled(), + ]) + setReduceMotionEnabled(_reduceMotionEnabled) + setScreenReaderEnabled(_screenReaderEnabled) + })() + + return () => { + reduceMotionChangedSubscription.remove() + screenReaderChangedSubscription.remove() + } + }, []) + + const ctx = React.useMemo(() => { + return { + reduceMotionEnabled, + /** + * Always returns true on web. For now, we're using this for mobile a11y, + * so we reset to false on web. + * + * @see https://github.com/necolas/react-native-web/discussions/2072 + */ + screenReaderEnabled: isWeb ? false : screenReaderEnabled, + } + }, [reduceMotionEnabled, screenReaderEnabled]) + + return {children} +} From 4c48a1f14b317a76e55c008aeeb834ebb8f416d0 Mon Sep 17 00:00:00 2001 From: dan Date: Fri, 21 Jun 2024 01:47:56 +0300 Subject: [PATCH 83/86] [Session] Logging (#4476) * Add session logging (console.log) * Hook it up for real * Send type separately --- src/state/session/index.tsx | 42 +++++++++-- src/state/session/logging.ts | 137 +++++++++++++++++++++++++++++++++++ src/state/session/reducer.ts | 5 +- 3 files changed, 178 insertions(+), 6 deletions(-) create mode 100644 src/state/session/logging.ts diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index 314945bcf9..3aac19025d 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -19,6 +19,7 @@ import { import {getInitialState, reducer} from './reducer' export {isSignupQueued} from './util' +import {addSessionDebugLog} from './logging' export type {SessionAccount} from '#/state/session/types' import {SessionApiContext, SessionStateContext} from '#/state/session/types' @@ -40,9 +41,11 @@ const ApiContext = React.createContext({ export function Provider({children}: React.PropsWithChildren<{}>) { const cancelPendingTask = useOneTaskAtATime() - const [state, dispatch] = React.useReducer(reducer, null, () => - getInitialState(persisted.get('session').accounts), - ) + const [state, dispatch] = React.useReducer(reducer, null, () => { + const initialState = getInitialState(persisted.get('session').accounts) + addSessionDebugLog({type: 'reducer:init', state: initialState}) + return initialState + }) const onAgentSessionChange = React.useCallback( (agent: BskyAgent, accountDid: string, sessionEvent: AtpSessionEvent) => { @@ -63,6 +66,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { const createAccount = React.useCallback( async params => { + addSessionDebugLog({type: 'method:start', method: 'createAccount'}) const signal = cancelPendingTask() track('Try Create Account') logEvent('account:create:begin', {}) @@ -81,12 +85,14 @@ export function Provider({children}: React.PropsWithChildren<{}>) { }) track('Create Account') logEvent('account:create:success', {}) + addSessionDebugLog({type: 'method:end', method: 'createAccount', account}) }, [onAgentSessionChange, cancelPendingTask], ) const login = React.useCallback( async (params, logContext) => { + addSessionDebugLog({type: 'method:start', method: 'login'}) const signal = cancelPendingTask() const {agent, account} = await createAgentAndLogin( params, @@ -103,23 +109,31 @@ export function Provider({children}: React.PropsWithChildren<{}>) { }) track('Sign In', {resumedSession: false}) logEvent('account:loggedIn', {logContext, withPassword: true}) + addSessionDebugLog({type: 'method:end', method: 'login', account}) }, [onAgentSessionChange, cancelPendingTask], ) const logout = React.useCallback( logContext => { + addSessionDebugLog({type: 'method:start', method: 'logout'}) cancelPendingTask() dispatch({ type: 'logged-out', }) logEvent('account:loggedOut', {logContext}) + addSessionDebugLog({type: 'method:end', method: 'logout'}) }, [cancelPendingTask], ) const resumeSession = React.useCallback( async storedAccount => { + addSessionDebugLog({ + type: 'method:start', + method: 'resumeSession', + account: storedAccount, + }) const signal = cancelPendingTask() const {agent, account} = await createAgentAndResume( storedAccount, @@ -134,17 +148,24 @@ export function Provider({children}: React.PropsWithChildren<{}>) { newAgent: agent, newAccount: account, }) + addSessionDebugLog({type: 'method:end', method: 'resumeSession', account}) }, [onAgentSessionChange, cancelPendingTask], ) const removeAccount = React.useCallback( account => { + addSessionDebugLog({ + type: 'method:start', + method: 'removeAccount', + account, + }) cancelPendingTask() dispatch({ type: 'removed-account', accountDid: account.did, }) + addSessionDebugLog({type: 'method:end', method: 'removeAccount', account}) }, [cancelPendingTask], ) @@ -152,18 +173,21 @@ export function Provider({children}: React.PropsWithChildren<{}>) { React.useEffect(() => { if (state.needsPersist) { state.needsPersist = false - persisted.write('session', { + const persistedData = { accounts: state.accounts, currentAccount: state.accounts.find( a => a.did === state.currentAgentState.did, ), - }) + } + addSessionDebugLog({type: 'persisted:broadcast', data: persistedData}) + persisted.write('session', persistedData) } }, [state]) React.useEffect(() => { return persisted.onUpdate(() => { const synced = persisted.get('session') + addSessionDebugLog({type: 'persisted:receive', data: synced}) dispatch({ type: 'synced-accounts', syncedAccounts: synced.accounts, @@ -177,7 +201,14 @@ export function Provider({children}: React.PropsWithChildren<{}>) { resumeSession(syncedAccount) } else { const agent = state.currentAgentState.agent as BskyAgent + const prevSession = agent.session agent.session = sessionAccountToSession(syncedAccount) + addSessionDebugLog({ + type: 'agent:patch', + agent, + prevSession, + nextSession: agent.session, + }) } } }) @@ -215,6 +246,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { // Read the previous value and immediately advance the pointer. const prevAgent = currentAgentRef.current currentAgentRef.current = agent + addSessionDebugLog({type: 'agent:switch', prevAgent, nextAgent: agent}) // We never reuse agents so let's fully neutralize the previous one. // This ensures it won't try to consume any refresh tokens. prevAgent.session = undefined diff --git a/src/state/session/logging.ts b/src/state/session/logging.ts new file mode 100644 index 0000000000..16aa66fe72 --- /dev/null +++ b/src/state/session/logging.ts @@ -0,0 +1,137 @@ +import {AtpSessionData} from '@atproto/api' +import {sha256} from 'js-sha256' +import {Statsig} from 'statsig-react-native-expo' + +import {Schema} from '../persisted' +import {Action, State} from './reducer' +import {SessionAccount} from './types' + +type Reducer = (state: State, action: Action) => State + +type Log = + | { + type: 'reducer:init' + state: State + } + | { + type: 'reducer:call' + action: Action + prevState: State + nextState: State + } + | { + type: 'method:start' + method: + | 'createAccount' + | 'login' + | 'logout' + | 'resumeSession' + | 'removeAccount' + account?: SessionAccount + } + | { + type: 'method:end' + method: + | 'createAccount' + | 'login' + | 'logout' + | 'resumeSession' + | 'removeAccount' + account?: SessionAccount + } + | { + type: 'persisted:broadcast' + data: Schema['session'] + } + | { + type: 'persisted:receive' + data: Schema['session'] + } + | { + type: 'agent:switch' + prevAgent: object + nextAgent: object + } + | { + type: 'agent:patch' + agent: object + prevSession: AtpSessionData | undefined + nextSession: AtpSessionData + } + +export function wrapSessionReducerForLogging(reducer: Reducer): Reducer { + return function loggingWrapper(prevState: State, action: Action): State { + const nextState = reducer(prevState, action) + addSessionDebugLog({type: 'reducer:call', prevState, action, nextState}) + return nextState + } +} + +let nextMessageIndex = 0 +const MAX_SLICE_LENGTH = 1000 + +export function addSessionDebugLog(log: Log) { + try { + if (!Statsig.initializeCalled() || !Statsig.getStableID()) { + // Drop these logs for now. + return + } + if (!Statsig.checkGate('debug_session')) { + return + } + const messageIndex = nextMessageIndex++ + const {type, ...content} = log + let payload = JSON.stringify(content, replacer) + + let nextSliceIndex = 0 + while (payload.length > 0) { + const sliceIndex = nextSliceIndex++ + const slice = payload.slice(0, MAX_SLICE_LENGTH) + payload = payload.slice(MAX_SLICE_LENGTH) + Statsig.logEvent('session:debug', null, { + realmId, + messageIndex: String(messageIndex), + messageType: type, + sliceIndex: String(sliceIndex), + slice, + }) + } + } catch (e) { + console.error(e) + } +} + +let agentIds = new WeakMap() +let realmId = Math.random().toString(36).slice(2) +let nextAgentId = 1 + +function getAgentId(agent: object) { + let id = agentIds.get(agent) + if (id === undefined) { + id = realmId + '::' + nextAgentId++ + agentIds.set(agent, id) + } + return id +} + +function replacer(key: string, value: unknown) { + if (typeof value === 'object' && value != null && 'api' in value) { + return getAgentId(value) + } + if ( + key === 'service' || + key === 'email' || + key === 'emailConfirmed' || + key === 'emailAuthFactor' || + key === 'pdsUrl' + ) { + return undefined + } + if ( + typeof value === 'string' && + (key === 'refreshJwt' || key === 'accessJwt') + ) { + return sha256(value) + } + return value +} diff --git a/src/state/session/reducer.ts b/src/state/session/reducer.ts index 7f30809353..0a537b42c6 100644 --- a/src/state/session/reducer.ts +++ b/src/state/session/reducer.ts @@ -1,6 +1,7 @@ import {AtpSessionEvent} from '@atproto/api' import {createPublicAgent} from './agent' +import {wrapSessionReducerForLogging} from './logging' import {SessionAccount} from './types' // A hack so that the reducer can't read anything from the agent. @@ -64,7 +65,7 @@ export function getInitialState(persistedAccounts: SessionAccount[]): State { } } -export function reducer(state: State, action: Action): State { +let reducer = (state: State, action: Action): State => { switch (action.type) { case 'received-agent-event': { const {agent, accountDid, refreshedAccount, sessionEvent} = action @@ -166,3 +167,5 @@ export function reducer(state: State, action: Action): State { } } } +reducer = wrapSessionReducerForLogging(reducer) +export {reducer} From f344032ed8fde2ecbfc1a71f12373eb013fb4fd7 Mon Sep 17 00:00:00 2001 From: Marco Maroni <166719395+marcomaroni-github@users.noreply.github.com> Date: Fri, 21 Jun 2024 00:48:58 +0200 Subject: [PATCH 84/86] Italian translation fix (#4527) * Update messages.po Italian translation fix (feeds->feed) * Italian localization update Italian localization update (DM) * Update src/locale/locales/it/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update src/locale/locales/it/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --------- Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --- src/locale/locales/it/messages.po | 60 +++++++++++++++---------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index e2c2bdb3ac..59660ca2e5 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -165,7 +165,7 @@ msgstr "" #~ msgstr "<0>{following} <1>following" #~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "<0>Scegli i tuoi<1>feeds<2>consigliati" +#~ msgstr "<0>Scegli i tuoi<1>feed/1><2>consigliati" #~ msgid "<0>Follow some<1>Recommended<2>Users" #~ msgstr "<0>Segui alcuni<1>utenti<2>consigliati" @@ -356,7 +356,7 @@ msgstr "Aggiunto alla lista" #: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" -msgstr "Aggiunto ai miei feeds" +msgstr "Aggiunto ai miei feed" #: src/view/screens/PreferencesFollowingFeed.tsx:172 msgid "Adjust the number of likes a reply must have to be shown in your feed." @@ -395,7 +395,7 @@ msgstr "" #: src/screens/Messages/Settings.tsx:62 #: src/screens/Messages/Settings.tsx:65 msgid "Allow new messages from" -msgstr "" +msgstr "Consenti nuovi messaggi da" #: src/screens/Login/ForgotPasswordForm.tsx:178 #: src/view/com/modals/ChangePassword.tsx:171 @@ -936,12 +936,12 @@ msgstr "Conversazione silenziata" #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:638 msgid "Chat settings" -msgstr "" +msgstr "Impostazioni messaggi" #: src/screens/Messages/Settings.tsx:59 #: src/view/screens/Settings/index.tsx:647 msgid "Chat Settings" -msgstr "" +msgstr "Impostazioni messaggi" #: src/components/dms/ConvoMenu.tsx:84 msgid "Chat unmuted" @@ -1043,7 +1043,7 @@ msgstr "" #: src/screens/Feeds/NoFollowingFeed.tsx:46 #~ msgid "Click here to add one." -#~ msgstr "" +#~ msgstr "Clicca qui per aggiungerne uno." #: src/components/TagMenu/index.web.tsx:138 msgid "Click here to open tag menu for {tag}" @@ -1665,14 +1665,14 @@ msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" -msgstr "Scopri nuovi feeds personalizzati" +msgstr "Scopri nuovi feed personalizzati" #~ msgid "Discover new feeds" -#~ msgstr "Scopri nuovi feeds" +#~ msgstr "Scopri nuovi feed" #: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" -msgstr "Scopri nuovi feeds" +msgstr "Scopri nuovi feed" #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" @@ -1831,7 +1831,7 @@ msgstr "Modifica l'elenco di moderazione" #: src/view/screens/Feeds.tsx:469 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" -msgstr "Modifica i miei feeds" +msgstr "Modifica i miei feed" #: src/view/com/modals/EditProfile.tsx:153 msgid "Edit my profile" @@ -1850,7 +1850,7 @@ msgstr "Modifica il Profilo" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 #~ msgid "Edit Saved Feeds" -#~ msgstr "Modifica i feeds memorizzati" +#~ msgstr "Modifica i feed memorizzati" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1927,7 +1927,7 @@ msgstr "Attiva il contenuto per adulti" #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 #~ msgid "Enable adult content in your feeds" -#~ msgstr "Abilita i contenuti per adulti nei tuoi feeds" +#~ msgstr "Abilita i contenuti per adulti nei tuoi feed" #: src/components/dialogs/EmbedConsent.tsx:82 #: src/components/dialogs/EmbedConsent.tsx:89 @@ -2202,7 +2202,7 @@ msgstr "Commenti" #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" -msgstr "Feeds" +msgstr "Feed" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni feed che ritieni interessanti." @@ -2213,7 +2213,7 @@ msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo #: src/screens/Onboarding/StepTopicalFeeds.tsx:80 #~ msgid "Feeds can be topical as well!" -#~ msgstr "I feeds possono anche avere tematiche!" +#~ msgstr "I feed possono anche avere tematiche!" #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" @@ -3214,7 +3214,7 @@ msgstr "Il messaggio รจ troppo lungo" #: src/screens/Messages/List/index.tsx:321 msgid "Message settings" -msgstr "Impostazione messaggio" +msgstr "Impostazioni messaggio" #: src/Navigation.tsx:504 #: src/screens/Messages/List/index.tsx:164 @@ -3412,7 +3412,7 @@ msgstr "Il mio Compleanno" #: src/view/screens/Feeds.tsx:768 msgid "My Feeds" -msgstr "I miei Feeds" +msgstr "I miei Feed" #: src/view/shell/desktop/LeftNav.tsx:84 msgid "My Profile" @@ -3424,7 +3424,7 @@ msgstr "I miei feed salvati" #: src/view/screens/Settings/index.tsx:622 msgid "My Saved Feeds" -msgstr "I miei Feeds Salvati" +msgstr "I miei Feed Salvati" #~ msgid "my-server.com" #~ msgstr "my-server.com" @@ -3862,7 +3862,7 @@ msgstr "Apre la fotocamera sul dispositivo" #: src/view/screens/Settings/index.tsx:639 msgid "Opens chat settings" -msgstr "" +msgstr "Apre impostazioni messaggi" #: src/view/com/composer/Prompt.tsx:27 msgid "Opens composer" @@ -4112,7 +4112,7 @@ msgstr "Fissa su Home" #: src/view/screens/SavedFeeds.tsx:103 msgid "Pinned Feeds" -msgstr "Feeds Fissi" +msgstr "Feed Fissi" #: src/view/screens/ProfileList.tsx:289 msgid "Pinned to your feeds" @@ -4380,7 +4380,7 @@ msgstr "Elenchi pubblici e condivisibili di utenti da disattivare o bloccare in #: src/view/screens/Lists.tsx:66 msgid "Public, shareable lists which can drive feeds." -msgstr "Liste pubbliche e condivisibili che possono impulsare i feeds." +msgstr "Liste pubbliche e condivisibili che possono impulsare i feed." #: src/view/com/composer/Composer.tsx:462 msgid "Publish post" @@ -4431,7 +4431,7 @@ msgid "Recent Searches" msgstr "Ricerche recenti" #~ msgid "Recommended Feeds" -#~ msgstr "Feeds consigliati" +#~ msgstr "Feed consigliati" #~ msgid "Recommended Users" #~ msgstr "Utenti consigliati" @@ -4454,7 +4454,7 @@ msgid "Remove" msgstr "Rimuovi" #~ msgid "Remove {0} from my feeds?" -#~ msgstr "Rimuovere {0} dai miei feeds?" +#~ msgstr "Rimuovere {0} dai miei feed?" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4524,14 +4524,14 @@ msgid "Remove repost" msgstr "Rimuovi la ripubblicazione" #~ msgid "Remove this feed from my feeds?" -#~ msgstr "Rimuovere questo feed dai miei feeds?" +#~ msgstr "Rimuovere questo feed dai miei feed?" #: src/view/com/posts/FeedErrorMessage.tsx:210 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 feeds salvati?" +#~ msgstr "Elimina questo feed dai feed salvati?" #: src/view/com/modals/ListAddRemoveUsers.tsx:199 #: src/view/com/modals/UserAddRemoveLists.tsx:165 @@ -4540,7 +4540,7 @@ msgstr "Elimina dalla lista" #: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" -msgstr "Rimuovere dai miei feeds" +msgstr "Rimuovere dai miei feed" #: src/view/com/posts/FeedShutdownMsg.tsx:44 #: src/view/screens/ProfileFeed.tsx:191 @@ -5047,7 +5047,7 @@ msgstr "Seleziona il servizio che ospita i tuoi dati." #: src/screens/Onboarding/StepTopicalFeeds.tsx:100 #~ msgid "Select topical feeds to follow from the list below" -#~ msgstr "Seleziona i feeds con temi da seguire dal seguente elenco" +#~ msgstr "Seleziona i feed con temi da seguire dal seguente elenco" #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and weโ€™ll handle the rest." @@ -6154,7 +6154,7 @@ msgid "This will delete {0} from your muted words. You can always add it back la msgstr "Questo eliminerร  {0} dalle parole disattivate. Puoi sempre aggiungerla nuovamente in seguito." #~ msgid "This will hide this post from your feeds." -#~ msgstr "Questo nasconderร  il post dai tuoi feeds." +#~ msgstr "Questo nasconderร  il post dai tuoi feed." #: src/view/screens/Settings/index.tsx:594 msgid "Thread preferences" @@ -6783,7 +6783,7 @@ msgstr "Che lingue sono utilizzate in questo post?" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 msgid "Which languages would you like to see in your algorithmic feeds?" -msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feeds?" +msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feed?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 @@ -6901,7 +6901,7 @@ msgstr "Puoi modificarlo in qualsiasi momento." #: src/screens/Messages/Settings.tsx:111 msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "" +msgstr "Puoi proseguire le conversazioni in corso indipendentemente da quale settaggio scegli." #: src/screens/Login/index.tsx:158 #: src/screens/Login/PasswordUpdatedForm.tsx:33 @@ -6982,7 +6982,7 @@ msgstr "Non hai ancora nessuna conversazione. Avviane una!" #: src/view/com/feeds/ProfileFeedgens.tsx:141 msgid "You have no feeds." -msgstr "Non hai feeds." +msgstr "Non hai feed." #: src/view/com/lists/MyLists.tsx:90 #: src/view/com/lists/ProfileLists.tsx:145 From 8ff862798fdf94ac7d7abbb0111d7f9c6938c7b3 Mon Sep 17 00:00:00 2001 From: Takayuki KUSANO <65759+tkusano@users.noreply.github.com> Date: Fri, 21 Jun 2024 07:49:50 +0900 Subject: [PATCH 85/86] Update Japanese translation (#4477) * Update Japanese translation * Update Japanese translation * Fix translation ref. https://github.com/bluesky-social/social-app/pull/4477#pullrequestreview-2114478514 * Update Japanese translation * Fix translation * Updated Japanese translation * Updated translations --- src/locale/locales/ja/messages.po | 201 ++++++++++++++++++++++-------- 1 file changed, 152 insertions(+), 49 deletions(-) diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index e8dc12ce24..bb41c63317 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-05 11:06+0900\n" +"PO-Revision-Date: 2024-06-19 11:10+0900\n" "Last-Translator: tkusano\n" "Language-Team: Hima-Zinn, tkusano, dolciss, oboenikui, noritada, middlingphys, hibiki, reindex-ot, haoyayoi, vyv03354\n" "Plural-Forms: \n" @@ -37,10 +37,6 @@ msgstr "{0, plural, other {#ๅ€‹ใฎใƒฉใƒ™ใƒซใŒใ“ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใซ้ฉ็”จใ• msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {#ๅ›žใฎใƒชใƒใ‚นใƒˆ}}" -#: src/components/KnownFollowers.tsx:179 -msgid "{0, plural, one {and # other} other {and # others}}" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:376 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -87,6 +83,26 @@ msgstr "{0}ใฎใ‚ขใƒใ‚ฟใƒผ" msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, other {#ไบบใฎใƒฆใƒผใ‚ถใƒผใŒใ„ใ„ใญ}}" +#: src/lib/hooks/useTimeAgo.ts:69 +msgid "{diff, plural, one {day} other {days}}" +msgstr "{diff, plural, other {ๆ—ฅ}}" + +#: src/lib/hooks/useTimeAgo.ts:64 +msgid "{diff, plural, one {hour} other {hours}}" +msgstr "{diff, plural, other {ๆ™‚้–“}}" + +#: src/lib/hooks/useTimeAgo.ts:59 +msgid "{diff, plural, one {minute} other {minutes}}" +msgstr "{diff, plural, other {ๅˆ†}}" + +#: src/lib/hooks/useTimeAgo.ts:75 +msgid "{diff, plural, one {month} other {months}}" +msgstr "{diff, plural, other {ใƒถๆœˆ}}" + +#: src/lib/hooks/useTimeAgo.ts:54 +msgid "{diffSeconds, plural, one {second} other {seconds}}" +msgstr "{diffSeconds, plural, other {็ง’}}" + #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" msgstr "{estimatedTimeHrs, plural, other {ๆ™‚้–“}}" @@ -114,6 +130,10 @@ msgstr "{likeCount, plural, other {#ไบบใฎใƒฆใƒผใ‚ถใƒผใŒใ„ใ„ใญ}}" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}ไปถใฎๆœช่ชญ" +#: src/components/NewskieDialog.tsx:75 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "{profileName}ใฏBlueskyใซ{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}}" msgstr "{value, plural, =0 {ใ™ในใฆใฎ่ฟ”ไฟกใ‚’่กจ็คบ} other {#ๅ€‹ไปฅไธŠใฎใ„ใ„ใญใŒใคใ„ใŸ่ฟ”ไฟกใ‚’่กจ็คบ}}" @@ -270,6 +290,10 @@ msgstr "ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ใƒฆใƒผใ‚ถใƒผใฎใฟใฎใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใฎใƒ•ใ‚ฃใƒผ msgid "Add the following DNS record to your domain:" msgstr "ๆฌกใฎDNSใƒฌใ‚ณใƒผใƒ‰ใ‚’ใƒ‰ใƒกใ‚คใƒณใซ่ฟฝๅŠ ใ—ใฆใใ ใ•ใ„๏ผš" +#: src/components/FeedCard.tsx:173 +msgid "Add this feed to your feeds" +msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ‚ใชใŸใฎใƒ•ใ‚ฃใƒผใƒ‰ใซ่ฟฝๅŠ ใ™ใ‚‹" + #: src/view/com/profile/ProfileMenu.tsx:265 #: src/view/com/profile/ProfileMenu.tsx:268 msgid "Add to Lists" @@ -469,6 +493,10 @@ msgstr "ใ“ใฎไผš่ฉฑใ‹ใ‚‰้€€ๅ‡บใ—ใพใ™ใ‹๏ผŸใ‚ใชใŸใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฏใ‚ msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ใ‚ใชใŸใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰{0}ใ‚’ๅ‰Š้™คใ—ใฆใ‚‚ใ‚ˆใ‚ใ—ใ„ใงใ™ใ‹๏ผŸ" +#: src/components/FeedCard.tsx:190 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "ๆœฌๅฝ“ใซใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ‚ใชใŸใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™คใ—ใŸใ„ใงใ™ใ‹๏ผŸ" + #: src/view/com/composer/Composer.tsx:630 msgid "Are you sure you'd like to discard this draft?" msgstr "ๆœฌๅฝ“ใซใ“ใฎไธ‹ๆ›ธใใ‚’็ ดๆฃ„ใ—ใพใ™ใ‹๏ผŸ" @@ -1092,7 +1120,7 @@ msgstr "{0}ใจใ—ใฆ็ถš่กŒ๏ผˆ็พๅœจใ‚ตใ‚คใƒณใ‚คใƒณไธญ๏ผ‰" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "" +msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎ็ถšใโ€ฆ" #: src/screens/Onboarding/StepInterests/index.tsx:250 #: src/screens/Onboarding/StepProfile/index.tsx:266 @@ -1419,6 +1447,10 @@ msgstr "ใ‚ขใƒ—ใƒชใŒใƒญใ‚ฐใ‚ขใ‚ฆใƒˆใ—ใŸใƒฆใƒผใ‚ถใƒผใซ่‡ชๅˆ†ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ msgid "Discover new custom feeds" msgstr "ๆ–ฐใ—ใ„ใ‚ซใ‚นใ‚ฟใƒ ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใคใ‘ใ‚‹" +#: src/view/screens/Search/Explore.tsx:378 +msgid "Discover new feeds" +msgstr "ๆ–ฐใ—ใ„ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆŽขใ™" + #: src/view/screens/Feeds.tsx:794 msgid "Discover New Feeds" msgstr "ๆ–ฐใ—ใ„ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆŽขใ™" @@ -1534,16 +1566,16 @@ msgstr "ไพ‹๏ผš่ฟ”ไฟกใจใ—ใฆๅบƒๅ‘Šใ‚’็นฐใ‚Š่ฟ”ใ—้€ใฃใฆใใ‚‹ใƒฆใƒผใ‚ถใƒผใ€‚ msgid "Each code works once. You'll receive more invite codes periodically." msgstr "ใใ‚Œใžใ‚Œใฎใ‚ณใƒผใƒ‰ใฏไธ€ๅ›ž้™ใ‚Šๆœ‰ๅŠนใงใ™ใ€‚ๅฎšๆœŸ็š„ใซ่ฟฝๅŠ ใฎๆ‹›ๅพ…ใ‚ณใƒผใƒ‰ใ‚’ใŠ้€ใ‚Šใ—ใพใ™ใ€‚" -#: src/view/screens/Feeds.tsx:400 -#: src/view/screens/Feeds.tsx:471 -msgid "Edit" -msgstr "" - #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" msgstr "็ทจ้›†" +#: src/view/screens/Feeds.tsx:400 +#: src/view/screens/Feeds.tsx:471 +msgid "Edit" +msgstr "็ทจ้›†" + #: src/view/com/util/UserAvatar.tsx:312 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" @@ -1583,11 +1615,6 @@ msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’็ทจ้›†" msgid "Edit Profile" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’็ทจ้›†" -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 -#: src/view/screens/Feeds.tsx:416 -#~ msgid "Edit Saved Feeds" -#~ msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็ทจ้›†" - #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" msgstr "ใƒฆใƒผใ‚ถใƒผใƒชใ‚นใƒˆใ‚’็ทจ้›†" @@ -1754,6 +1781,10 @@ 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 @@ -1857,6 +1888,11 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฎๅ‰Š้™คใซๅคฑๆ•—ใ—ใพใ—ใŸ" msgid "Failed to delete post, please try again" msgstr "ๆŠ•็จฟใฎๅ‰Š้™คใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" +#: src/view/screens/Search/Explore.tsx:414 +#: src/view/screens/Search/Explore.tsx:438 +msgid "Failed to load feeds preferences" +msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ่จญๅฎšใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" + #: src/components/dialogs/GifSelect.ios.tsx:196 #: src/components/dialogs/GifSelect.tsx:212 msgid "Failed to load GIFs" @@ -1866,6 +1902,15 @@ msgstr "GIFใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" msgid "Failed to load past messages" msgstr "้ŽๅŽปใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" +#: src/view/screens/Search/Explore.tsx:407 +#: src/view/screens/Search/Explore.tsx:431 +msgid "Failed to load suggested feeds" +msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" + +#: src/view/screens/Search/Explore.tsx:367 +msgid "Failed to load suggested follows" +msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" + #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Failed to save image: {0}" msgstr "็”ปๅƒใฎไฟๅญ˜ใซๅคฑๆ•—ใ—ใพใ—ใŸ๏ผš{0}" @@ -1879,6 +1924,14 @@ msgstr "้€ไฟกใซๅคฑๆ•—" msgid "Failed to submit appeal, please try again." msgstr "็•ฐ่ญฐ็”ณใ—็ซ‹ใฆใฎ้€ไฟกใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ๅ†ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +msgid "Failed to toggle thread mute, please try again" +msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎใƒŸใƒฅใƒผใƒˆใฎๅˆ‡ใ‚Šๆ›ฟใˆใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ๅ†ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„" + +#: src/components/FeedCard.tsx:153 +msgid "Failed to update feeds" +msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎๆ›ดๆ–ฐใซๅคฑๆ•—ใ—ใพใ—ใŸ" + #: src/components/dms/MessagesNUX.tsx:60 #: src/screens/Messages/Settings.tsx:35 msgid "Failed to update settings" @@ -1914,6 +1967,10 @@ msgstr "ใƒ•ใ‚ฃใƒผใƒ‰" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฏใƒฆใƒผใ‚ถใƒผใŒใƒ—ใƒญใ‚ฐใƒฉใƒŸใƒณใ‚ฐใฎๅฐ‚้–€็Ÿฅ่ญ˜ใ‚’ๆŒใฃใฆๆง‹็ฏ‰ใ™ใ‚‹ใ‚ซใ‚นใ‚ฟใƒ ใ‚ขใƒซใ‚ดใƒชใ‚บใƒ ใงใ™ใ€‚่ฉณ็ดฐใซใคใ„ใฆใฏใ€<0/>ใ‚’ๅ‚็…งใ—ใฆใใ ใ•ใ„ใ€‚" +#: src/components/FeedCard.tsx:150 +msgid "Feeds updated!" +msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆ›ดๆ–ฐใ—ใพใ—ใŸ๏ผ" + #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" msgstr "ใƒ•ใ‚กใ‚คใƒซใฎใ‚ณใƒณใƒ†ใƒณใƒ„" @@ -1996,14 +2053,30 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ใƒ•ใ‚ฉใƒญใƒผ" msgid "Follow Back" msgstr "ใƒ•ใ‚ฉใƒญใƒผใƒใƒƒใ‚ฏ" -#: src/components/KnownFollowers.tsx:169 -msgid "Followed by" -msgstr "" +#: src/view/screens/Search/Explore.tsx:332 +msgid "Follow more accounts to get connected to your interests and build your network." +msgstr "ใ‚‚ใฃใจใŸใใ•ใ‚“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ€่ˆˆๅ‘ณใ‚ใ‚‹ใ“ใจใซใคใชใŒใ‚Šใ€ใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใ‚’ๅบƒใ’ใพใ—ใ‚‡ใ†ใ€‚" #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "{0}ใŒใƒ•ใ‚ฉใƒญใƒผไธญ" +#: src/components/KnownFollowers.tsx:192 +msgid "Followed by <0>{0}" +msgstr "<0>{0}ใŒใƒ•ใ‚ฉใƒญใƒผไธญ" + +#: src/components/KnownFollowers.tsx:209 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "<0>{0}ใŠใ‚ˆใณ{1, plural, other {ไป–#ไบบ}}ใŒใƒ•ใ‚ฉใƒญใƒผไธญ" + +#: src/components/KnownFollowers.tsx:181 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "<0>{0}ใจ<1>{1}ใŒใƒ•ใ‚ฉใƒญใƒผไธญ" + +#: src/components/KnownFollowers.tsx:168 +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:99 msgid "Followed users" msgstr "่‡ชๅˆ†ใŒใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ใƒฆใƒผใ‚ถใƒผ" @@ -2023,12 +2096,12 @@ msgstr "ใƒ•ใ‚ฉใƒญใƒฏใƒผ" #: src/Navigation.tsx:177 msgid "Followers of @{0} that you know" -msgstr "" +msgstr "ใ‚ใชใŸใŒ็Ÿฅใฃใฆใ„ใ‚‹@{0}ใฎใƒ•ใ‚ฉใƒญใƒฏใƒผ" #: src/screens/Profile/KnownFollowers.tsx:108 #: src/screens/Profile/KnownFollowers.tsx:118 msgid "Followers you know" -msgstr "" +msgstr "ใ‚ใชใŸใŒ็Ÿฅใฃใฆใ„ใ‚‹ใƒ•ใ‚ฉใƒญใƒฏใƒผ" #: src/components/ProfileHoverCard/index.web.tsx:411 #: src/components/ProfileHoverCard/index.web.tsx:422 @@ -2118,6 +2191,10 @@ msgstr "ๅง‹ใ‚ใ‚‹" msgid "Get Started" msgstr "้–‹ๅง‹" +#: src/view/com/util/images/ImageHorzList.tsx:35 +msgid "GIF" +msgstr "GIF" + #: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใซ้ก”ใ‚’ใคใ‘ใ‚‹" @@ -2658,6 +2735,18 @@ msgstr "ใƒชใ‚นใƒˆ" msgid "Lists blocking this user:" msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใ‚‹ใƒชใ‚นใƒˆ๏ผš" +#: src/view/screens/Search/Explore.tsx:128 +msgid "Load more" +msgstr "ใ•ใ‚‰ใซ่ชญใฟ่พผใ‚€" + +#: src/view/screens/Search/Explore.tsx:216 +msgid "Load more suggested feeds" +msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ•ใ‚‰ใซ่ชญใฟ่พผใ‚€" + +#: src/view/screens/Search/Explore.tsx:214 +msgid "Load more suggested follows" +msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผใ‚’ใ•ใ‚‰ใซ่ชญใฟ่พผใ‚€" + #: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "ๆœ€ๆ–ฐใฎ้€š็Ÿฅใ‚’่ชญใฟ่พผใ‚€" @@ -3062,6 +3151,10 @@ msgctxt "action" msgid "New Post" msgstr "ๆ–ฐใ—ใ„ๆŠ•็จฟ" +#: src/components/NewskieDialog.tsx:68 +msgid "New user info dialog" +msgstr "ๆ–ฐใ—ใ„ใƒฆใƒผใ‚ถใƒผๆƒ…ๅ ฑใƒ€ใ‚คใ‚ขใƒญใ‚ฐ" + #: src/view/com/modals/CreateOrEditList.tsx:236 msgid "New User List" msgstr "ๆ–ฐใ—ใ„ใƒฆใƒผใ‚ถใƒผใƒชใ‚นใƒˆ" @@ -3142,7 +3235,7 @@ msgstr "่ชฐใ‹ใ‚‰ใ‚‚ๅ—ใ‘ๅ–ใ‚‰ใชใ„" #: src/screens/Profile/Sections/Feed.tsx:59 msgid "No posts yet." -msgstr "" +msgstr "ใพใ ๆŠ•็จฟใŒใ‚ใ‚Šใพใ›ใ‚“ใ€‚" #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 @@ -3236,6 +3329,10 @@ msgstr "้€š็Ÿฅ้Ÿณ" msgid "Notifications" msgstr "้€š็Ÿฅ" +#: src/lib/hooks/useTimeAgo.ts:51 +msgid "now" +msgstr "ไปŠ" + #: src/components/dms/MessageItem.tsx:175 msgid "Now" msgstr "ไปŠ" @@ -3274,6 +3371,10 @@ msgstr "OK" msgid "Oldest replies first" msgstr "ๅคใ„้ †ใซ่ฟ”ไฟกใ‚’่กจ็คบ" +#: src/lib/hooks/useTimeAgo.ts:81 +msgid "on {str}" +msgstr "{str}" + #: src/view/screens/Settings/index.tsx:256 msgid "Onboarding reset" msgstr "ใ‚ชใƒณใƒœใƒผใƒ‡ใ‚ฃใƒณใ‚ฐใฎใƒชใ‚ปใƒƒใƒˆ" @@ -3449,11 +3550,6 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎ่จญๅฎšใ‚’้–‹ใ" msgid "Opens password reset form" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใƒชใ‚ปใƒƒใƒˆใฎใƒ•ใ‚ฉใƒผใƒ ใ‚’้–‹ใ" -#: src/view/com/home/HomeHeaderLayout.web.tsx:77 -#: src/view/screens/Feeds.tsx:417 -#~ msgid "Opens screen to edit Saved Feeds" -#~ msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใฎ็ทจ้›†็”ป้ขใ‚’้–‹ใ" - #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใ™ในใฆใฎใƒ•ใ‚ฃใƒผใƒ‰ใง็”ป้ขใ‚’้–‹ใ" @@ -3777,7 +3873,7 @@ msgstr "ๅ†ๅฎŸ่กŒใ™ใ‚‹" #: src/components/KnownFollowers.tsx:111 msgid "Press to view followers of this account that you also follow" -msgstr "" +msgstr "ใ‚ใชใŸใ‚‚ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ใ“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ•ใ‚ฉใƒญใƒฏใƒผใ‚’่ฆ‹ใ‚‹" #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" @@ -3975,7 +4071,7 @@ msgstr "ใƒชใ‚นใƒˆใ‹ใ‚‰ๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" #: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" -msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ—ใŸ" +msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ—ใŸ" #: src/view/com/posts/FeedShutdownMsg.tsx:44 #: src/view/screens/ProfileFeed.tsx:191 @@ -4000,9 +4096,9 @@ msgstr "Discoverใง็ฝฎใๆ›ใˆใ‚‹" msgid "Replies" msgstr "่ฟ”ไฟก" -#: src/view/com/threadgate/WhoCanReply.tsx:98 -msgid "Replies to this thread are disabled" -msgstr "ใ“ใฎใ‚นใƒฌใƒƒใƒ‰ใธใฎ่ฟ”ไฟกใฏใงใใพใ›ใ‚“" +#: src/view/com/threadgate/WhoCanReply.tsx:131 +msgid "Replies to this thread are disabled." +msgstr "ใ“ใฎใ‚นใƒฌใƒƒใƒ‰ใธใฎ่ฟ”ไฟกใฏใงใใพใ›ใ‚“ใ€‚" #: src/view/com/composer/Composer.tsx:475 msgctxt "action" @@ -4019,6 +4115,11 @@ msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/>ใซ่ฟ”ไฟก" +#: src/view/com/posts/FeedItem.tsx:437 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ—ใŸๆŠ•็จฟใธใฎ่ฟ”ไฟก" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4926,9 +5027,9 @@ msgstr "ใ“ใฎใƒฉใƒ™ใƒฉใƒผใ‚’็™ป้Œฒ" msgid "Subscribe to this list" msgstr "ใ“ใฎใƒชใ‚นใƒˆใซ็™ป้Œฒ" -#: src/view/screens/Search/Search.tsx:425 -msgid "Suggested Follows" -msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผ" +#: src/view/screens/Search/Explore.tsx:330 +msgid "Suggested accounts" +msgstr "ใŠใ™ใ™ใ‚ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" @@ -5077,7 +5178,7 @@ msgstr "ใ‚ตใƒผใƒ“ใ‚น่ฆ็ด„ใฏ็งปๅ‹•ใ—ใพใ—ใŸ" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎ็„กๅŠนๅŒ–ใซๆœŸ้™ใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚ใ„ใคใงใ‚‚ๆˆปใฃใฆใ“ใ‚Œใพใ™ใ€‚" +msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎ็„กๅŠนๅŒ–ใซๆœŸ้™ใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚ใ„ใคใงใ‚‚ๆˆปใฃใฆใ“ใ‚‰ใ‚Œใพใ™ใ€‚" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 #: src/view/screens/ProfileFeed.tsx:541 @@ -5217,7 +5318,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." @@ -5227,12 +5328,6 @@ msgstr "ใ“ใฎๆฉŸ่ƒฝใฏใƒ™ใƒผใ‚ฟ็‰ˆใงใ™ใ€‚ใƒชใƒใ‚ธใƒˆใƒชใฎใ‚จใ‚ฏใ‚นใƒใƒผใƒˆ msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "็พๅœจใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใซใฏใ‚ขใ‚ฏใ‚ปใ‚นใŒ้›†ไธญใ—ใฆใŠใ‚Šใ€ไธ€ๆ™‚็š„ใซใ”ๅˆฉ็”จใ„ใŸใ ใ‘ใพใ›ใ‚“ใ€‚ๆ™‚้–“ใ‚’ใŠใ„ใฆใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/screens/Profile/Sections/Feed.tsx:59 -#: src/view/screens/ProfileFeed.tsx:471 -#: src/view/screens/ProfileList.tsx:729 -#~ msgid "This feed is empty!" -#~ 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 "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™๏ผใ‚‚ใฃใจๅคšใใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ•ใ‚ฉใƒญใƒผใ™ใ‚‹ใ‹ใ€่จ€่ชžใฎ่จญๅฎšใ‚’่ชฟๆ•ดใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚‹ใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚" @@ -5240,7 +5335,7 @@ msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™๏ผใ‚‚ใฃใจๅคšใใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ•ใ‚ฉ #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." -msgstr "" +msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™ใ€‚" #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." @@ -5336,6 +5431,10 @@ msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใƒ–ใƒญใƒƒใ‚ฏใ—ใŸ<0>{0}ใƒชใ‚นใƒˆใซๅซใพใ‚Œ msgid "This user is included in the <0>{0} list which you have muted." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใƒŸใƒฅใƒผใƒˆใ—ใŸ<0>{0}ใƒชใ‚นใƒˆใซๅซใพใ‚Œใฆใ„ใพใ™ใ€‚" +#: src/components/NewskieDialog.tsx:50 +msgid "This user is new here. Press for more info about when they joined." +msgstr "ๆ–ฐใ—ใ„ใƒฆใƒผใ‚ถใƒผใงใ™ใ€‚ใ“ใ“ใ‚’ๆŠผใ™ใจใ„ใคๅ‚ๅŠ ใ—ใŸใ‹ใฎๆƒ…ๅ ฑใŒ่กจ็คบใ•ใ‚Œใพใ™ใ€‚" + #: src/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏ่ชฐใ‚‚ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ›ใ‚“ใ€‚" @@ -5762,6 +5861,10 @@ msgstr "{0}ใฎใ‚ขใƒใ‚ฟใƒผใ‚’่กจ็คบ" msgid "View {0}'s profile" msgstr "{0}ใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’่กจ็คบ" +#: src/components/ProfileHoverCard/index.web.tsx:417 +msgid "View blocked user's profile" +msgstr "ใƒ–ใƒญใƒƒใ‚ฏไธญใฎใƒฆใƒผใ‚ถใƒผใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’่กจ็คบ" + #: src/view/screens/Log.tsx:52 msgid "View debug entry" msgstr "ใƒ‡ใƒใƒƒใ‚ฐใ‚จใƒณใƒˆใƒชใƒผใ‚’่กจ็คบ" @@ -5804,7 +5907,7 @@ msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใซใ„ใ„ใญใ—ใŸใƒฆใƒผใ‚ถใƒผใ‚’่ฆ‹ใ‚‹" #: src/view/com/home/HomeHeaderLayout.web.tsx:78 #: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 msgid "View your feeds and explore more" -msgstr "" +msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่กจ็คบใ—ใ€ใ•ใ‚‰ใซใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆŽขใ™" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -5891,7 +5994,7 @@ msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€ๆคœ็ดขใ‚’ๅฎŒไบ†ใงใใพใ›ใ‚“ใงใ— #: src/view/com/composer/Composer.tsx:318 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "" +msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“๏ผ่ฟ”ไฟกใ—ใ‚ˆใ†ใจใ—ใฆใ„ใ‚‹ๆŠ•็จฟใฏๅ‰Š้™คใ•ใ‚Œใพใ—ใŸใ€‚" #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 @@ -5899,8 +6002,8 @@ msgid "We're sorry! We can't find the page you were looking for." msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“๏ผใŠๆŽขใ—ใฎใƒšใƒผใ‚ธใฏ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใ€‚" #: 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 "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“๏ผใƒฉใƒ™ใƒฉใƒผใฏ10ใพใงใ—ใ‹็™ป้Œฒใงใใšใ€ใ™ใงใซไธŠ้™ใซ้”ใ—ใฆใ„ใพใ™ใ€‚" +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“๏ผใƒฉใƒ™ใƒฉใƒผใฏ20ใพใงใ—ใ‹็™ป้Œฒใงใใšใ€ใ™ใงใซไธŠ้™ใซ้”ใ—ใฆใ„ใพใ™ใ€‚" #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" @@ -6047,7 +6150,7 @@ msgstr "ใ‚ใชใŸใฏใพใ ใ ใ‚Œใ‚‚ใƒ•ใ‚ฉใƒญใƒฏใƒผใŒใ„ใพใ›ใ‚“ใ€‚" #: src/screens/Profile/KnownFollowers.tsx:99 msgid "You don't follow any users who follow @{name}." -msgstr "" +msgstr "@{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." From ba21fddd7897513fef663b826094878ad0ff1556 Mon Sep 17 00:00:00 2001 From: Minseo Lee Date: Fri, 21 Jun 2024 07:50:18 +0900 Subject: [PATCH 86/86] Update Korean localization (#4513) * 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 | 767 ++++++++++++++++++------------ 1 file changed, 456 insertions(+), 311 deletions(-) diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index ea3088188c..5f36a7eb7f 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-08 15:32+0900\n" +"PO-Revision-Date: 2024-06-19 10:55+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:261 +#: src/view/com/notifications/FeedItem.tsx:263 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "์™ธ {0, plural, other {{formattedCount}}}๋ช…" @@ -33,32 +33,29 @@ msgstr "์ด ๊ณ„์ •์— {0, plural, other {#}}๊ฐœ์˜ ๋ผ๋ฒจ์ด ์ง€์ •๋จ" msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "์ด ์ฝ˜ํ…์ธ ์— {0, plural, other {#}}๊ฐœ์˜ ๋ผ๋ฒจ์ด ์ง€์ •๋จ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:65 +#: src/view/com/util/post-ctrls/RepostButton.tsx:66 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {#}}๊ฐœ" -#: src/components/KnownFollowers.tsx:179 -msgid "{0, plural, one {and # other} other {and # others}}" -msgstr "" - -#: src/components/ProfileHoverCard/index.web.tsx:376 +#: src/components/ProfileHoverCard/index.web.tsx:398 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" msgstr "ํŒ”๋กœ์›Œ" -#: src/components/ProfileHoverCard/index.web.tsx:380 +#: src/components/ProfileHoverCard/index.web.tsx:402 #: src/screens/Profile/Header/Metrics.tsx:27 msgid "{0, plural, one {following} other {following}}" msgstr "ํŒ”๋กœ์šฐ ์ค‘" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:252 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "์ข‹์•„์š” ({0, plural, other {#}}๊ฐœ)" -#: src/view/com/post-thread/PostThreadItem.tsx:380 +#: src/view/com/post-thread/PostThreadItem.tsx:382 msgid "{0, plural, one {like} other {likes}}" msgstr "์ข‹์•„์š”" +#: src/components/FeedCard.tsx:111 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {#}}๋ช…์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„ํ•จ" @@ -67,19 +64,19 @@ msgstr "{0, plural, other {#}}๋ช…์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„ํ•จ" msgid "{0, plural, one {post} other {posts}}" msgstr "๊ฒŒ์‹œ๋ฌผ" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:210 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:213 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "๋‹ต๊ธ€ ({0, plural, other {#}}๊ฐœ)" -#: src/view/com/post-thread/PostThreadItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:362 msgid "{0, plural, one {repost} other {reposts}}" msgstr "์žฌ๊ฒŒ์‹œ" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:248 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:251 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "์ข‹์•„์š” ์ทจ์†Œ ({0, plural, other {#}}๊ฐœ)" -#: src/view/com/util/UserAvatar.tsx:406 +#: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" msgstr "{0} ๋‹˜์˜ ์•„๋ฐ”ํƒ€" @@ -87,6 +84,26 @@ msgstr "{0} ๋‹˜์˜ ์•„๋ฐ”ํƒ€" msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, other {#}}๋ช…์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„ํ•จ" +#: src/lib/hooks/useTimeAgo.ts:69 +msgid "{diff, plural, one {day} other {days}}" +msgstr "์ผ" + +#: src/lib/hooks/useTimeAgo.ts:64 +msgid "{diff, plural, one {hour} other {hours}}" +msgstr "์‹œ๊ฐ„" + +#: src/lib/hooks/useTimeAgo.ts:59 +msgid "{diff, plural, one {minute} other {minutes}}" +msgstr "๋ถ„" + +#: src/lib/hooks/useTimeAgo.ts:75 +msgid "{diff, plural, one {month} other {months}}" +msgstr "๊ฐœ์›”" + +#: src/lib/hooks/useTimeAgo.ts:54 +msgid "{diffSeconds, plural, one {second} other {seconds}}" +msgstr "์ดˆ" + #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" msgstr "์‹œ๊ฐ„" @@ -95,7 +112,7 @@ msgstr "์‹œ๊ฐ„" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "๋ถ„" -#: src/components/ProfileHoverCard/index.web.tsx:457 +#: src/components/ProfileHoverCard/index.web.tsx:503 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} ํŒ”๋กœ์šฐ ์ค‘" @@ -114,11 +131,15 @@ msgstr "{likeCount, plural, other {#}}๋ช…์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„ํ•จ" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}๊ฐœ ์ฝ์ง€ ์•Š์Œ" +#: src/components/NewskieDialog.tsx:75 +msgid "{profileName} joined Bluesky {0} ago" +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}}" msgstr "{value, plural, =0 {๋ชจ๋“  ๋‹ต๊ธ€ ํ‘œ์‹œ} other {์ข‹์•„์š”๊ฐ€ #๊ฐœ ์ด์ƒ์ธ ๋‹ต๊ธ€ ํ‘œ์‹œ}}" -#: src/view/com/threadgate/WhoCanReply.tsx:159 +#: src/view/com/threadgate/WhoCanReply.tsx:290 msgid "<0/> members" msgstr "<0/>์˜ ๋ฉค๋ฒ„" @@ -134,7 +155,7 @@ msgstr "<0>{0} ํŒ”๋กœ์šฐ ์ค‘" msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>ํ•ด๋‹น ์—†์Œ. ์ด ๊ฒฝ๊ณ ๋Š” ๋ฏธ๋””์–ด๊ฐ€ ์ฒจ๋ถ€๋œ ๊ฒŒ์‹œ๋ฌผ์—๋งŒ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/screens/Profile/Header/Handle.tsx:43 +#: src/screens/Profile/Header/Handle.tsx:50 msgid "โš Invalid Handle" msgstr "โš ์ž˜๋ชป๋œ ํ•ธ๋“ค" @@ -143,7 +164,7 @@ msgid "2FA Confirmation" msgstr "2๋‹จ๊ณ„ ์ธ์ฆ" #: src/view/com/util/ViewHeader.tsx:93 -#: src/view/screens/Search/Search.tsx:715 +#: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" msgstr "ํƒ์ƒ‰ ๋งํฌ ๋ฐ ์„ค์ •์œผ๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค" @@ -161,7 +182,7 @@ msgid "Accessibility settings" msgstr "์ ‘๊ทผ์„ฑ ์„ค์ •" #: src/Navigation.tsx:296 -#: src/view/screens/AccessibilitySettings.tsx:63 +#: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "์ ‘๊ทผ์„ฑ ์„ค์ •" @@ -171,15 +192,15 @@ msgstr "์ ‘๊ทผ์„ฑ ์„ค์ •" msgid "Account" msgstr "๊ณ„์ •" -#: src/view/com/profile/ProfileMenu.tsx:142 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account blocked" msgstr "๊ณ„์ • ์ฐจ๋‹จ๋จ" -#: src/view/com/profile/ProfileMenu.tsx:156 +#: src/view/com/profile/ProfileMenu.tsx:159 msgid "Account followed" msgstr "๊ณ„์ • ํŒ”๋กœ์šฐํ•จ" -#: src/view/com/profile/ProfileMenu.tsx:116 +#: src/view/com/profile/ProfileMenu.tsx:119 msgid "Account muted" msgstr "๊ณ„์ • ๋ฎคํŠธ๋จ" @@ -200,16 +221,16 @@ msgstr "๊ณ„์ • ์˜ต์…˜" msgid "Account removed from quick access" msgstr "๋น ๋ฅธ ์•ก์„ธ์Šค์—์„œ ๊ณ„์ • ์ œ๊ฑฐ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:131 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 +#: src/view/com/profile/ProfileMenu.tsx:134 msgid "Account unblocked" msgstr "๊ณ„์ • ์ฐจ๋‹จ ํ•ด์ œ๋จ" -#: src/view/com/profile/ProfileMenu.tsx:169 +#: src/view/com/profile/ProfileMenu.tsx:172 msgid "Account unfollowed" msgstr "๊ณ„์ • ์–ธํŒ”๋กœ์šฐํ•จ" -#: src/view/com/profile/ProfileMenu.tsx:105 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account unmuted" msgstr "๊ณ„์ • ์–ธ๋ฎคํŠธ๋จ" @@ -270,8 +291,12 @@ msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ๋žŒ์˜ ๊ธฐ๋ณธ ํ”ผ๋“œ๋งŒ ์ถ”๊ฐ€ํ•˜๊ธฐ" msgid "Add the following DNS record to your domain:" msgstr "๋„๋ฉ”์ธ์— ๋‹ค์Œ DNS ๋ ˆ์ฝ”๋“œ๋ฅผ ์ถ”๊ฐ€ํ•˜์„ธ์š”:" -#: src/view/com/profile/ProfileMenu.tsx:265 +#: src/components/FeedCard.tsx:180 +msgid "Add this feed to your feeds" +msgstr "์ด ํ”ผ๋“œ๋ฅผ ๋‚ด ํ”ผ๋“œ์— ์ถ”๊ฐ€ํ•˜๊ธฐ" + #: src/view/com/profile/ProfileMenu.tsx:268 +#: src/view/com/profile/ProfileMenu.tsx:271 msgid "Add to Lists" msgstr "๋ฆฌ์ŠคํŠธ์— ์ถ”๊ฐ€" @@ -306,7 +331,7 @@ msgstr "์„ฑ์ธ ์ฝ˜ํ…์ธ ๊ฐ€ ๋น„ํ™œ์„ฑํ™”๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค." msgid "Advanced" msgstr "๊ณ ๊ธ‰" -#: src/view/screens/Feeds.tsx:771 +#: src/view/screens/Feeds.tsx:737 msgid "All the feeds you've saved, right in one place." msgstr "์ €์žฅํ•œ ๋ชจ๋“  ํ”ผ๋“œ๋ฅผ ํ•œ ๊ณณ์—์„œ ํ™•์ธํ•˜์„ธ์š”." @@ -331,17 +356,17 @@ 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:173 +#: src/view/com/util/post-embeds/GifEmbed.tsx:177 msgid "ALT" msgstr "ALT" #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:77 +#: src/view/screens/AccessibilitySettings.tsx:83 msgid "Alt text" msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:179 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "Alt Text" msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ" @@ -379,9 +404,8 @@ msgstr "๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." msgid "an unknown error occurred" msgstr "์•Œ ์ˆ˜ ์—†๋Š” ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/KnownFollowers.tsx:187 -#: src/view/com/notifications/FeedItem.tsx:258 -#: src/view/com/threadgate/WhoCanReply.tsx:180 +#: src/view/com/notifications/FeedItem.tsx:260 +#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "๋ฐ" @@ -389,7 +413,7 @@ msgstr "๋ฐ" msgid "Animals" msgstr "๋™๋ฌผ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:148 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "์›€์ง์ด๋Š” GIF" @@ -469,7 +493,11 @@ msgstr "์ •๋ง ์ด ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐ€์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ? ๋‚˜์—๊ฒŒ ๋ณด์ด๋Š” ๋ฉ” msgid "Are you sure you want to remove {0} from your feeds?" msgstr "ํ”ผ๋“œ์—์„œ {0}์„(๋ฅผ) ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/composer/Composer.tsx:630 +#: src/components/FeedCard.tsx:197 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ด ํ”ผ๋“œ๋ฅผ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" + +#: src/view/com/composer/Composer.tsx:632 msgid "Are you sure you'd like to discard this draft?" msgstr "์ด ์ดˆ์•ˆ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -524,8 +552,8 @@ msgstr "์ƒ๋…„์›”์ผ" msgid "Birthday:" msgstr "์ƒ๋…„์›”์ผ:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 -#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 +#: src/view/com/profile/ProfileMenu.tsx:366 msgid "Block" msgstr "์ฐจ๋‹จ" @@ -534,12 +562,12 @@ msgstr "์ฐจ๋‹จ" msgid "Block account" msgstr "๊ณ„์ • ์ฐจ๋‹จ" -#: src/view/com/profile/ProfileMenu.tsx:302 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:305 +#: src/view/com/profile/ProfileMenu.tsx:312 msgid "Block Account" msgstr "๊ณ„์ • ์ฐจ๋‹จ" -#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 msgid "Block Account?" msgstr "๊ณ„์ •์„ ์ฐจ๋‹จํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -569,7 +597,7 @@ msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •" msgid "Blocked Accounts" msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •" -#: src/view/com/profile/ProfileMenu.tsx:358 +#: src/view/com/profile/ProfileMenu.tsx:361 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ํ•˜๊ฑฐ๋‚˜ ๊ธฐํƒ€ ๋‹ค๋ฅธ ๋ฐฉ์‹์œผ๋กœ ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -577,7 +605,7 @@ msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ํ•˜๊ฑฐ๋‚˜ ๊ธฐํƒ€ ๋‹ค๋ฅธ ๋ฐฉ์‹์œผ๋กœ ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ฐจ๋‹จํ•œ ๊ณ„์ •์˜ ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†์œผ๋ฉฐ ํ•ด๋‹น ๊ณ„์ •๋„ ๋‚ด ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThread.tsx:363 +#: src/view/com/post-thread/PostThread.tsx:367 msgid "Blocked post." msgstr "์ฐจ๋‹จ๋œ ๊ฒŒ์‹œ๋ฌผ." @@ -589,7 +617,7 @@ msgstr "์ฐจ๋‹จํ•˜๋”๋ผ๋„ ์ด ๋ผ๋ฒจ๋Ÿฌ๊ฐ€ ๋‚ด ๊ณ„์ •์— ๋ผ๋ฒจ์„ ๋ถ™์ด๋Š” msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "์ฐจ๋‹จ ๋ชฉ๋ก์€ ๊ณต๊ฐœ๋ฉ๋‹ˆ๋‹ค. ์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ํ•˜๊ฑฐ๋‚˜ ๊ธฐํƒ€ ๋‹ค๋ฅธ ๋ฐฉ์‹์œผ๋กœ ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/profile/ProfileMenu.tsx:355 +#: src/view/com/profile/ProfileMenu.tsx:358 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "์ฐจ๋‹จํ•˜๋”๋ผ๋„ ๋‚ด ๊ณ„์ •์— ๋ผ๋ฒจ์ด ๋ถ™๋Š” ๊ฒƒ์€ ๋ง‰์ง€ ๋ชปํ•˜์ง€๋งŒ, ์ด ๊ณ„์ •์ด ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•˜๋Š” ๊ฒƒ์€ ์ค‘์ง€๋ฉ๋‹ˆ๋‹ค." @@ -664,8 +692,8 @@ msgstr "๊ธ€์ž, ์ˆซ์ž, ๊ณต๋ฐฑ, ๋Œ€์‹œ, ๋ฐ‘์ค„๋งŒ ํฌํ•จํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:432 -#: src/view/com/composer/Composer.tsx:438 +#: src/view/com/composer/Composer.tsx:434 +#: src/view/com/composer/Composer.tsx:440 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -681,8 +709,8 @@ msgstr "๊ธ€์ž, ์ˆซ์ž, ๊ณต๋ฐฑ, ๋Œ€์‹œ, ๋ฐ‘์ค„๋งŒ ํฌํ•จํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:138 -#: src/view/screens/Search/Search.tsx:735 +#: src/view/com/util/post-ctrls/RepostButton.tsx:139 +#: src/view/screens/Search/Search.tsx:704 #: src/view/shell/desktop/Search.tsx:218 msgid "Cancel" msgstr "์ทจ์†Œ" @@ -711,7 +739,7 @@ msgstr "์ด๋ฏธ์ง€ ์ž๋ฅด๊ธฐ ์ทจ์†Œ" msgid "Cancel profile editing" msgstr "ํ”„๋กœํ•„ ํŽธ์ง‘ ์ทจ์†Œ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:132 +#: src/view/com/util/post-ctrls/RepostButton.tsx:133 msgid "Cancel quote post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ธ์šฉ ์ทจ์†Œ" @@ -807,7 +835,7 @@ msgstr "์ด๋ฉ”์ผ์—์„œ ๋กœ๊ทธ์ธ ์ฝ”๋“œ๋ฅผ ํ™•์ธํ•œ ํ›„ ์—ฌ๊ธฐ์— ์ž…๋ ฅํ•˜์„ธ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "๋ฐ›์€ ํŽธ์ง€ํ•จ์—์„œ ์•„๋ž˜์— ์ž…๋ ฅํ•˜๋Š” ์ธ์ฆ ์ฝ”๋“œ๊ฐ€ ํฌํ•จ๋œ ์ด๋ฉ”์ผ์ด ์žˆ๋Š”์ง€ ํ™•์ธํ•˜์„ธ์š”:" -#: src/view/com/modals/Threadgate.tsx:73 +#: src/view/com/modals/Threadgate.tsx:75 msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "\"๋ชจ๋‘\" ๋˜๋Š” \"์—†์Œ\"์„ ์„ ํƒํ•˜์„ธ์š”." @@ -844,7 +872,7 @@ msgid "Clear all storage data (restart after this)" msgstr "๋ชจ๋“  ์Šคํ† ๋ฆฌ์ง€ ๋ฐ์ดํ„ฐ ์ง€์šฐ๊ธฐ (์ดํ›„ ๋‹ค์‹œ ์‹œ์ž‘)" #: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:861 +#: src/view/screens/Search/Search.tsx:824 msgid "Clear search query" msgstr "๊ฒ€์ƒ‰์–ด ์ง€์šฐ๊ธฐ" @@ -889,7 +917,7 @@ msgstr "๋‹ค๊ทธ๋‹ฅ ๐Ÿด ๋‹ค๊ทธ๋‹ฅ ๐Ÿด" #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:185 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Close" msgstr "๋‹ซ๊ธฐ" @@ -944,7 +972,7 @@ msgstr "ํ•˜๋‹จ ํƒ์ƒ‰ ๋ง‰๋Œ€๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค" msgid "Closes password update alert" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ ์•Œ๋ฆผ์„ ๋‹ซ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/Composer.tsx:434 +#: src/view/com/composer/Composer.tsx:436 msgid "Closes post composer and discards post draft" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ ์ƒ์ž๋ฅผ ๋‹ซ๊ณ  ๊ฒŒ์‹œ๋ฌผ ์ดˆ์•ˆ์„ ์‚ญ์ œํ•ฉ๋‹ˆ๋‹ค" @@ -952,11 +980,11 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ ์ƒ์ž๋ฅผ ๋‹ซ๊ณ  ๊ฒŒ์‹œ๋ฌผ ์ดˆ์•ˆ์„ ์‚ญ์ œํ•ฉ๋‹ˆ๋‹ค" msgid "Closes viewer for header image" msgstr "ํ—ค๋” ์ด๋ฏธ์ง€ ๋ทฐ์–ด๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค" -#: src/view/com/notifications/FeedItem.tsx:205 +#: src/view/com/notifications/FeedItem.tsx:207 msgid "Collapse list of users" msgstr "์‚ฌ์šฉ์ž ๋ชฉ๋ก ์ ‘๊ธฐ" -#: src/view/com/notifications/FeedItem.tsx:341 +#: src/view/com/notifications/FeedItem.tsx:343 msgid "Collapses list of users for a given notification" msgstr "์ด ์•Œ๋ฆผ์— ๋Œ€ํ•œ ์‚ฌ์šฉ์ž ๋ชฉ๋ก์„ ์ถ•์†Œํ•ฉ๋‹ˆ๋‹ค" @@ -981,7 +1009,7 @@ msgstr "์˜จ๋ณด๋”ฉ ์™„๋ฃŒ ํ›„ ๊ณ„์ • ์‚ฌ์šฉ ์‹œ์ž‘" msgid "Complete the challenge" msgstr "์ฑŒ๋ฆฐ์ง€ ์™„๋ฃŒํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:551 +#: src/view/com/composer/Composer.tsx:553 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "์ตœ๋Œ€ {MAX_GRAPHEME_LENGTH}์ž ๊ธธ์ด๊นŒ์ง€ ๊ธ€์„ ์ž‘์„ฑํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" @@ -997,8 +1025,8 @@ msgstr "{name} ์นดํ…Œ๊ณ ๋ฆฌ์— ๋Œ€ํ•œ ์ฝ˜ํ…์ธ  ํ•„ํ„ฐ๋ง ์„ค์ •์„ ๊ตฌ์„ฑํ•ฉ๋‹ˆ msgid "Configured in <0>moderation settings." msgstr "<0>๊ฒ€ํ†  ์„ค์ •์—์„œ ์„ค์ •ํ•ฉ๋‹ˆ๋‹ค." -#: src/components/Prompt.tsx:159 #: src/components/Prompt.tsx:162 +#: src/components/Prompt.tsx:165 #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 @@ -1092,7 +1120,7 @@ msgstr "{0}(์œผ)๋กœ ๊ณ„์†ํ•˜๊ธฐ (ํ˜„์žฌ ๋กœ๊ทธ์ธ)" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "" +msgstr "์Šค๋ ˆ๋“œ ๋” ๋ณด๊ธฐ..." #: src/screens/Onboarding/StepInterests/index.tsx:250 #: src/screens/Onboarding/StepProfile/index.tsx:266 @@ -1121,7 +1149,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:182 +#: src/view/com/util/forms/PostDropdownBtn.tsx:189 msgid "Copied to clipboard" msgstr "ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌ๋จ" @@ -1150,8 +1178,8 @@ msgstr "์ฝ”๋“œ ๋ณต์‚ฌ" msgid "Copy link to list" msgstr "๋ฆฌ์ŠคํŠธ ๋งํฌ ๋ณต์‚ฌ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:297 -#: src/view/com/util/forms/PostDropdownBtn.tsx:306 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 msgid "Copy link to post" msgstr "๊ฒŒ์‹œ๋ฌผ ๋งํฌ ๋ณต์‚ฌ" @@ -1160,8 +1188,8 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ๋งํฌ ๋ณต์‚ฌ" msgid "Copy message text" msgstr "๋ฉ”์‹œ์ง€ ํ…์ŠคํŠธ ๋ณต์‚ฌ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:275 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 +#: src/view/com/util/forms/PostDropdownBtn.tsx:285 +#: src/view/com/util/forms/PostDropdownBtn.tsx:287 msgid "Copy post text" msgstr "๊ฒŒ์‹œ๋ฌผ ํ…์ŠคํŠธ ๋ณต์‚ฌ" @@ -1238,7 +1266,8 @@ msgstr "์‚ฌ์šฉ์ž ์ง€์ •" msgid "Custom domain" msgstr "์‚ฌ์šฉ์ž ์ง€์ • ๋„๋ฉ”์ธ" -#: src/view/screens/Feeds.tsx:797 +#: src/view/screens/Feeds.tsx:763 +#: src/view/screens/Search/Explore.tsx:383 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "์ปค๋ฎค๋‹ˆํ‹ฐ์—์„œ ๊ตฌ์ถ•ํ•œ ๋งž์ถค ํ”ผ๋“œ๋Š” ์ƒˆ๋กœ์šด ๊ฒฝํ—˜์„ ์ œ๊ณตํ•˜๊ณ  ์ข‹์•„ํ•˜๋Š” ์ฝ˜ํ…์ธ ๋ฅผ ์ฐพ์„ ์ˆ˜ ์žˆ๋„๋ก ๋„์™€์ค๋‹ˆ๋‹ค." @@ -1281,7 +1310,7 @@ msgid "Debug panel" msgstr "๋””๋ฒ„๊ทธ ํŒจ๋„" #: src/components/dms/MessageMenu.tsx:151 -#: src/view/com/util/forms/PostDropdownBtn.tsx:423 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1332,8 +1361,8 @@ msgstr "๋‚ด ๊ณ„์ • ์‚ญ์ œ" msgid "Delete My Accountโ€ฆ" msgstr "๋‚ด ๊ณ„์ • ์‚ญ์ œโ€ฆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:414 +#: src/view/com/util/forms/PostDropdownBtn.tsx:416 msgid "Delete post" msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ" @@ -1341,7 +1370,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ" msgid "Delete this list?" msgstr "์ด ๋ฆฌ์ŠคํŠธ๋ฅผ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:418 +#: src/view/com/util/forms/PostDropdownBtn.tsx:428 msgid "Delete this post?" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -1349,7 +1378,7 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Deleted" msgstr "์‚ญ์ œ๋จ" -#: src/view/com/post-thread/PostThread.tsx:349 +#: src/view/com/post-thread/PostThread.tsx:353 msgid "Deleted post." msgstr "์‚ญ์ œ๋œ ๊ฒŒ์‹œ๋ฌผ." @@ -1380,7 +1409,7 @@ msgstr "์–ด๋‘‘ํ•จ" msgid "Direct messages are here!" msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€๊ฐ€ ์ƒ๊ฒผ์Šต๋‹ˆ๋‹ค!" -#: src/view/screens/AccessibilitySettings.tsx:94 +#: src/view/screens/AccessibilitySettings.tsx:107 msgid "Disable autoplay for GIFs" msgstr "GIF ์ž๋™ ์žฌ์ƒ ๋„๊ธฐ" @@ -1388,7 +1417,7 @@ msgstr "GIF ์ž๋™ ์žฌ์ƒ ๋„๊ธฐ" msgid "Disable Email 2FA" msgstr "์ด๋ฉ”์ผ 2๋‹จ๊ณ„ ์ธ์ฆ ๋„๊ธฐ" -#: src/view/screens/AccessibilitySettings.tsx:108 +#: src/view/screens/AccessibilitySettings.tsx:121 msgid "Disable haptic feedback" msgstr "ํ–…ํ‹ฑ ํ”ผ๋“œ๋ฐฑ ๋„๊ธฐ" @@ -1401,11 +1430,11 @@ msgstr "ํ–…ํ‹ฑ ํ”ผ๋“œ๋ฐฑ ๋„๊ธฐ" msgid "Disabled" msgstr "์‚ฌ์šฉ ์•ˆ ํ•จ" -#: src/view/com/composer/Composer.tsx:632 +#: src/view/com/composer/Composer.tsx:634 msgid "Discard" msgstr "์‚ญ์ œ" -#: src/view/com/composer/Composer.tsx:629 +#: src/view/com/composer/Composer.tsx:631 msgid "Discard draft?" msgstr "์ดˆ์•ˆ ์‚ญ์ œ" @@ -1419,10 +1448,18 @@ msgstr "์•ฑ์ด ๋กœ๊ทธ์•„์›ƒํ•œ ์‚ฌ์šฉ์ž์—๊ฒŒ ๋‚ด ๊ณ„์ •์„ ํ‘œ์‹œํ•˜์ง€ ์•Š๋„ msgid "Discover new custom feeds" msgstr "์ƒˆ๋กœ์šด ๋งž์ถค ํ”ผ๋“œ ์ฐพ์•„๋ณด๊ธฐ" -#: src/view/screens/Feeds.tsx:794 +#: src/view/screens/Search/Explore.tsx:381 +msgid "Discover new feeds" +msgstr "์ƒˆ ํ”ผ๋“œ ๋ฐœ๊ฒฌํ•˜๊ธฐ" + +#: src/view/screens/Feeds.tsx:760 msgid "Discover New Feeds" msgstr "์ƒˆ ํ”ผ๋“œ ๋ฐœ๊ฒฌํ•˜๊ธฐ" +#: src/view/screens/AccessibilitySettings.tsx:95 +msgid "Display larger alt text badges" +msgstr "๋” ํฐ ๋Œ€์ฒด ํ…์ŠคํŠธ ๋ฐฐ์ง€ ํ‘œ์‹œ" + #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" msgstr "ํ‘œ์‹œ ์ด๋ฆ„" @@ -1453,8 +1490,8 @@ msgstr "๋„๋ฉ”์ธ์„ ํ™•์ธํ–ˆ์Šต๋‹ˆ๋‹ค." #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/forms/DateField/index.tsx:74 -#: src/components/forms/DateField/index.tsx:80 +#: src/components/forms/DateField/index.tsx:77 +#: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 @@ -1472,8 +1509,8 @@ 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:130 #: 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 @@ -1490,7 +1527,7 @@ msgstr "์™„๋ฃŒ{extraText}" msgid "Download CAR file" msgstr "CAR ํŒŒ์ผ ๋‹ค์šด๋กœ๋“œ" -#: src/view/com/composer/text-input/TextInput.web.tsx:261 +#: src/view/com/composer/text-input/TextInput.web.tsx:272 msgid "Drop to add images" msgstr "๋“œ๋กญํ•˜์—ฌ ์ด๋ฏธ์ง€ ์ถ”๊ฐ€" @@ -1534,17 +1571,17 @@ msgstr "์˜ˆ: ๋ฐ˜๋ณต์ ์œผ๋กœ ๊ด‘๊ณ  ๋‹ต๊ธ€์„ ๋‹ค๋Š” ๊ณ„์ •." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "๊ฐ ์ฝ”๋“œ๋Š” ํ•œ ๋ฒˆ๋งŒ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ์ฃผ๊ธฐ์ ์œผ๋กœ ๋” ๋งŽ์€ ์ดˆ๋Œ€ ์ฝ”๋“œ๋ฅผ ๋ฐ›๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." -#: src/view/screens/Feeds.tsx:400 -#: src/view/screens/Feeds.tsx:471 -msgid "Edit" -msgstr "" - #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" msgid "Edit" msgstr "ํŽธ์ง‘" -#: src/view/com/util/UserAvatar.tsx:312 +#: src/view/screens/Feeds.tsx:370 +#: src/view/screens/Feeds.tsx:441 +msgid "Edit" +msgstr "ํŽธ์ง‘" + +#: src/view/com/util/UserAvatar.tsx:325 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "์•„๋ฐ”ํƒ€ ํŽธ์ง‘" @@ -1563,8 +1600,8 @@ msgid "Edit Moderation List" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ ํŽธ์ง‘" #: src/Navigation.tsx:269 -#: src/view/screens/Feeds.tsx:398 -#: src/view/screens/Feeds.tsx:469 +#: src/view/screens/Feeds.tsx:368 +#: src/view/screens/Feeds.tsx:439 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "๋‚ด ํ”ผ๋“œ ํŽธ์ง‘" @@ -1574,24 +1611,24 @@ msgid "Edit my profile" msgstr "๋‚ด ํ”„๋กœํ•„ ํŽธ์ง‘" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "ํ”„๋กœํ•„ ํŽธ์ง‘" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "ํ”„๋กœํ•„ ํŽธ์ง‘" -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 -#: src/view/screens/Feeds.tsx:416 -#~ msgid "Edit Saved Feeds" -#~ msgstr "์ €์žฅํ•œ ํ”ผ๋“œ ํŽธ์ง‘" - #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" msgstr "์‚ฌ์šฉ์ž ๋ฆฌ์ŠคํŠธ ํŽธ์ง‘" +#: src/view/com/threadgate/WhoCanReply.tsx:73 +#: src/view/com/threadgate/WhoCanReply.tsx:130 +msgid "Edit who can reply" +msgstr "๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ๋Š” ์‚ฌ๋žŒ ํŽธ์ง‘" + #: src/view/com/modals/EditProfile.tsx:194 msgid "Edit your display name" msgstr "๋‚ด ํ‘œ์‹œ ์ด๋ฆ„ ํŽธ์ง‘" @@ -1639,8 +1676,8 @@ msgid "Embed HTML code" msgstr "์ž„๋ฒ ๋“œ HTML ์ฝ”๋“œ" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:314 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:324 +#: src/view/com/util/forms/PostDropdownBtn.tsx:326 msgid "Embed post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž„๋ฒ ๋“œ" @@ -1746,11 +1783,14 @@ msgstr "์บก์ฐจ ์‘๋‹ต์„ ์ˆ˜์‹ ํ•˜๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค." msgid "Error:" msgstr "์˜ค๋ฅ˜:" -#: src/view/com/modals/Threadgate.tsx:77 +#: src/view/com/modals/Threadgate.tsx:79 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 msgid "Everybody can reply" msgstr "๋ˆ„๊ตฌ๋‚˜ ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Œ" @@ -1794,7 +1834,7 @@ msgstr "๊ฒ€์ƒ‰์–ด ์ž…๋ ฅ์„ ์ข…๋ฃŒํ•ฉ๋‹ˆ๋‹ค" msgid "Expand alt text" msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ ํ™•์žฅ" -#: src/view/com/notifications/FeedItem.tsx:206 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "Expand list of users" msgstr "์‚ฌ์šฉ์ž ๋ชฉ๋ก ํŽผ์น˜๊ธฐ" @@ -1853,10 +1893,15 @@ msgstr "๋ฆฌ์ŠคํŠธ๋ฅผ ๋งŒ๋“ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์„ ํ™•์ธํ•œ msgid "Failed to delete message" msgstr "๋ฉ”์‹œ์ง€๋ฅผ ์‚ญ์ œํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:149 +#: src/view/com/util/forms/PostDropdownBtn.tsx:152 msgid "Failed to delete post, please try again" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" +#: src/view/screens/Search/Explore.tsx:417 +#: src/view/screens/Search/Explore.tsx:441 +msgid "Failed to load feeds preferences" +msgstr "ํ”ผ๋“œ ํ™˜๊ฒฝ์„ค์ •์„ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" + #: src/components/dialogs/GifSelect.ios.tsx:196 #: src/components/dialogs/GifSelect.tsx:212 msgid "Failed to load GIFs" @@ -1866,6 +1911,15 @@ msgstr "GIF๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Failed to load past messages" msgstr "์ง€๋‚œ ๋ฉ”์‹œ์ง€๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" +#: src/view/screens/Search/Explore.tsx:410 +#: src/view/screens/Search/Explore.tsx:434 +msgid "Failed to load suggested feeds" +msgstr "์ถ”์ฒœ ํ”ผ๋“œ๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" + +#: src/view/screens/Search/Explore.tsx:370 +msgid "Failed to load suggested follows" +msgstr "์ถ”์ฒœ ํŒ”๋กœ์šฐ๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" + #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Failed to save image: {0}" msgstr "์ด๋ฏธ์ง€๋ฅผ ์ €์žฅํ•˜์ง€ ๋ชปํ•จ: {0}" @@ -1877,7 +1931,15 @@ msgstr "์ „์†ก ์‹คํŒจ" #: src/components/moderation/LabelsOnMeDialog.tsx:223 #: 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 "์Šค๋ ˆ๋“œ ๋ฎคํŠธ๋ฅผ ์ „ํ™˜ํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" + +#: src/components/FeedCard.tsx:160 +msgid "Failed to update feeds" +msgstr "ํ”ผ๋“œ๋ฅผ ์—…๋ฐ์ดํŠธํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/components/dms/MessagesNUX.tsx:60 #: src/screens/Messages/Settings.tsx:35 @@ -1888,11 +1950,12 @@ msgstr "์„ค์ •์„ ์—…๋ฐ์ดํŠธํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Feed" msgstr "ํ”ผ๋“œ" +#: src/components/FeedCard.tsx:91 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} ๋‹˜์˜ ํ”ผ๋“œ" -#: src/view/screens/Feeds.tsx:709 +#: src/view/screens/Feeds.tsx:675 msgid "Feed offline" msgstr "ํ”ผ๋“œ ์˜คํ”„๋ผ์ธ" @@ -1901,9 +1964,10 @@ msgstr "ํ”ผ๋“œ ์˜คํ”„๋ผ์ธ" msgid "Feedback" msgstr "ํ”ผ๋“œ๋ฐฑ" -#: src/view/screens/Feeds.tsx:463 -#: src/view/screens/Feeds.tsx:570 +#: src/view/screens/Feeds.tsx:433 +#: src/view/screens/Feeds.tsx:536 #: src/view/screens/Profile.tsx:197 +#: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:367 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 @@ -1914,6 +1978,10 @@ msgstr "ํ”ผ๋“œ" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ํ”ผ๋“œ๋Š” ์‚ฌ์šฉ์ž๊ฐ€ ์•ฝ๊ฐ„์˜ ์ฝ”๋”ฉ ์ „๋ฌธ ์ง€์‹๋งŒ์œผ๋กœ ๊ตฌ์ถ•ํ•  ์ˆ˜ ์žˆ๋Š” ๋งž์ถค ์•Œ๊ณ ๋ฆฌ์ฆ˜์ž…๋‹ˆ๋‹ค. <0/>์—์„œ ์ž์„ธํ•œ ๋‚ด์šฉ์„ ํ™•์ธํ•˜์„ธ์š”." +#: src/components/FeedCard.tsx:157 +msgid "Feeds updated!" +msgstr "ํ”ผ๋“œ ์—…๋ฐ์ดํŠธ๋จ" + #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" msgstr "ํŒŒ์ผ ์ฝ˜ํ…์ธ " @@ -1936,7 +2004,7 @@ msgstr "๋งˆ๋ฌด๋ฆฌ ์ค‘" msgid "Find accounts to follow" msgstr "ํŒ”๋กœ์šฐํ•  ๊ณ„์ • ์ฐพ์•„๋ณด๊ธฐ" -#: src/view/screens/Search/Search.tsx:470 +#: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Bluesky์—์„œ ๊ฒŒ์‹œ๋ฌผ ๋ฐ ์‚ฌ์šฉ์ž ์ฐพ๊ธฐ" @@ -1965,9 +2033,9 @@ msgstr "๊ฐ€๋กœ๋กœ ๋’ค์ง‘๊ธฐ" msgid "Flip vertically" msgstr "์„ธ๋กœ๋กœ ๋’ค์ง‘๊ธฐ" -#: src/components/ProfileHoverCard/index.web.tsx:412 -#: src/components/ProfileHoverCard/index.web.tsx:423 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:248 +#: src/components/ProfileHoverCard/index.web.tsx:446 +#: src/components/ProfileHoverCard/index.web.tsx:457 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:146 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Follow" @@ -1978,7 +2046,7 @@ msgctxt "action" msgid "Follow" msgstr "ํŒ”๋กœ์šฐ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:238 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 msgid "Follow {0}" msgstr "{0} ๋‹˜์„ ํŒ”๋กœ์šฐ" @@ -1987,8 +2055,8 @@ msgstr "{0} ๋‹˜์„ ํŒ”๋กœ์šฐ" msgid "Follow {name}" msgstr "{name} ๋‹˜์„ ํŒ”๋กœ์šฐ" -#: src/view/com/profile/ProfileMenu.tsx:244 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:247 +#: src/view/com/profile/ProfileMenu.tsx:258 msgid "Follow Account" msgstr "๊ณ„์ • ํŒ”๋กœ์šฐ" @@ -1996,15 +2064,31 @@ msgstr "๊ณ„์ • ํŒ”๋กœ์šฐ" msgid "Follow Back" msgstr "๋งžํŒ”๋กœ์šฐ" -#: src/components/KnownFollowers.tsx:169 -msgid "Followed by" -msgstr "" +#: src/view/screens/Search/Explore.tsx:333 +msgid "Follow more accounts to get connected to your interests and build your network." +msgstr "๋” ๋งŽ์€ ๊ณ„์ •์„ ํŒ”๋กœ์šฐํ•˜๊ณ  ๊ด€์‹ฌ ๋ถ„์•ผ๋ฅผ ์—ฐ๊ฒฐํ•˜์—ฌ ๋„คํŠธ์›Œํฌ๋ฅผ ๊ตฌ์ถ•ํ•˜์„ธ์š”." #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" msgstr "{0} ๋‹˜์ด ํŒ”๋กœ์šฐํ•จ" -#: src/view/com/modals/Threadgate.tsx:99 +#: src/components/KnownFollowers.tsx:223 +msgid "Followed by <0>{0}" +msgstr "<0>{0} ๋‹˜์ด ํŒ”๋กœ์šฐํ•จ" + +#: src/components/KnownFollowers.tsx:209 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "<0>{0} ๋‹˜ ์™ธ {1, plural, other {#}}๋ช…์ด ํŒ”๋กœ์šฐํ•จ" + +#: src/components/KnownFollowers.tsx:196 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "<0>{0} ๋‹˜๊ณผ <1>{1} ๋‹˜์ด ํŒ”๋กœ์šฐํ•จ" + +#: src/components/KnownFollowers.tsx:178 +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 msgid "Followed users" msgstr "ํŒ”๋กœ์šฐํ•œ ์‚ฌ์šฉ์ž" @@ -2012,7 +2096,7 @@ msgstr "ํŒ”๋กœ์šฐํ•œ ์‚ฌ์šฉ์ž" msgid "Followed users only" msgstr "ํŒ”๋กœ์šฐํ•œ ์‚ฌ์šฉ์ž๋งŒ" -#: src/view/com/notifications/FeedItem.tsx:173 +#: src/view/com/notifications/FeedItem.tsx:175 msgid "followed you" msgstr "์ด(๊ฐ€) ๋‚˜๋ฅผ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -2023,25 +2107,25 @@ msgstr "ํŒ”๋กœ์›Œ" #: src/Navigation.tsx:177 msgid "Followers of @{0} that you know" -msgstr "" +msgstr "๋‚ด๊ฐ€ ์•„๋Š” @{0} ๋‹˜์˜ ํŒ”๋กœ์›Œ" #: src/screens/Profile/KnownFollowers.tsx:108 #: src/screens/Profile/KnownFollowers.tsx:118 msgid "Followers you know" -msgstr "" +msgstr "๋‚ด๊ฐ€ ์•„๋Š” ํŒ”๋กœ์›Œ" -#: src/components/ProfileHoverCard/index.web.tsx:411 -#: src/components/ProfileHoverCard/index.web.tsx:422 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:246 +#: 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:656 +#: src/view/screens/Feeds.tsx:622 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "ํŒ”๋กœ์šฐ ์ค‘" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "{0} ๋‹˜์„ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -2059,7 +2143,7 @@ msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ ์„ค์ •" msgid "Following Feed Preferences" msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ ์„ค์ •" -#: src/screens/Profile/Header/Handle.tsx:24 +#: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "๋‚˜๋ฅผ ํŒ”๋กœ์šฐํ•จ" @@ -2100,7 +2184,7 @@ msgstr "์žฆ์€ ์›์น˜ ์•Š๋Š” ์ฝ˜ํ…์ธ  ๊ฒŒ์‹œ" msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor} ๋‹˜์˜ ํƒœ๊ทธ" -#: src/view/com/posts/FeedItem.tsx:232 +#: src/view/com/posts/FeedItem.tsx:236 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>์—์„œ" @@ -2118,6 +2202,10 @@ msgstr "์‹œ์ž‘ํ•˜๊ธฐ" msgid "Get Started" msgstr "์‹œ์ž‘ํ•˜๊ธฐ" +#: src/view/com/util/images/ImageHorzList.tsx:35 +msgid "GIF" +msgstr "GIF" + #: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" msgstr "ํ”„๋กœํ•„์— ์–ผ๊ตด ๋‹ฌ๊ธฐ" @@ -2188,7 +2276,7 @@ msgstr "๊ทธ๋ž˜ํ”ฝ ๋ฏธ๋””์–ด" msgid "Handle" msgstr "ํ•ธ๋“ค" -#: src/view/screens/AccessibilitySettings.tsx:103 +#: src/view/screens/AccessibilitySettings.tsx:116 msgid "Haptics" msgstr "ํ–…ํ‹ฑ" @@ -2223,35 +2311,35 @@ msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ์ž…๋‹ˆ๋‹ค." #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:134 -#: src/components/moderation/PostHider.tsx:121 +#: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: 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:432 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide" msgstr "์ˆจ๊ธฐ๊ธฐ" -#: src/view/com/notifications/FeedItem.tsx:348 +#: src/view/com/notifications/FeedItem.tsx:350 msgctxt "action" msgid "Hide" msgstr "์ˆจ๊ธฐ๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:379 +#: src/view/com/util/forms/PostDropdownBtn.tsx:387 +#: src/view/com/util/forms/PostDropdownBtn.tsx:389 msgid "Hide post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ˆจ๊ธฐ๊ธฐ" #: src/components/moderation/ContentHider.tsx:68 -#: src/components/moderation/PostHider.tsx:78 +#: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "์ฝ˜ํ…์ธ  ์ˆจ๊ธฐ๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:439 msgid "Hide this post?" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์ˆจ๊ธฐ์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/notifications/FeedItem.tsx:339 +#: src/view/com/notifications/FeedItem.tsx:341 msgid "Hide user list" msgstr "์‚ฌ์šฉ์ž ๋ฆฌ์ŠคํŠธ ์ˆจ๊ธฐ๊ธฐ" @@ -2341,7 +2429,7 @@ msgstr "ํ•ด๋‹น ๊ตญ๊ฐ€์˜ ๋ฒ•๋ฅ ์— ๋”ฐ๋ผ ์•„์ง ์„ฑ์ธ์ด ์•„๋‹Œ ๊ฒฝ์šฐ, ๋ถ€๋ชจ msgid "If you delete this list, you won't be able to recover it." msgstr "์ด ๋ฆฌ์ŠคํŠธ๋ฅผ ์‚ญ์ œํ•˜๋ฉด ๋‹ค์‹œ ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/util/forms/PostDropdownBtn.tsx:420 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 msgid "If you remove this post, you won't be able to recover it." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜๋ฉด ๋‹ค์‹œ ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -2357,7 +2445,7 @@ msgstr "ํ•ธ๋“ค์ด๋‚˜ ์ด๋ฉ”์ผ์„ ๋ณ€๊ฒฝํ•˜๋ ค๋Š” ๊ฒฝ์šฐ ๋น„ํ™œ์„ฑํ™”ํ•˜๊ธฐ ์ „ msgid "Illegal and Urgent" msgstr "๋ถˆ๋ฒ• ๋ฐ ๊ธด๊ธ‰ ์‚ฌํ•ญ" -#: src/view/com/util/images/Gallery.tsx:39 +#: src/view/com/util/images/Gallery.tsx:42 msgid "Image" msgstr "์ด๋ฏธ์ง€" @@ -2426,7 +2514,7 @@ msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€ ์†Œ๊ฐœ" msgid "Invalid 2FA confirmation code." msgstr "์ž˜๋ชป๋œ 2๋‹จ๊ณ„ ์ธ์ฆ ์ฝ”๋“œ์ž…๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThreadItem.tsx:235 +#: src/view/com/post-thread/PostThreadItem.tsx:236 msgid "Invalid or unsupported post record" msgstr "์œ ํšจํ•˜์ง€ ์•Š๊ฑฐ๋‚˜ ์ง€์›๋˜์ง€ ์•Š๋Š” ๊ฒŒ์‹œ๋ฌผ ๊ธฐ๋ก" @@ -2442,7 +2530,7 @@ msgstr "์นœ๊ตฌ ์ดˆ๋Œ€ํ•˜๊ธฐ" msgid "Invite code" msgstr "์ดˆ๋Œ€ ์ฝ”๋“œ" -#: src/screens/Signup/state.ts:272 +#: src/screens/Signup/state.ts:275 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "์ดˆ๋Œ€ ์ฝ”๋“œ๊ฐ€ ์˜ฌ๋ฐ”๋ฅด์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ์ฝ”๋“œ๋ฅผ ์˜ฌ๋ฐ”๋ฅด๊ฒŒ ์ž…๋ ฅํ–ˆ๋Š”์ง€ ํ™•์ธํ•œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•˜์„ธ์š”." @@ -2504,7 +2592,7 @@ msgid "Languages" msgstr "์–ธ์–ด" #: src/screens/Hashtag.tsx:99 -#: src/view/screens/Search/Search.tsx:377 +#: src/view/screens/Search/Search.tsx:359 msgid "Latest" msgstr "์ตœ์‹ " @@ -2517,7 +2605,7 @@ msgstr "๋” ์•Œ์•„๋ณด๊ธฐ" msgid "Learn more about the moderation applied to this content." msgstr "์ด ์ฝ˜ํ…์ธ ์— ์ ์šฉ๋œ ๊ฒ€ํ†  ์„ค์ •์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด์„ธ์š”." -#: src/components/moderation/PostHider.tsx:99 +#: src/components/moderation/PostHider.tsx:100 #: src/components/moderation/ScreenHider.tsx:125 msgid "Learn more about this warning" msgstr "์ด ๊ฒฝ๊ณ ์— ๋Œ€ํ•ด ๋” ์•Œ์•„๋ณด๊ธฐ" @@ -2593,11 +2681,11 @@ msgstr "์ข‹์•„์š” ํ‘œ์‹œํ•œ ์‚ฌ์šฉ์ž" msgid "Liked By" msgstr "์ข‹์•„์š” ํ‘œ์‹œํ•œ ์‚ฌ์šฉ์ž" -#: src/view/com/notifications/FeedItem.tsx:176 +#: src/view/com/notifications/FeedItem.tsx:178 msgid "liked your custom feed" msgstr "์ด(๊ฐ€) ๋‚ด ๋งž์ถค ํ”ผ๋“œ๋ฅผ ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" -#: src/view/com/notifications/FeedItem.tsx:168 +#: src/view/com/notifications/FeedItem.tsx:170 msgid "liked your post" msgstr "์ด(๊ฐ€) ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" @@ -2605,7 +2693,7 @@ msgstr "์ด(๊ฐ€) ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" msgid "Likes" msgstr "์ข‹์•„์š”" -#: src/view/com/post-thread/PostThreadItem.tsx:196 +#: src/view/com/post-thread/PostThreadItem.tsx:197 msgid "Likes on this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์ข‹์•„์š” ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" @@ -2658,6 +2746,18 @@ msgstr "๋ฆฌ์ŠคํŠธ" msgid "Lists blocking this user:" msgstr "์ด ์‚ฌ์šฉ์ž๋ฅผ ์ฐจ๋‹จํ•œ ๋ฆฌ์ŠคํŠธ:" +#: src/view/screens/Search/Explore.tsx:130 +msgid "Load more" +msgstr "๋” ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" + +#: src/view/screens/Search/Explore.tsx:218 +msgid "Load more suggested feeds" +msgstr "์ถ”์ฒœ ํ”ผ๋“œ ๋” ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" + +#: src/view/screens/Search/Explore.tsx:216 +msgid "Load more suggested follows" +msgstr "์ถ”์ฒœ ํŒ”๋กœ์šฐ ๋” ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" + #: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" msgstr "์ƒˆ ์•Œ๋ฆผ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" @@ -2730,21 +2830,21 @@ msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ๊ด€๋ฆฌ" msgid "Mark as read" msgstr "์ฝ์Œ์œผ๋กœ ํ‘œ์‹œ" -#: src/view/screens/AccessibilitySettings.tsx:89 +#: src/view/screens/AccessibilitySettings.tsx:102 #: src/view/screens/Profile.tsx:195 msgid "Media" msgstr "๋ฏธ๋””์–ด" -#: src/view/com/threadgate/WhoCanReply.tsx:139 +#: src/view/com/threadgate/WhoCanReply.tsx:270 msgid "mentioned users" msgstr "๋ฉ˜์…˜ํ•œ ์‚ฌ์šฉ์ž" -#: src/view/com/modals/Threadgate.tsx:94 +#: src/view/com/modals/Threadgate.tsx:96 msgid "Mentioned users" msgstr "๋ฉ˜์…˜ํ•œ ์‚ฌ์šฉ์ž" #: src/view/com/util/ViewHeader.tsx:91 -#: src/view/screens/Search/Search.tsx:714 +#: src/view/screens/Search/Search.tsx:683 msgid "Menu" msgstr "๋ฉ”๋‰ด" @@ -2844,7 +2944,7 @@ msgstr "๊ฒ€ํ†  ๋„๊ตฌ" msgid "Moderator has chosen to set a general warning on the content." msgstr "๊ฒ€ํ† ์ž๊ฐ€ ์ฝ˜ํ…์ธ ์— ์ผ๋ฐ˜ ๊ฒฝ๊ณ ๋ฅผ ์„ค์ •ํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/post-thread/PostThreadItem.tsx:566 +#: src/view/com/post-thread/PostThreadItem.tsx:567 msgid "More" msgstr "๋” ๋ณด๊ธฐ" @@ -2868,8 +2968,8 @@ msgstr "๋ฎคํŠธ" msgid "Mute {truncatedTag}" msgstr "{truncatedTag} ๋ฎคํŠธ" -#: src/view/com/profile/ProfileMenu.tsx:281 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:284 +#: src/view/com/profile/ProfileMenu.tsx:291 msgid "Mute Account" msgstr "๊ณ„์ • ๋ฎคํŠธ" @@ -2910,13 +3010,13 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ๊ธ€ ๋ฐ ํƒœ๊ทธ์—์„œ ์ด ๋‹จ์–ด ๋ฎคํŠธํ•˜๊ธฐ" msgid "Mute this word in tags only" msgstr "ํƒœ๊ทธ์—์„œ๋งŒ ์ด ๋‹จ์–ด ๋ฎคํŠธํ•˜๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:352 -#: src/view/com/util/forms/PostDropdownBtn.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:362 +#: src/view/com/util/forms/PostDropdownBtn.tsx:368 msgid "Mute thread" msgstr "์Šค๋ ˆ๋“œ ๋ฎคํŠธ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 -#: src/view/com/util/forms/PostDropdownBtn.tsx:370 +#: src/view/com/util/forms/PostDropdownBtn.tsx:378 +#: src/view/com/util/forms/PostDropdownBtn.tsx:380 msgid "Mute words & tags" msgstr "๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ๋ฎคํŠธ" @@ -2954,7 +3054,7 @@ msgstr "๋ฎคํŠธ ๋ชฉ๋ก์€ ๋น„๊ณต๊ฐœ์ž…๋‹ˆ๋‹ค. ๋ฎคํŠธํ•œ ๊ณ„์ •์€ ๋‚˜์™€ ์ƒํ˜ธ msgid "My Birthday" msgstr "๋‚ด ์ƒ๋…„์›”์ผ" -#: src/view/screens/Feeds.tsx:768 +#: src/view/screens/Feeds.tsx:734 msgid "My Feeds" msgstr "๋‚ด ํ”ผ๋“œ" @@ -3047,7 +3147,7 @@ msgctxt "action" msgid "New post" msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ" -#: src/view/screens/Feeds.tsx:600 +#: src/view/screens/Feeds.tsx:566 #: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:464 #: src/view/screens/ProfileFeed.tsx:426 @@ -3062,6 +3162,10 @@ msgctxt "action" msgid "New Post" msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ" +#: src/components/NewskieDialog.tsx:68 +msgid "New user info dialog" +msgstr "์ƒˆ ์‚ฌ์šฉ์ž ์ •๋ณด ๋Œ€ํ™” ์ƒ์ž" + #: src/view/com/modals/CreateOrEditList.tsx:236 msgid "New User List" msgstr "์ƒˆ ์‚ฌ์šฉ์ž ๋ฆฌ์ŠคํŠธ" @@ -3113,7 +3217,7 @@ msgstr "DNS ํŒจ๋„ ์—†์Œ" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "์ธ๊ธฐ GIF๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. Tenor์— ๋ฌธ์ œ๊ฐ€ ์žˆ์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "๋” ์ด์ƒ {0} ๋‹˜์„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์Œ" @@ -3157,13 +3261,14 @@ msgstr "๊ฒฐ๊ณผ ์—†์Œ" msgid "No results found" msgstr "๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Œ" -#: src/view/screens/Feeds.tsx:530 +#: src/view/screens/Feeds.tsx:497 msgid "No results found for \"{query}\"" msgstr "\"{query}\"์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 -#: src/view/screens/Search/Search.tsx:297 -#: src/view/screens/Search/Search.tsx:336 +#: 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}์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" @@ -3177,7 +3282,7 @@ msgstr "\"{search}\"์— ๋Œ€ํ•œ ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." msgid "No thanks" msgstr "์‚ฌ์šฉํ•˜์ง€ ์•Š์Œ" -#: src/view/com/modals/Threadgate.tsx:83 +#: src/view/com/modals/Threadgate.tsx:85 msgid "Nobody" msgstr "์—†์Œ" @@ -3204,9 +3309,9 @@ msgstr "์ฐพ์„ ์ˆ˜ ์—†์Œ" msgid "Not right now" msgstr "๋‚˜์ค‘์— ํ•˜๊ธฐ" -#: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/util/forms/PostDropdownBtn.tsx:446 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/profile/ProfileMenu.tsx:373 +#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 msgid "Note about sharing" msgstr "๊ณต์œ  ๊ด€๋ จ ์ฐธ๊ณ  ์‚ฌํ•ญ" @@ -3236,6 +3341,10 @@ msgstr "์•Œ๋ฆผ์Œ" msgid "Notifications" msgstr "์•Œ๋ฆผ" +#: src/lib/hooks/useTimeAgo.ts:51 +msgid "now" +msgstr "์ง€๊ธˆ" + #: src/components/dms/MessageItem.tsx:175 msgid "Now" msgstr "์ง€๊ธˆ" @@ -3274,11 +3383,15 @@ msgstr "ํ™•์ธ" msgid "Oldest replies first" msgstr "์˜ค๋ž˜๋œ ์ˆœ" +#: src/lib/hooks/useTimeAgo.ts:81 +msgid "on {str}" +msgstr "" + #: src/view/screens/Settings/index.tsx:256 msgid "Onboarding reset" msgstr "์˜จ๋ณด๋”ฉ ์žฌ์„ค์ •" -#: src/view/com/composer/Composer.tsx:503 +#: src/view/com/composer/Composer.tsx:505 msgid "One or more images is missing alt text." msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ ์ด๋ฏธ์ง€์— ๋Œ€์ฒด ํ…์ŠคํŠธ๊ฐ€ ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -3286,9 +3399,9 @@ msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ ์ด๋ฏธ์ง€์— ๋Œ€์ฒด ํ…์ŠคํŠธ๊ฐ€ ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค. msgid "Only .jpg and .png files are supported" msgstr ".jpg ๋ฐ .png ํŒŒ์ผ๋งŒ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค" -#: src/view/com/threadgate/WhoCanReply.tsx:100 -msgid "Only {0} can reply." -msgstr "{0}๋งŒ ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." +#: src/view/com/threadgate/WhoCanReply.tsx:239 +msgid "Only {0} can reply" +msgstr "{0}๋งŒ ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Œ" #: src/screens/Signup/StepHandle.tsx:98 msgid "Only contains letters, numbers, and hyphens" @@ -3321,8 +3434,8 @@ msgstr "์•„๋ฐ”ํƒ€ ์ƒ์„ฑ๊ธฐ ์—ด๊ธฐ" msgid "Open conversation options" msgstr "๋Œ€ํ™” ์˜ต์…˜ ์—ด๊ธฐ" -#: src/view/com/composer/Composer.tsx:613 -#: src/view/com/composer/Composer.tsx:614 +#: src/view/com/composer/Composer.tsx:615 +#: src/view/com/composer/Composer.tsx:616 msgid "Open emoji picker" msgstr "์ด๋ชจํ‹ฐ์ฝ˜ ์„ ํƒ๊ธฐ ์—ด๊ธฐ" @@ -3346,7 +3459,7 @@ msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ์„ค์ • ์—ด๊ธฐ" msgid "Open navigation" msgstr "๋‚ด๋น„๊ฒŒ์ด์…˜ ์—ด๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:237 +#: src/view/com/util/forms/PostDropdownBtn.tsx:247 msgid "Open post options menu" msgstr "๊ฒŒ์‹œ๋ฌผ ์˜ต์…˜ ๋ฉ”๋‰ด ์—ด๊ธฐ" @@ -3367,7 +3480,7 @@ msgstr "{numItems}๋ฒˆ์งธ ์˜ต์…˜์„ ์—ฝ๋‹ˆ๋‹ค" msgid "Opens accessibility settings" msgstr "์ ‘๊ทผ์„ฑ ์„ค์ •์„ ์—ฝ๋‹ˆ๋‹ค" -#: src/view/screens/Log.tsx:54 +#: src/view/screens/Log.tsx:58 msgid "Opens additional details for a debug entry" msgstr "๋””๋ฒ„๊ทธ ํ•ญ๋ชฉ์— ๋Œ€ํ•œ ์ถ”๊ฐ€ ์„ธ๋ถ€ ์ •๋ณด๋ฅผ ์—ฝ๋‹ˆ๋‹ค" @@ -3449,11 +3562,6 @@ msgstr "๊ฒ€ํ†  ์„ค์ •์„ ์—ฝ๋‹ˆ๋‹ค" msgid "Opens password reset form" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ์žฌ์„ค์ • ์–‘์‹์„ ์—ฝ๋‹ˆ๋‹ค" -#: src/view/com/home/HomeHeaderLayout.web.tsx:77 -#: src/view/screens/Feeds.tsx:417 -#~ msgid "Opens screen to edit Saved Feeds" -#~ msgstr "์ €์žฅํ•œ ํ”ผ๋“œ๋ฅผ ํŽธ์ง‘ํ•  ์ˆ˜ ์žˆ๋Š” ํ™”๋ฉด์„ ์—ฝ๋‹ˆ๋‹ค" - #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" msgstr "๋ชจ๋“  ์ €์žฅํ•œ ํ”ผ๋“œ ํ™”๋ฉด์„ ์—ฝ๋‹ˆ๋‹ค" @@ -3483,8 +3591,8 @@ msgstr "์‹œ์Šคํ…œ ๋กœ๊ทธ ํŽ˜์ด์ง€๋ฅผ ์—ฝ๋‹ˆ๋‹ค" msgid "Opens the threads preferences" msgstr "์Šค๋ ˆ๋“œ ์„ค์ •์„ ์—ฝ๋‹ˆ๋‹ค" -#: src/view/com/notifications/FeedItem.tsx:427 -#: src/view/com/util/UserAvatar.tsx:409 +#: src/view/com/notifications/FeedItem.tsx:429 +#: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "์ด ํ”„๋กœํ•„์„ ์—ฝ๋‹ˆ๋‹ค" @@ -3497,7 +3605,7 @@ msgstr "{numItems}๊ฐœ ์ค‘ {0}๋ฒˆ์งธ ์˜ต์…˜" msgid "Optionally provide additional information below:" msgstr "์„ ํƒ ์‚ฌํ•ญ์œผ๋กœ ์•„๋ž˜์— ์ถ”๊ฐ€ ์ •๋ณด๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”:" -#: src/view/com/modals/Threadgate.tsx:90 +#: src/view/com/modals/Threadgate.tsx:92 msgid "Or combine these options:" msgstr "๋˜๋Š” ๋‹ค์Œ ์˜ต์…˜์„ ๊ฒฐํ•ฉํ•˜์„ธ์š”:" @@ -3553,11 +3661,11 @@ msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ๋จ" msgid "Password updated!" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ๋จ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:37 msgid "Pause" msgstr "์ผ์‹œ ์ •์ง€" -#: src/view/screens/Search/Search.tsx:387 +#: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "์‚ฌ๋žŒ๋“ค" @@ -3602,7 +3710,7 @@ msgstr "๊ณ ์ •ํ•œ ํ”ผ๋“œ" msgid "Pinned to your feeds" msgstr "๋‚ด ํ”ผ๋“œ์— ๊ณ ์ •๋จ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:37 msgid "Play" msgstr "์žฌ์ƒ" @@ -3610,7 +3718,7 @@ msgstr "์žฌ์ƒ" msgid "Play {0}" msgstr "{0} ์žฌ์ƒ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:35 +#: src/view/com/util/post-embeds/GifEmbed.tsx:36 msgid "Play or pause the GIF" msgstr "GIP๋ฅผ ์žฌ์ƒํ•˜๊ฑฐ๋‚˜ ์ผ์‹œ ์ •์ง€ํ•ฉ๋‹ˆ๋‹ค" @@ -3688,13 +3796,13 @@ msgstr "์ •์น˜" msgid "Porn" msgstr "์Œ๋ž€๋ฌผ" -#: src/view/com/composer/Composer.tsx:477 -#: src/view/com/composer/Composer.tsx:485 +#: src/view/com/composer/Composer.tsx:479 +#: src/view/com/composer/Composer.tsx:487 msgctxt "action" msgid "Post" msgstr "๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/post-thread/PostThread.tsx:430 +#: src/view/com/post-thread/PostThread.tsx:434 msgctxt "description" msgid "Post" msgstr "๊ฒŒ์‹œ๋ฌผ" @@ -3709,7 +3817,7 @@ msgstr "{0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ" msgid "Post by @{0}" msgstr "@{0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:129 +#: src/view/com/util/forms/PostDropdownBtn.tsx:132 msgid "Post deleted" msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ๋จ" @@ -3775,9 +3883,9 @@ msgstr "ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž๋ฅผ ๋ณ€๊ฒฝํ•˜๋ ค๋ฉด ๋ˆ„๋ฆ…๋‹ˆ๋‹ค" msgid "Press to retry" msgstr "๋‹ค์‹œ ์‹œ๋„ํ•˜๋ ค๋ฉด ๋ˆ„๋ฅด๊ธฐ" -#: src/components/KnownFollowers.tsx:111 +#: src/components/KnownFollowers.tsx:116 msgid "Press to view followers of this account that you also follow" -msgstr "" +msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์ด ๊ณ„์ •์˜ ํŒ”๋กœ์›Œ๋ฅผ ๋ณด๋ ค๋ฉด ๋ˆ„๋ฅด์„ธ์š”" #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" @@ -3845,18 +3953,18 @@ msgstr "์ผ๊ด„ ๋ฎคํŠธํ•˜๊ฑฐ๋‚˜ ์ฐจ๋‹จํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐœ์ ์ด๊ณ  ๊ณต์œ  ๊ฐ€ msgid "Public, shareable lists which can drive feeds." msgstr "ํ”ผ๋“œ๋ฅผ ํƒ์ƒ‰ํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐœ์ ์ด๊ณ  ๊ณต์œ  ๊ฐ€๋Šฅํ•œ ๋ชฉ๋ก์ž…๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:462 +#: src/view/com/composer/Composer.tsx:464 msgid "Publish post" msgstr "๊ฒŒ์‹œ๋ฌผ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:462 +#: src/view/com/composer/Composer.tsx:464 msgid "Publish reply" msgstr "๋‹ต๊ธ€ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 -#: src/view/com/util/post-ctrls/RepostButton.tsx:127 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:78 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:81 +#: 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 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82 msgid "Quote post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ธ์šฉ" @@ -3876,7 +3984,7 @@ msgstr "๊ณ„์ • ์žฌํ™œ์„ฑํ™”" msgid "Reason:" msgstr "์ด์œ :" -#: src/view/screens/Search/Search.tsx:970 +#: src/view/screens/Search/Search.tsx:933 msgid "Recent Searches" msgstr "์ตœ๊ทผ ๊ฒ€์ƒ‰" @@ -3889,6 +3997,7 @@ msgid "Reload conversations" msgstr "๋Œ€ํ™” ๋‹ค์‹œ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" #: src/components/dialogs/MutedWords.tsx:286 +#: src/components/FeedCard.tsx:200 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -3901,7 +4010,7 @@ msgstr "์ œ๊ฑฐ" msgid "Remove account" msgstr "๊ณ„์ • ์ œ๊ฑฐ" -#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:384 msgid "Remove Avatar" msgstr "์•„๋ฐ”ํƒ€ ์ œ๊ฑฐ" @@ -3931,6 +4040,7 @@ msgstr "ํ”ผ๋“œ๋ฅผ ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Remove from my feeds" msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐ" +#: src/components/FeedCard.tsx:195 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -3947,11 +4057,11 @@ msgstr "์ด๋ฏธ์ง€ ๋ฏธ๋ฆฌ๋ณด๊ธฐ ์ œ๊ฑฐ" msgid "Remove mute word from your list" msgstr "๋ชฉ๋ก์—์„œ ๋ฎคํŠธํ•œ ๋‹จ์–ด ์ œ๊ฑฐ" -#: src/view/screens/Search/Search.tsx:1011 +#: src/view/screens/Search/Search.tsx:974 msgid "Remove profile" msgstr "ํ”„๋กœํ•„ ์ œ๊ฑฐ" -#: src/view/screens/Search/Search.tsx:1013 +#: src/view/screens/Search/Search.tsx:976 msgid "Remove profile from search history" msgstr "๊ฒ€์ƒ‰ ๊ธฐ๋ก์—์„œ ํ”„๋กœํ•„์„ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค" @@ -3959,8 +4069,8 @@ msgstr "๊ฒ€์ƒ‰ ๊ธฐ๋ก์—์„œ ํ”„๋กœํ•„์„ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค" msgid "Remove quote" msgstr "์ธ์šฉ ์ œ๊ฑฐ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:92 -#: src/view/com/util/post-ctrls/RepostButton.tsx:108 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.tsx:109 msgid "Remove repost" msgstr "์žฌ๊ฒŒ์‹œ๋ฅผ ์ทจ์†Œํ•ฉ๋‹ˆ๋‹ค" @@ -4000,11 +4110,19 @@ msgstr "Discover๋กœ ๊ต์ฒด" msgid "Replies" msgstr "๋‹ต๊ธ€" -#: src/view/com/threadgate/WhoCanReply.tsx:98 -msgid "Replies to this thread are disabled" -msgstr "์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ๋‹ต๊ธ€์ด ๋น„ํ™œ์„ฑํ™”๋ฉ๋‹ˆ๋‹ค." +#: src/view/com/threadgate/WhoCanReply.tsx:66 +msgid "Replies disabled" +msgstr "๋‹ต๊ธ€ ๋น„ํ™œ์„ฑํ™”๋จ" -#: src/view/com/composer/Composer.tsx:475 +#: src/view/com/threadgate/WhoCanReply.tsx:123 +msgid "Replies on this thread are disabled" +msgstr "์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ๋‹ต๊ธ€์ด ๋น„ํ™œ์„ฑํ™”๋จ" + +#: src/view/com/threadgate/WhoCanReply.tsx:237 +msgid "Replies to this thread are disabled" +msgstr "์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ๋‹ต๊ธ€์ด ๋น„ํ™œ์„ฑํ™”๋จ" + +#: src/view/com/composer/Composer.tsx:477 msgctxt "action" msgid "Reply" msgstr "๋‹ต๊ธ€" @@ -4014,19 +4132,24 @@ msgid "Reply Filters" msgstr "๋‹ต๊ธ€ ํ•„ํ„ฐ" #: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:427 +#: src/view/com/posts/FeedItem.tsx:439 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/> ๋‹˜์—๊ฒŒ ๋ณด๋‚ด๋Š” ๋‹ต๊ธ€" +#: src/view/com/posts/FeedItem.tsx:437 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "์ฐจ๋‹จ๋œ ๊ฒŒ์‹œ๋ฌผ์— ๋ณด๋‚ด๋Š” ๋‹ต๊ธ€" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "Report" msgstr "์‹ ๊ณ " -#: src/view/com/profile/ProfileMenu.tsx:321 #: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:327 msgid "Report Account" msgstr "๊ณ„์ • ์‹ ๊ณ " @@ -4053,8 +4176,8 @@ msgstr "๋ฆฌ์ŠคํŠธ ์‹ ๊ณ " msgid "Report message" msgstr "๋ฉ”์‹œ์ง€ ์‹ ๊ณ " -#: src/view/com/util/forms/PostDropdownBtn.tsx:394 -#: src/view/com/util/forms/PostDropdownBtn.tsx:396 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Report post" msgstr "๊ฒŒ์‹œ๋ฌผ ์‹ ๊ณ " @@ -4084,21 +4207,21 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ ์‹ ๊ณ ํ•˜๊ธฐ" msgid "Report this user" msgstr "์ด ์‚ฌ์šฉ์ž ์‹ ๊ณ ํ•˜๊ธฐ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:64 -#: src/view/com/util/post-ctrls/RepostButton.tsx:93 -#: src/view/com/util/post-ctrls/RepostButton.tsx:109 +#: src/view/com/util/post-ctrls/RepostButton.tsx:65 +#: src/view/com/util/post-ctrls/RepostButton.tsx:94 +#: src/view/com/util/post-ctrls/RepostButton.tsx:110 msgctxt "action" msgid "Repost" msgstr "์žฌ๊ฒŒ์‹œ" -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74 msgid "Repost" msgstr "์žฌ๊ฒŒ์‹œ" -#: src/view/com/util/post-ctrls/RepostButton.tsx:85 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:46 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +#: 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 msgid "Repost or quote post" msgstr "์žฌ๊ฒŒ์‹œ ๋˜๋Š” ๊ฒŒ์‹œ๋ฌผ ์ธ์šฉ" @@ -4106,19 +4229,19 @@ msgstr "์žฌ๊ฒŒ์‹œ ๋˜๋Š” ๊ฒŒ์‹œ๋ฌผ ์ธ์šฉ" msgid "Reposted By" msgstr "์žฌ๊ฒŒ์‹œํ•œ ์‚ฌ์šฉ์ž" -#: src/view/com/posts/FeedItem.tsx:250 +#: src/view/com/posts/FeedItem.tsx:254 msgid "Reposted by {0}" msgstr "{0} ๋‹˜์ด ์žฌ๊ฒŒ์‹œํ•จ" -#: src/view/com/posts/FeedItem.tsx:265 +#: src/view/com/posts/FeedItem.tsx:269 msgid "Reposted by <0><1/>" msgstr "<0><1/> ๋‹˜์ด ์žฌ๊ฒŒ์‹œํ•จ" -#: src/view/com/notifications/FeedItem.tsx:170 +#: src/view/com/notifications/FeedItem.tsx:172 msgid "reposted your post" msgstr "์ด(๊ฐ€) ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์žฌ๊ฒŒ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/post-thread/PostThreadItem.tsx:201 +#: src/view/com/post-thread/PostThreadItem.tsx:202 msgid "Reposts of this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์˜ ์žฌ๊ฒŒ์‹œ" @@ -4132,7 +4255,7 @@ msgstr "๋ณ€๊ฒฝ ์š”์ฒญ" msgid "Request Code" msgstr "์ฝ”๋“œ ์š”์ฒญ" -#: src/view/screens/AccessibilitySettings.tsx:82 +#: src/view/screens/AccessibilitySettings.tsx:88 msgid "Require alt text before posting" msgstr "๊ฒŒ์‹œํ•˜๊ธฐ ์ „ ๋Œ€์ฒด ํ…์ŠคํŠธ ํ•„์ˆ˜" @@ -4282,6 +4405,7 @@ msgid "Saves image crop settings" msgstr "์ด๋ฏธ์ง€ ์ž๋ฅด๊ธฐ ์„ค์ •์„ ์ €์žฅํ•ฉ๋‹ˆ๋‹ค" #: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:72 msgid "Say hello!" msgstr "์ธ์‚ฌํ•ด ๋ณด์„ธ์š”!" @@ -4299,9 +4423,9 @@ msgstr "๋งจ ์œ„๋กœ ์Šคํฌ๋กค" #: 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:452 -#: src/view/screens/Search/Search.tsx:822 -#: src/view/screens/Search/Search.tsx:850 +#: 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:343 #: src/view/shell/desktop/Search.tsx:194 @@ -4315,7 +4439,7 @@ msgstr "๊ฒ€์ƒ‰" msgid "Search for \"{query}\"" msgstr "\"{query}\"์— ๋Œ€ํ•œ ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ" -#: src/view/screens/Search/Search.tsx:906 +#: src/view/screens/Search/Search.tsx:869 msgid "Search for \"{searchText}\"" msgstr "\"{searchText}\"์— ๋Œ€ํ•œ ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ" @@ -4496,8 +4620,8 @@ msgstr "{0} ๋‹˜์—๊ฒŒ ์‹ ๊ณ  ๋ณด๋‚ด๊ธฐ" msgid "Send verification email" msgstr "์ธ์ฆ ์ด๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:286 -#: src/view/com/util/forms/PostDropdownBtn.tsx:289 +#: src/view/com/util/forms/PostDropdownBtn.tsx:296 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "Send via direct message" msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€๋กœ ๋ณด๋‚ด๊ธฐ" @@ -4602,11 +4726,11 @@ msgctxt "action" msgid "Share" msgstr "๊ณต์œ " -#: src/view/com/profile/ProfileMenu.tsx:217 -#: src/view/com/profile/ProfileMenu.tsx:226 -#: src/view/com/util/forms/PostDropdownBtn.tsx:297 -#: src/view/com/util/forms/PostDropdownBtn.tsx:306 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:297 +#: src/view/com/profile/ProfileMenu.tsx:220 +#: src/view/com/profile/ProfileMenu.tsx:229 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "๊ณต์œ " @@ -4619,9 +4743,9 @@ msgstr "๋ฉ‹์ง„ ์ด์•ผ๊ธฐ๋ฅผ ์ „ํ•˜์„ธ์š”!" msgid "Share a fun fact!" msgstr "์žฌ๋ฏธ์žˆ๋Š” ์‚ฌ์‹ค์„ ์ „ํ•˜์„ธ์š”!" -#: src/view/com/profile/ProfileMenu.tsx:375 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:313 +#: src/view/com/profile/ProfileMenu.tsx:378 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:316 msgid "Share anyway" msgstr "๋ฌด์‹œํ•˜๊ณ  ๊ณต์œ " @@ -4645,12 +4769,12 @@ msgstr "์—ฐ๊ฒฐ๋œ ์›น์‚ฌ์ดํŠธ๋ฅผ ๊ณต์œ ํ•ฉ๋‹ˆ๋‹ค" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 -#: src/components/moderation/PostHider.tsx:121 +#: src/components/moderation/PostHider.tsx:122 #: src/view/screens/Settings/index.tsx:381 msgid "Show" msgstr "ํ‘œ์‹œ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:167 +#: src/view/com/util/post-embeds/GifEmbed.tsx:169 msgid "Show alt text" msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ ํ‘œ์‹œ" @@ -4668,7 +4792,7 @@ msgstr "๋ฐฐ์ง€ ํ‘œ์‹œ" msgid "Show badge and filter from feeds" msgstr "๋ฐฐ์ง€ ํ‘œ์‹œ ๋ฐ ํ”ผ๋“œ์—์„œ ํ•„ํ„ฐ๋ง" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:215 msgid "Show follows similar to {0}" msgstr "{0} ๋‹˜๊ณผ ๋น„์Šทํ•œ ํŒ”๋กœ์šฐ ํ‘œ์‹œ" @@ -4676,19 +4800,19 @@ msgstr "{0} ๋‹˜๊ณผ ๋น„์Šทํ•œ ํŒ”๋กœ์šฐ ํ‘œ์‹œ" msgid "Show hidden replies" msgstr "์ˆจ๊ฒจ์ง„ ๋‹ต๊ธ€ ํ‘œ์‹œ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:336 -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +#: src/view/com/util/forms/PostDropdownBtn.tsx:346 +#: src/view/com/util/forms/PostDropdownBtn.tsx:348 msgid "Show less like this" msgstr "์ด๋Ÿฐ ํ•ญ๋ชฉ ๋œ ๋ณด๊ธฐ" -#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post-thread/PostThreadItem.tsx:533 #: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:392 +#: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" msgstr "๋” ๋ณด๊ธฐ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:328 -#: src/view/com/util/forms/PostDropdownBtn.tsx:330 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +#: src/view/com/util/forms/PostDropdownBtn.tsx:340 msgid "Show more like this" msgstr "์ด๋Ÿฐ ํ•ญ๋ชฉ ๋” ๋ณด๊ธฐ" @@ -4717,7 +4841,7 @@ msgid "Show Reposts" msgstr "์žฌ๊ฒŒ์‹œ ํ‘œ์‹œ" #: src/components/moderation/ContentHider.tsx:69 -#: src/components/moderation/PostHider.tsx:78 +#: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "์ฝ˜ํ…์ธ  ํ‘œ์‹œ" @@ -4818,8 +4942,10 @@ 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 msgid "Some people can reply" -msgstr "๋ช‡๋ช‡ ์‚ฌ๋žŒ๋“ค์ด ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Œ" +msgstr "์ผ๋ถ€ ์‚ฌ๋žŒ๋“ค์ด ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Œ" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -4836,7 +4962,7 @@ msgstr "์•Œ ์ˆ˜ ์—†๋Š” ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" msgid "Something went wrong, please try again." msgstr "์•Œ ์ˆ˜ ์—†๋Š” ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/App.native.tsx:85 +#: src/App.native.tsx:92 #: src/App.web.tsx:74 msgid "Sorry! Your session expired. Please log in again." msgstr "์ฃ„์†กํ•ฉ๋‹ˆ๋‹ค. ์„ธ์…˜์ด ๋งŒ๋ฃŒ๋˜์—ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ๋กœ๊ทธ์ธํ•ด ์ฃผ์„ธ์š”." @@ -4926,9 +5052,9 @@ msgstr "์ด ๋ผ๋ฒจ๋Ÿฌ ๊ตฌ๋…ํ•˜๊ธฐ" msgid "Subscribe to this list" msgstr "์ด ๋ฆฌ์ŠคํŠธ ๊ตฌ๋…ํ•˜๊ธฐ" -#: src/view/screens/Search/Search.tsx:425 -msgid "Suggested Follows" -msgstr "ํŒ”๋กœ์šฐ ์ถ”์ฒœ" +#: src/view/screens/Search/Explore.tsx:331 +msgid "Suggested accounts" +msgstr "์ถ”์ฒœ ๊ณ„์ •" #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" @@ -5029,8 +5155,8 @@ msgstr "ํ…์ŠคํŠธ ํŒŒ์ผ ๋‚ด์šฉ:" msgid "That handle is already taken." msgstr "์ด ํ•ธ๋“ค์€ ์ด๋ฏธ ์‚ฌ์šฉ ์ค‘์ž…๋‹ˆ๋‹ค." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:305 -#: src/view/com/profile/ProfileMenu.tsx:351 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 +#: src/view/com/profile/ProfileMenu.tsx:354 msgid "The account will be able to interact with you after unblocking." msgstr "์ฐจ๋‹จ์„ ํ•ด์ œํ•˜๋ฉด ์ด ๊ณ„์ •์ด ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์žˆ๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." @@ -5139,17 +5265,17 @@ msgstr "์‹ ๊ณ ๋ฅผ ์ „์†กํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท msgid "There was an issue with fetching your app passwords" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:129 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:143 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:99 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:120 -#: src/view/com/profile/ProfileMenu.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:146 -#: src/view/com/profile/ProfileMenu.tsx:160 -#: src/view/com/profile/ProfileMenu.tsx:173 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:123 +#: src/view/com/profile/ProfileMenu.tsx:138 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:163 +#: src/view/com/profile/ProfileMenu.tsx:176 msgid "There was an issue! {0}" msgstr "๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค! {0}" @@ -5284,16 +5410,16 @@ msgstr "์ด ์ด๋ฆ„์€ ์ด๋ฏธ ์‚ฌ์šฉ ์ค‘์ž…๋‹ˆ๋‹ค" msgid "This post has been deleted." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์€ ์‚ญ์ œ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/util/forms/PostDropdownBtn.tsx:448 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:313 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:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:440 msgid "This post will be hidden from feeds." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ํ”ผ๋“œ์—์„œ ์ˆจ๊น๋‹ˆ๋‹ค." -#: src/view/com/profile/ProfileMenu.tsx:372 +#: src/view/com/profile/ProfileMenu.tsx:375 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "์ด ํ”„๋กœํ•„์€ ๋กœ๊ทธ์ธํ•œ ์‚ฌ์šฉ์ž์—๊ฒŒ๋งŒ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค. ๋กœ๊ทธ์ธํ•˜์ง€ ์•Š์€ ์‚ฌ์šฉ์ž์—๊ฒŒ๋Š” ํ‘œ์‹œ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค." @@ -5330,6 +5456,10 @@ msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋‚ด๊ฐ€ ์ฐจ๋‹จํ•œ <0>{0} ๋ฆฌ์ŠคํŠธ์— ํฌํ•จ๋˜์–ด msgid "This user is included in the <0>{0} list which you have muted." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋‚ด๊ฐ€ ๋ฎคํŠธํ•œ <0>{0} ๋ฆฌ์ŠคํŠธ์— ํฌํ•จ๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค." +#: src/components/NewskieDialog.tsx:50 +msgid "This user is new here. Press for more info about when they joined." +msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ์ƒˆ๋กœ ๊ฐ€์ž…ํ–ˆ์Šต๋‹ˆ๋‹ค. ์–ธ์ œ ๊ฐ€์ž…ํ–ˆ๋Š”์ง€ ์ž์„ธํ•œ ์ •๋ณด๋ฅผ ๋ณด๋ ค๋ฉด ๋ˆ„๋ฅด์„ธ์š”." + #: src/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ์•„๋ฌด๋„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." @@ -5380,7 +5510,7 @@ msgid "Toggle to enable or disable adult content" msgstr "์„ฑ์ธ ์ฝ˜ํ…์ธ  ํ™œ์„ฑํ™” ๋˜๋Š” ๋น„ํ™œ์„ฑํ™” ์ „ํ™˜" #: src/screens/Hashtag.tsx:88 -#: src/view/screens/Search/Search.tsx:367 +#: src/view/screens/Search/Search.tsx:349 msgid "Top" msgstr "์ธ๊ธฐ" @@ -5390,10 +5520,10 @@ msgstr "๋ณ€ํ˜•" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:674 -#: src/view/com/post-thread/PostThreadItem.tsx:676 -#: src/view/com/util/forms/PostDropdownBtn.tsx:267 -#: src/view/com/util/forms/PostDropdownBtn.tsx:269 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: src/view/com/util/forms/PostDropdownBtn.tsx:277 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Translate" msgstr "๋ฒˆ์—ญ" @@ -5435,14 +5565,14 @@ msgstr "์„œ๋น„์Šค์— ์—ฐ๊ฒฐํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์„ ํ™•์ธํ•˜ #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:309 -#: src/view/com/profile/ProfileMenu.tsx:363 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314 +#: src/view/com/profile/ProfileMenu.tsx:366 #: src/view/screens/ProfileList.tsx:626 msgid "Unblock" msgstr "์ฐจ๋‹จ ํ•ด์ œ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197 msgctxt "action" msgid "Unblock" msgstr "์ฐจ๋‹จ ํ•ด์ œ" @@ -5452,19 +5582,19 @@ msgstr "์ฐจ๋‹จ ํ•ด์ œ" msgid "Unblock account" msgstr "๊ณ„์ • ์ฐจ๋‹จ ํ•ด์ œ" -#: src/view/com/profile/ProfileMenu.tsx:301 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:304 +#: src/view/com/profile/ProfileMenu.tsx:310 msgid "Unblock Account" msgstr "๊ณ„์ • ์ฐจ๋‹จ ํ•ด์ œ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:308 +#: src/view/com/profile/ProfileMenu.tsx:348 msgid "Unblock Account?" msgstr "๊ณ„์ •์„ ์ฐจ๋‹จ ํ•ด์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:63 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:69 -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:73 +#: src/view/com/util/post-ctrls/RepostButton.tsx:64 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74 msgid "Undo repost" msgstr "์žฌ๊ฒŒ์‹œ ์ทจ์†Œ" @@ -5477,12 +5607,12 @@ msgstr "์–ธํŒ”๋กœ์šฐ" msgid "Unfollow" msgstr "์–ธํŒ”๋กœ์šฐ" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:233 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237 msgid "Unfollow {0}" msgstr "{0} ๋‹˜์„ ์–ธํŒ”๋กœ์šฐ" -#: src/view/com/profile/ProfileMenu.tsx:243 -#: src/view/com/profile/ProfileMenu.tsx:253 +#: src/view/com/profile/ProfileMenu.tsx:246 +#: src/view/com/profile/ProfileMenu.tsx:256 msgid "Unfollow Account" msgstr "๊ณ„์ • ์–ธํŒ”๋กœ์šฐ" @@ -5499,8 +5629,8 @@ msgstr "์–ธ๋ฎคํŠธ" msgid "Unmute {truncatedTag}" msgstr "{truncatedTag} ์–ธ๋ฎคํŠธ" -#: src/view/com/profile/ProfileMenu.tsx:280 -#: src/view/com/profile/ProfileMenu.tsx:286 +#: src/view/com/profile/ProfileMenu.tsx:283 +#: src/view/com/profile/ProfileMenu.tsx:289 msgid "Unmute Account" msgstr "๊ณ„์ • ์–ธ๋ฎคํŠธ" @@ -5512,8 +5642,8 @@ msgstr "๋ชจ๋“  {tag} ๊ฒŒ์‹œ๋ฌผ ์–ธ๋ฎคํŠธ" msgid "Unmute conversation" msgstr "์•Œ๋ฆผ ์–ธ๋ฎคํŠธ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:352 -#: src/view/com/util/forms/PostDropdownBtn.tsx:357 +#: src/view/com/util/forms/PostDropdownBtn.tsx:362 +#: src/view/com/util/forms/PostDropdownBtn.tsx:367 msgid "Unmute thread" msgstr "์Šค๋ ˆ๋“œ ์–ธ๋ฎคํŠธ" @@ -5567,20 +5697,20 @@ msgstr "๋Œ€์‹  ์‚ฌ์ง„ ์—…๋กœ๋“œํ•˜๊ธฐ" msgid "Upload a text file to:" msgstr "ํ…์ŠคํŠธ ํŒŒ์ผ ์—…๋กœ๋“œ ๊ฒฝ๋กœ:" -#: src/view/com/util/UserAvatar.tsx:339 -#: src/view/com/util/UserAvatar.tsx:342 +#: src/view/com/util/UserAvatar.tsx:352 +#: src/view/com/util/UserAvatar.tsx:355 #: 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:356 +#: src/view/com/util/UserAvatar.tsx:369 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "ํŒŒ์ผ์—์„œ ์—…๋กœ๋“œ" -#: src/view/com/util/UserAvatar.tsx:350 -#: src/view/com/util/UserAvatar.tsx:354 +#: src/view/com/util/UserAvatar.tsx:363 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -5688,7 +5818,7 @@ msgstr "์‚ฌ์šฉ์ž ์ด๋ฆ„ ๋˜๋Š” ์ด๋ฉ”์ผ ์ฃผ์†Œ" msgid "Users" msgstr "์‚ฌ์šฉ์ž" -#: src/view/com/threadgate/WhoCanReply.tsx:143 +#: src/view/com/threadgate/WhoCanReply.tsx:274 msgid "users followed by <0/>" msgstr "<0/> ๋‹˜์ด ํŒ”๋กœ์šฐํ•œ ์‚ฌ์šฉ์ž" @@ -5699,7 +5829,7 @@ msgstr "<0/> ๋‹˜์ด ํŒ”๋กœ์šฐํ•œ ์‚ฌ์šฉ์ž" msgid "Users I follow" msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž" -#: src/view/com/modals/Threadgate.tsx:107 +#: src/view/com/modals/Threadgate.tsx:109 msgid "Users in \"{0}\"" msgstr "\"{0}\"์— ์žˆ๋Š” ์‚ฌ์šฉ์ž" @@ -5752,11 +5882,15 @@ msgstr "๋น„๋””์˜ค ๊ฒŒ์ž„" msgid "View {0}'s avatar" msgstr "{0} ๋‹˜์˜ ์•„๋ฐ”ํƒ€๋ฅผ ๋ด…๋‹ˆ๋‹ค" -#: src/view/com/notifications/FeedItem.tsx:213 +#: src/view/com/notifications/FeedItem.tsx:215 msgid "View {0}'s profile" msgstr "{0} ๋‹˜์˜ ํ”„๋กœํ•„ ๋ณด๊ธฐ" -#: src/view/screens/Log.tsx:52 +#: src/components/ProfileHoverCard/index.web.tsx:430 +msgid "View blocked user's profile" +msgstr "์ฐจ๋‹จํ•œ ์‚ฌ์šฉ์ž์˜ ํ”„๋กœํ•„ ๋ณด๊ธฐ" + +#: src/view/screens/Log.tsx:56 msgid "View debug entry" msgstr "๋””๋ฒ„๊ทธ ํ•ญ๋ชฉ ๋ณด๊ธฐ" @@ -5768,7 +5902,7 @@ msgstr "์„ธ๋ถ€ ์ •๋ณด ๋ณด๊ธฐ" msgid "View details for reporting a copyright violation" msgstr "์ €์ž‘๊ถŒ ์œ„๋ฐ˜ ์‹ ๊ณ ์— ๋Œ€ํ•œ ์„ธ๋ถ€ ์ •๋ณด ๋ณด๊ธฐ" -#: src/view/com/posts/FeedSlice.tsx:120 +#: src/view/com/posts/FeedSlice.tsx:124 msgid "View full thread" msgstr "์ „์ฒด ์Šค๋ ˆ๋“œ ๋ณด๊ธฐ" @@ -5776,8 +5910,9 @@ msgstr "์ „์ฒด ์Šค๋ ˆ๋“œ ๋ณด๊ธฐ" msgid "View information about these labels" msgstr "์ด ๋ผ๋ฒจ์— ๋Œ€ํ•œ ์ •๋ณด ๋ณด๊ธฐ" -#: src/components/ProfileHoverCard/index.web.tsx:396 -#: src/components/ProfileHoverCard/index.web.tsx:429 +#: src/components/ProfileHoverCard/index.web.tsx:418 +#: 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 msgid "View profile" @@ -5795,10 +5930,10 @@ msgstr "{0} ๋‹˜์ด ์ œ๊ณตํ•˜๋Š” ๋ผ๋ฒจ๋ง ์„œ๋น„์Šค ๋ณด๊ธฐ" msgid "View users who like this feed" msgstr "์ด ํ”ผ๋“œ๋ฅผ ์ข‹์•„ํ•˜๋Š” ์‚ฌ์šฉ์ž ๋ณด๊ธฐ" -#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayout.web.tsx:79 #: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 msgid "View your feeds and explore more" -msgstr "" +msgstr "๋‚ด ํ”ผ๋“œ๋ฅผ ๋ณด๊ฑฐ๋‚˜ ์ƒˆ ํ”ผ๋“œ๋ฅผ ํƒ์ƒ‰ํ•ฉ๋‹ˆ๋‹ค" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -5879,7 +6014,7 @@ msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ์ด ๋ฆฌ์ŠคํŠธ๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ด ๋ฌธ์ œ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ํ˜„์žฌ ๋ฎคํŠธํ•œ ๋‹จ์–ด๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/view/screens/Search/Search.tsx:270 +#: src/view/screens/Search/Search.tsx:206 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ๊ฒ€์ƒ‰์„ ์™„๋ฃŒํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋ช‡ ๋ถ„ ํ›„์— ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." @@ -5893,8 +6028,8 @@ msgid "We're sorry! We can't find the page you were looking for." msgstr "์ฃ„์†กํ•ฉ๋‹ˆ๋‹ค. ํŽ˜์ด์ง€๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." #: 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 "์ฃ„์†กํ•ฉ๋‹ˆ๋‹ค. ๋ผ๋ฒจ๋Ÿฌ๋Š” 10๊ฐœ๊นŒ์ง€๋งŒ ๊ตฌ๋…ํ•  ์ˆ˜ ์žˆ์œผ๋ฉฐ 10๊ฐœ์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค." +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "์ฃ„์†กํ•ฉ๋‹ˆ๋‹ค. ๋ผ๋ฒจ๋Ÿฌ๋Š” 20๊ฐœ๊นŒ์ง€๋งŒ ๊ตฌ๋…ํ•  ์ˆ˜ ์žˆ์œผ๋ฉฐ 20๊ฐœ์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค." #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" @@ -5923,10 +6058,20 @@ msgstr "์•Œ๊ณ ๋ฆฌ์ฆ˜ ํ”ผ๋“œ์— ์–ด๋–ค ์–ธ์–ด๋ฅผ ํ‘œ์‹œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Who can message you?" msgstr "๋ˆ„๊ตฌ์˜ ๋ฉ”์‹œ์ง€๋ฅผ ํ—ˆ์šฉํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/modals/Threadgate.tsx:67 +#: src/view/com/modals/Threadgate.tsx:69 +#: src/view/com/threadgate/WhoCanReply.tsx:73 +#: src/view/com/threadgate/WhoCanReply.tsx:130 msgid "Who can reply" msgstr "๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ๋Š” ์‚ฌ๋žŒ" +#: src/view/com/threadgate/WhoCanReply.tsx:206 +msgid "Who can reply dialog" +msgstr "๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ๋Š” ์‚ฌ๋žŒ ๋Œ€ํ™” ์ƒ์ž" + +#: src/view/com/threadgate/WhoCanReply.tsx:210 +msgid "Who can reply?" +msgstr "๋ˆ„๊ฐ€ ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ๋‚˜์š”?" + #: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 msgid "Whoops!" @@ -5965,7 +6110,7 @@ msgstr "๊ฐ€๋กœ" msgid "Write a message" msgstr "๋ฉ”์‹œ์ง€๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”" -#: src/view/com/composer/Composer.tsx:549 +#: src/view/com/composer/Composer.tsx:551 msgid "Write post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ" @@ -6041,7 +6186,7 @@ msgstr "ํŒ”๋กœ์›Œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." #: src/screens/Profile/KnownFollowers.tsx:99 msgid "You don't follow any users who follow @{name}." -msgstr "" +msgstr "@{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." @@ -6146,11 +6291,11 @@ msgstr "์‹ ๊ณ ํ•˜๋ ค๋ฉด ํ•˜๋‚˜ ์ด์ƒ์˜ ๋ผ๋ฒจ์„ ์„ ํƒํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." msgid "You previously deactivated @{0}." msgstr "์ด์ „์— @{0}์„(๋ฅผ) ๋น„ํ™œ์„ฑํ™”ํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/util/forms/PostDropdownBtn.tsx:168 +#: src/view/com/util/forms/PostDropdownBtn.tsx:174 msgid "You will no longer receive notifications for this thread" msgstr "์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋” ์ด์ƒ ๋ฐ›์ง€ ์•Š์Šต๋‹ˆ๋‹ค" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:170 msgid "You will now receive notifications for this thread" msgstr "์ด์ œ ์ด ์Šค๋ ˆ๋“œ์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค"